diff options
Diffstat (limited to 'modules')
62 files changed, 9484 insertions, 1254 deletions
diff --git a/modules/luci-base/Makefile b/modules/luci-base/Makefile index f0763cb1df..753ff259fa 100644 --- a/modules/luci-base/Makefile +++ b/modules/luci-base/Makefile @@ -15,8 +15,8 @@ LUCI_TITLE:=LuCI core libraries LUCI_DEPENDS:=+lua +libuci-lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc PKG_SOURCE:=LuaSrcDiet-0.12.1.tar.bz2 -PKG_SOURCE_URL:=https://luasrcdiet.googlecode.com/files -PKG_MD5SUM:=8a0812701e29b6715e4d76f2f118264a +PKG_SOURCE_URL:=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/luasrcdiet +PKG_MD5SUM:=ed7680f2896269ae8633756e7edcf09050812f78c8f49e280e63c30d14f35aea HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/LuaSrcDiet-0.12.1 @@ -24,6 +24,7 @@ include $(INCLUDE_DIR)/host-build.mk define Package/luci-base/conffiles /etc/luci-uploads +/etc/config/luci endef include ../../luci.mk @@ -37,10 +38,9 @@ define Host/Compile endef define Host/Install - $(INSTALL_DIR) $(STAGING_DIR)/host/bin - $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin - $(INSTALL_BIN) src/po2lmo $(STAGING_DIR_HOST)/bin/po2lmo - $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/LuaSrcDiet.lua $(STAGING_DIR)/host/bin/LuaSrcDiet + $(INSTALL_DIR) $(1)/bin + $(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo + $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/LuaSrcDiet.lua $(1)/bin/LuaSrcDiet endef $(eval $(call HostBuild)) diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js index b285ee26cc..0ca7e264a7 100644 --- a/modules/luci-base/htdocs/luci-static/resources/cbi.js +++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js @@ -523,13 +523,6 @@ function cbi_init() { } } - 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')); - } - nodes = document.querySelectorAll('[data-choices]'); for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { @@ -562,6 +555,13 @@ function cbi_init() { cbi_dynlist_init(node, choices[2], choices[3], options); } + 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')); + } + cbi_d_update(); } @@ -1300,6 +1300,9 @@ String.prototype.format = function() 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; diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua index 9cd7c87c0c..2d8336bf33 100644 --- a/modules/luci-base/luasrc/model/network.lua +++ b/modules/luci-base/luasrc/model/network.lua @@ -30,7 +30,7 @@ protocol = utl.class() local _protocols = { } -local _interfaces, _bridge, _switch, _tunnel +local _interfaces, _bridge, _switch, _tunnel, _swtopo local _ubusnetcache, _ubusdevcache, _ubuswificache local _uci @@ -193,7 +193,6 @@ function _iface_ignore(x) return false end - function init(cursor) _uci = cursor or _uci or uci.cursor() @@ -201,6 +200,7 @@ function init(cursor) _bridge = { } _switch = { } _tunnel = { } + _swtopo = { } _ubusnetcache = { } _ubusdevcache = { } @@ -210,7 +210,6 @@ function init(cursor) local n, i for n, i in ipairs(nxo.getifaddrs()) do local name = i.name:match("[^:]+") - local prnt = name:match("^([^%.]+)%.") if _iface_virtual(name) then _tunnel[name] = true @@ -226,11 +225,6 @@ function init(cursor) ip6addrs = { } } - if prnt then - _switch[name] = true - _switch[prnt] = true - end - if i.family == "packet" then _interfaces[name].flags = i.flags _interfaces[name].stats = i.data @@ -266,6 +260,79 @@ function init(cursor) 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 @@ -474,41 +541,23 @@ function get_interface(self, i) end end -local function swdev_from_board_json() - local boardinfo = jsc.parse(nfs.readfile("/etc/board.json") or "") - if type(boardinfo) == "table" and type(boardinfo.network) == "table" then - local net, val - for net, val in pairs(boardinfo.network) do - if type(val) == "table" and type(val.ifname) == "string" and - val.create_vlan == true - then - return val.ifname - end - end - end - return nil -end - function get_interfaces(self) local iface local ifaces = { } - local seen = { } local nfs = { } - local baseof = { } -- 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 - seen[iface] = true nfs[iface] = interface(iface) end end end) for iface in utl.kspairs(_interfaces) do - if not (seen[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then + if not (nfs[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then nfs[iface] = interface(iface) end end @@ -516,34 +565,32 @@ function get_interfaces(self) -- find vlan interfaces _uci:foreach("network", "switch_vlan", function(s) - if not s.device then + if type(s.ports) ~= "string" or + type(s.device) ~= "string" or + type(_swtopo[s.device]) ~= "table" + then return end - local base = baseof[s.device] - if not base then - if not s.device:match("^eth%d") then - local l - for l in utl.execi("swconfig dev %q help 2>/dev/null" % s.device) do - if not base then - base = l:match("^%w+: (%w+)") - 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 - if not base or not base:match("^eth%d") then - base = swdev_from_board_json() or "eth0" + _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 - else - base = s.device - end - baseof[s.device] = base - end - - local vid = tonumber(s.vid or s.vlan) - if vid ~= nil and vid >= 0 and vid <= 4095 then - local iface = "%s.%d" %{ base, vid } - if not seen[iface] then - seen[iface] = true - nfs[iface] = interface(iface) end end end) @@ -685,6 +732,10 @@ function get_wan6dev(self) return stat and interface(stat.l3_device or stat.device) end +function get_switch_topologies(self) + return _swtopo +end + function network(name, proto) if name then @@ -1140,10 +1191,7 @@ end function interface.shortname(self) if self.wif then - return "%s %q" %{ - self.wif:active_mode(), - self.wif:active_ssid() or self.wif:active_bssid() - } + return self.wif:shortname() else return self.ifname end @@ -1154,7 +1202,7 @@ function interface.get_i18n(self) return "%s: %s %q" %{ lng.translate("Wireless Network"), self.wif:active_mode(), - self.wif:active_ssid() or self.wif:active_bssid() + self.wif:active_ssid() or self.wif:active_bssid() or self.wif:id() } else return "%s: %q" %{ self:get_type_i18n(), self:name() } @@ -1170,7 +1218,11 @@ function interface.get_type_i18n(self) elseif x == "switch" then return lng.translate("Ethernet Switch") elseif x == "vlan" then - return lng.translate("VLAN Interface") + 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 @@ -1593,7 +1645,7 @@ end function wifinet.shortname(self) return "%s %q" %{ lng.translate(self:active_mode()), - self:active_ssid() or self:active_bssid() + self:active_ssid() or self:active_bssid() or self:id() } end @@ -1601,7 +1653,7 @@ 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(), + self:active_ssid() or self:active_bssid() or self:id(), self:ifname() } end diff --git a/modules/luci-base/luasrc/sys/iptparser.lua b/modules/luci-base/luasrc/sys/iptparser.lua index a9dbc30826..7ff665e7af 100644 --- a/modules/luci-base/luasrc/sys/iptparser.lua +++ b/modules/luci-base/luasrc/sys/iptparser.lua @@ -31,29 +31,43 @@ function IptParser.__init__( self, family ) self._family = (tonumber(family) == 6) and 6 or 4 self._rules = { } self._chains = { } + self._tables = { } + + local t = self._tables + local s = self:_supported_tables(self._family) + + if s.filter then t[#t+1] = "filter" end + if s.nat then t[#t+1] = "nat" end + if s.mangle then t[#t+1] = "mangle" end + if s.raw then t[#t+1] = "raw" end if self._family == 4 then self._nulladdr = "0.0.0.0/0" - self._tables = { "filter", "nat", "mangle", "raw" } self._command = "iptables -t %s --line-numbers -nxvL" else self._nulladdr = "::/0" - self._tables = { "filter", "mangle", "raw" } - local ok, lines = pcall(io.lines, "/proc/net/ip6_tables_names") - if ok and lines then - local line - for line in lines do - if line == "nat" then - self._tables = { "filter", "nat", "mangle", "raw" } - end - end - end self._command = "ip6tables -t %s --line-numbers -nxvL" end self:_parse_rules() end +function IptParser._supported_tables( self, family ) + local tables = { } + local ok, lines = pcall(io.lines, + (family == 6) and "/proc/net/ip6_tables_names" + or "/proc/net/ip_tables_names") + + if ok and lines then + local line + for line in lines do + tables[line] = true + end + end + + return tables +end + -- search criteria as only argument. If args is nil or an empty table then all -- rules will be returned. -- diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua index c9a507eaa2..465d7df3d3 100644 --- a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua +++ b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua @@ -87,7 +87,7 @@ TZ = { { 'America/Cambridge Bay', 'MST7MDT,M3.2.0,M11.1.0' }, { 'America/Campo Grande', 'AMT4AMST,M10.3.0/0,M2.3.0/0' }, { 'America/Cancun', 'EST5' }, - { 'America/Caracas', 'VET4:30' }, + { 'America/Caracas', 'VET4' }, { 'America/Cayenne', 'GFT3' }, { 'America/Cayman', 'EST5' }, { 'America/Chicago', 'CST6CDT,M3.2.0,M11.1.0' }, @@ -201,97 +201,100 @@ TZ = { { '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', 'AWST-8' }, - { 'Antarctica/Davis', 'DAVT-7' }, - { 'Antarctica/DumontDUrville', 'DDUT-10' }, + { 'Antarctica/Casey', '<+11>-11' }, + { 'Antarctica/Davis', '<+07>-7' }, + { 'Antarctica/DumontDUrville', '<+10>-10' }, { 'Antarctica/Macquarie', 'MIST-11' }, - { 'Antarctica/Mawson', 'MAWT-5' }, + { 'Antarctica/Mawson', '<+05>-5' }, { 'Antarctica/McMurdo', 'NZST-12NZDT,M9.5.0,M4.1.0/3' }, { 'Antarctica/Palmer', 'CLT4CLST,M8.2.6/24,M5.2.6/24' }, - { 'Antarctica/Rothera', 'ROTT3' }, - { 'Antarctica/Syowa', 'SYOT-3' }, - { 'Antarctica/Troll', 'UTC0CEST-2,M3.5.0/1,M10.5.0/3' }, - { 'Antarctica/Vostok', 'VOST-6' }, + { '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', 'AST-3' }, - { 'Asia/Almaty', 'ALMT-6' }, + { 'Asia/Almaty', '<+06>-6' }, { 'Asia/Amman', 'EET-2EEST,M3.5.4/24,M10.5.5/1' }, - { 'Asia/Anadyr', 'ANAT-12' }, - { 'Asia/Aqtau', 'AQTT-5' }, - { 'Asia/Aqtobe', 'AQTT-5' }, - { 'Asia/Ashgabat', 'TMT-5' }, + { 'Asia/Anadyr', '<+12>-12' }, + { 'Asia/Aqtau', '<+05>-5' }, + { 'Asia/Aqtobe', '<+05>-5' }, + { 'Asia/Ashgabat', '<+05>-5' }, + { 'Asia/Atyrau', '<+05>-5' }, { 'Asia/Baghdad', 'AST-3' }, { 'Asia/Bahrain', 'AST-3' }, - { 'Asia/Baku', 'AZT-4' }, + { 'Asia/Baku', '<+04>-4' }, { 'Asia/Bangkok', 'ICT-7' }, { 'Asia/Barnaul', '<+07>-7' }, { 'Asia/Beirut', 'EET-2EEST,M3.5.0/0,M10.5.0/0' }, - { 'Asia/Bishkek', 'KGT-6' }, + { 'Asia/Bishkek', '<+06>-6' }, { 'Asia/Brunei', 'BNT-8' }, - { 'Asia/Chita', 'YAKT-9' }, + { 'Asia/Chita', '<+09>-9' }, { 'Asia/Choibalsan', 'CHOT-8CHOST,M3.5.6,M9.5.6/0' }, - { 'Asia/Colombo', 'IST-5:30' }, + { 'Asia/Colombo', '<+0530>-5:30' }, { 'Asia/Damascus', 'EET-2EEST,M3.5.5/0,M10.5.5/0' }, { 'Asia/Dhaka', 'BDT-6' }, { 'Asia/Dili', 'TLT-9' }, { 'Asia/Dubai', 'GST-4' }, - { 'Asia/Dushanbe', 'TJT-5' }, - { 'Asia/Gaza', 'EET-2EEST,M3.5.6/1,M10.3.6/144' }, - { 'Asia/Hebron', 'EET-2EEST,M3.5.6/1,M10.3.6/144' }, + { 'Asia/Dushanbe', '<+05>-5' }, + { 'Asia/Famagusta', '<+03>-3' }, + { 'Asia/Gaza', 'EET-2EEST,M3.5.6/1,M10.5.6/1' }, + { 'Asia/Hebron', 'EET-2EEST,M3.5.6/1,M10.5.6/1' }, { 'Asia/Ho Chi Minh', 'ICT-7' }, { 'Asia/Hong Kong', 'HKT-8' }, { 'Asia/Hovd', 'HOVT-7HOVST,M3.5.6,M9.5.6/0' }, - { 'Asia/Irkutsk', 'IRKT-8' }, + { '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', 'AFT-4:30' }, - { 'Asia/Kamchatka', 'PETT-12' }, + { 'Asia/Kamchatka', '<+12>-12' }, { 'Asia/Karachi', 'PKT-5' }, { 'Asia/Kathmandu', 'NPT-5:45' }, - { 'Asia/Khandyga', 'YAKT-9' }, + { 'Asia/Khandyga', '<+09>-9' }, { 'Asia/Kolkata', 'IST-5:30' }, - { 'Asia/Krasnoyarsk', 'KRAT-7' }, + { 'Asia/Krasnoyarsk', '<+07>-7' }, { 'Asia/Kuala Lumpur', 'MYT-8' }, { 'Asia/Kuching', 'MYT-8' }, { 'Asia/Kuwait', 'AST-3' }, { 'Asia/Macau', 'CST-8' }, - { 'Asia/Magadan', 'MAGT-10' }, + { 'Asia/Magadan', '<+11>-11' }, { 'Asia/Makassar', 'WITA-8' }, { 'Asia/Manila', 'PHT-8' }, { 'Asia/Muscat', 'GST-4' }, { 'Asia/Nicosia', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Asia/Novokuznetsk', 'KRAT-7' }, - { 'Asia/Novosibirsk', 'NOVT-6' }, - { 'Asia/Omsk', 'OMST-6' }, - { 'Asia/Oral', 'ORAT-5' }, + { 'Asia/Novokuznetsk', '<+07>-7' }, + { 'Asia/Novosibirsk', '<+07>-7' }, + { 'Asia/Omsk', '<+06>-6' }, + { 'Asia/Oral', '<+05>-5' }, { 'Asia/Phnom Penh', 'ICT-7' }, { 'Asia/Pontianak', 'WIB-7' }, { 'Asia/Pyongyang', 'KST-8:30' }, { 'Asia/Qatar', 'AST-3' }, - { 'Asia/Qyzylorda', 'QYZT-6' }, - { 'Asia/Rangoon', 'MMT-6:30' }, + { 'Asia/Qyzylorda', '<+06>-6' }, { 'Asia/Riyadh', 'AST-3' }, - { 'Asia/Sakhalin', 'SAKT-11' }, - { 'Asia/Samarkand', 'UZT-5' }, + { 'Asia/Sakhalin', '<+11>-11' }, + { 'Asia/Samarkand', '<+05>-5' }, { 'Asia/Seoul', 'KST-9' }, { 'Asia/Shanghai', 'CST-8' }, { 'Asia/Singapore', 'SGT-8' }, - { 'Asia/Srednekolymsk', 'SRET-11' }, + { 'Asia/Srednekolymsk', '<+11>-11' }, { 'Asia/Taipei', 'CST-8' }, - { 'Asia/Tashkent', 'UZT-5' }, - { 'Asia/Tbilisi', 'GET-4' }, + { 'Asia/Tashkent', '<+05>-5' }, + { 'Asia/Tbilisi', '<+04>-4' }, { 'Asia/Tehran', 'IRST-3:30IRDT,J80/0,J264/0' }, { 'Asia/Thimphu', 'BTT-6' }, { 'Asia/Tokyo', 'JST-9' }, + { 'Asia/Tomsk', '<+07>-7' }, { 'Asia/Ulaanbaatar', 'ULAT-8ULAST,M3.5.6,M9.5.6/0' }, { 'Asia/Urumqi', 'XJT-6' }, - { 'Asia/Ust-Nera', 'VLAT-10' }, + { 'Asia/Ust-Nera', '<+10>-10' }, { 'Asia/Vientiane', 'ICT-7' }, - { 'Asia/Vladivostok', 'VLAT-10' }, - { 'Asia/Yakutsk', 'YAKT-9' }, - { 'Asia/Yekaterinburg', 'YEKT-5' }, - { 'Asia/Yerevan', 'AMT-4' }, + { 'Asia/Vladivostok', '<+10>-10' }, + { 'Asia/Yakutsk', '<+09>-9' }, + { 'Asia/Yangon', 'MMT-6:30' }, + { 'Asia/Yekaterinburg', '<+05>-5' }, + { 'Asia/Yerevan', '<+04>-4' }, { 'Atlantic/Azores', 'AZOT1AZOST,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' }, @@ -332,10 +335,11 @@ TZ = { { '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', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, + { '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' }, @@ -343,7 +347,7 @@ TZ = { { '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', 'MSK-3' }, + { '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' }, @@ -352,9 +356,10 @@ TZ = { { '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', 'SAMT-4' }, + { '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' }, @@ -367,7 +372,7 @@ TZ = { { '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', 'MSK-3' }, + { 'Europe/Volgograd', '<+03>-3' }, { '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' }, @@ -377,7 +382,7 @@ TZ = { { 'Indian/Christmas', 'CXT-7' }, { 'Indian/Cocos', 'CCT-6:30' }, { 'Indian/Comoro', 'EAT-3' }, - { 'Indian/Kerguelen', 'TFT-5' }, + { 'Indian/Kerguelen', '<+05>-5' }, { 'Indian/Mahe', 'SCT-4' }, { 'Indian/Maldives', 'MVT-5' }, { 'Indian/Mauritius', 'MUT-4' }, @@ -419,7 +424,7 @@ TZ = { { 'Pacific/Saipan', 'ChST-10' }, { 'Pacific/Tahiti', 'TAHT10' }, { 'Pacific/Tarawa', 'GILT-12' }, - { 'Pacific/Tongatapu', 'TOT-13' }, + { 'Pacific/Tongatapu', '<+13>-13<+14>,M11.1.0,M1.3.0/3' }, { 'Pacific/Wake', 'WAKT-12' }, { 'Pacific/Wallis', 'WFT-12' }, } diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua index a8417e06c8..e5da7c6442 100644 --- a/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua +++ b/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua @@ -27,7 +27,7 @@ OFFSET = { cot = -18000, -- COT mst = -25200, -- MST mdt = -21600, -- MDT - vet = -16200, -- VET + vet = -14400, -- VET gft = -10800, -- GFT pst = -28800, -- PST pdt = -25200, -- PDT @@ -49,59 +49,31 @@ OFFSET = { egst = 0, -- EGST nst = -12600, -- NST ndt = -9000, -- NDT - awst = 28800, -- AWST - davt = 25200, -- DAVT - ddut = 36000, -- DDUT mist = 39600, -- MIST - mawt = 18000, -- MAWT nzst = 43200, -- NZST nzdt = 46800, -- NZDT - rott = -10800, -- ROTT - syot = 10800, -- SYOT - utc = 0, -- UTC - vost = 21600, -- VOST - almt = 21600, -- ALMT - anat = 43200, -- ANAT - aqtt = 18000, -- AQTT - tmt = 18000, -- TMT - azt = 14400, -- AZT ict = 25200, -- ICT - kgt = 21600, -- KGT bnt = 28800, -- BNT - yakt = 32400, -- YAKT chot = 28800, -- CHOT chost = 32400, -- CHOST - ist = 19800, -- IST bdt = 21600, -- BDT tlt = 32400, -- TLT gst = 14400, -- GST - tjt = 18000, -- TJT hkt = 28800, -- HKT hovt = 25200, -- HOVT hovst = 28800, -- HOVST - irkt = 28800, -- IRKT wib = 25200, -- WIB wit = 32400, -- WIT + ist = 7200, -- IST + idt = 10800, -- IDT aft = 16200, -- AFT - pett = 43200, -- PETT pkt = 18000, -- PKT npt = 20700, -- NPT - krat = 25200, -- KRAT myt = 28800, -- MYT - magt = 36000, -- MAGT wita = 28800, -- WITA pht = 28800, -- PHT - novt = 21600, -- NOVT - omst = 21600, -- OMST - orat = 18000, -- ORAT kst = 30600, -- KST - qyzt = 21600, -- QYZT - mmt = 23400, -- MMT - sakt = 39600, -- SAKT - uzt = 18000, -- UZT sgt = 28800, -- SGT - sret = 39600, -- SRET - get = 14400, -- GET irst = 12600, -- IRST irdt = 16200, -- IRDT btt = 21600, -- BTT @@ -109,8 +81,7 @@ OFFSET = { ulat = 28800, -- ULAT ulast = 32400, -- ULAST xjt = 21600, -- XJT - vlat = 36000, -- VLAT - yekt = 18000, -- YEKT + mmt = 23400, -- MMT azot = -3600, -- AZOT azost = 0, -- AZOST cvt = -3600, -- CVT @@ -121,12 +92,11 @@ OFFSET = { acwst = 31500, -- ACWST lhst = 37800, -- LHST lhdt = 39600, -- LHDT + awst = 28800, -- AWST msk = 10800, -- MSK - samt = 14400, -- SAMT iot = 21600, -- IOT cxt = 25200, -- CXT cct = 23400, -- CCT - tft = 18000, -- TFT sct = 14400, -- SCT mvt = 18000, -- MVT mut = 14400, -- MUT @@ -163,7 +133,6 @@ OFFSET = { ckt = -36000, -- CKT taht = -36000, -- TAHT gilt = 43200, -- GILT - tot = 46800, -- TOT wakt = 43200, -- WAKT wft = 43200, -- WFT } diff --git a/modules/luci-base/luasrc/tools/status.lua b/modules/luci-base/luasrc/tools/status.lua index a1ecbe71d0..4da0cf984b 100644 --- a/modules/luci-base/luasrc/tools/status.lua +++ b/modules/luci-base/luasrc/tools/status.lua @@ -63,17 +63,18 @@ local function dhcp_leases_common(family) 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 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 = os.difftime(tonumber(ts) or 0, os.time()), + 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 = os.difftime(tonumber(ts) or 0, os.time()), + expires = (expire >= 0) and os.difftime(expire, os.time()), macaddr = duid, ipaddr = ip, hostname = (name ~= "-") and name diff --git a/modules/luci-base/luasrc/tools/webadmin.lua b/modules/luci-base/luasrc/tools/webadmin.lua index 8273175de7..106810aa03 100644 --- a/modules/luci-base/luasrc/tools/webadmin.lua +++ b/modules/luci-base/luasrc/tools/webadmin.lua @@ -96,7 +96,7 @@ function iface_get_network(iface) 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 not uciname or uciname:sub(1, 1) ~= "@" then + if type(uciname) == "string" and uciname:sub(1,1) ~= "@" or uciname then return net.interface end end diff --git a/modules/luci-base/luasrc/util.lua b/modules/luci-base/luasrc/util.lua index 896e36b45f..0e7334be87 100644 --- a/modules/luci-base/luasrc/util.lua +++ b/modules/luci-base/luasrc/util.lua @@ -16,7 +16,7 @@ local _ubus_connection = nil local getmetatable, setmetatable = getmetatable, setmetatable local rawget, rawset, unpack = rawget, rawset, unpack -local tostring, type, assert = tostring, type, assert +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 @@ -27,14 +27,27 @@ 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 - return a:format(unpack(b)) + + 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 - return a:format(b) + + ok, res = pcall(a.format, a, b) + if not ok then + error(res, 2) + end + return res end end diff --git a/modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm b/modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm index b3b454008f..5cb31511f6 100644 --- a/modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm +++ b/modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm @@ -28,6 +28,7 @@ <% if self.allowlocal then %> <li style="padding:0.5em"> <input class="cbi-input-radio" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_empty") .. attr("name", cbid) .. attr("value", "") .. ifattr(checked[""], "checked", "checked")%> />   + <label<%=attr("for", cbid .. "_empty")%>></label> <label<%=attr("for", cbid .. "_empty")%> style="background-color:<%=fwm.zone.get_color()%>" class="zonebadge"> <strong><%:Device%></strong> <% if self.allowany and self.allowlocal then %>(<%:input%>)<% end %> @@ -37,6 +38,7 @@ <% if self.allowany then %> <li style="padding:0.5em"> <input class="cbi-input-radio" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_any") .. attr("name", cbid) .. attr("value", "*") .. ifattr(checked["*"], "checked", "checked")%> />   + <label<%=attr("for", cbid .. "_any")%>></label> <label<%=attr("for", cbid .. "_any")%> style="background-color:<%=fwm.zone.get_color()%>" class="zonebadge"> <strong><%:Any zone%></strong> <% if self.allowany and self.allowlocal then %>(<%:forward%>)<% end %> @@ -50,6 +52,7 @@ %> <li style="padding:0.5em"> <input class="cbi-input-radio" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. zone:name()) .. attr("name", cbid) .. attr("value", zone:name()) .. ifattr(checked[zone:name()], "checked", "checked")%> />   + <label<%=attr("for", cbid .. "." .. zone:name())%>></label> <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>" class="zonebadge"> <strong><%=zone:name()%>:</strong> <% @@ -78,6 +81,7 @@ <% if self.widget ~= "checkbox" and not self.nocreate then %> <li style="padding:0.5em"> <input class="cbi-input-radio" data-update="click change" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not selected, "checked", "checked")%> />   + <label<%=attr("for", cbid .. "_new")%>></label> <div onclick="document.getElementById('<%=cbid%>_new').checked=true" class="zonebadge" style="background-color:<%=fwm.zone.get_color()%>"> <em><%:unspecified -or- create:%> </em> <input type="text"<%=attr("name", cbid .. ".newzone") .. ifattr(not selected, "value", luci.http.formvalue(cbid .. ".newzone") or self.default)%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" /> diff --git a/modules/luci-base/luasrc/view/cbi/fvalue.htm b/modules/luci-base/luasrc/view/cbi/fvalue.htm index 5eddcf22a1..197d03cf31 100644 --- a/modules/luci-base/luasrc/view/cbi/fvalue.htm +++ b/modules/luci-base/luasrc/view/cbi/fvalue.htm @@ -6,4 +6,5 @@ attr("id", cbid) .. attr("name", cbid) .. attr("value", self.enabled or 1) .. ifattr((self:cfgvalue(section) or self.default) == self.enabled, "checked", "checked") %> /> + <label<%= attr("for", cbid)%>></label> <%+cbi/valuefooter%> diff --git a/modules/luci-base/luasrc/view/cbi/lvalue.htm b/modules/luci-base/luasrc/view/cbi/lvalue.htm index 99f456dc54..34d02eeca0 100644 --- a/modules/luci-base/luasrc/view/cbi/lvalue.htm +++ b/modules/luci-base/luasrc/view/cbi/lvalue.htm @@ -24,15 +24,16 @@ <div> <% for i, key in pairs(self.keylist) do %> <label<%= - attr("id", cbid.."-"..key) .. attr("data-index", i) .. attr("data-depends", self:deplist2json(section, self.deplist[i])) %>> <input class="cbi-input-radio" data-update="click change" type="radio"<%= + attr("id", cbid.."-"..key) .. attr("name", cbid) .. attr("value", key) .. ifattr((self:cfgvalue(section) or self.default) == key, "checked", "checked") %> /> + <label<%= attr("for", cbid.."-"..key)%>></label> <%=pcdata(self.vallist[i])%> </label> <% if i == self.size then write(br) end %> diff --git a/modules/luci-base/luasrc/view/cbi/mvalue.htm b/modules/luci-base/luasrc/view/cbi/mvalue.htm index ca7b94c15e..246ef43aad 100644 --- a/modules/luci-base/luasrc/view/cbi/mvalue.htm +++ b/modules/luci-base/luasrc/view/cbi/mvalue.htm @@ -24,15 +24,16 @@ <div> <% for i, key in pairs(self.keylist) do %> <label<%= - attr("id", cbid.."-"..key) .. attr("data-index", i) .. attr("data-depends", self:deplist2json(section, self.deplist[i])) %>> <input class="cbi-input-checkbox" type="checkbox" data-update="click change"<%= + attr("id", cbid.."-"..key) .. attr("name", cbid) .. attr("value", key) .. ifattr(luci.util.contains(v, key), "checked", "checked") %> /> + <label<%= attr("for", cbid.."-"..key)%>></label> <%=pcdata(self.vallist[i])%> </label> <% if i == self.size then write('<br />') end %> diff --git a/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm b/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm index db6112992a..62dbde7dd4 100644 --- a/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm +++ b/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm @@ -46,7 +46,11 @@ attr("id", cbid .. "." .. iface:name()) .. attr("name", cbid) .. attr("value", iface:name()) .. ifattr(checked[iface:name()], "checked", "checked") - %> />   + %> /> + <%- if not self.widget or self.widget == "checkbox" or self.widget == "radio" then -%> + <label<%=attr("for", cbid .. "." .. iface:name())%>></label> + <%- end -%> +   <label<%=attr("for", cbid .. "." .. iface:name())%>> <% if link then -%><a href="<%=link%>"><% end -%> <img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" /> @@ -68,7 +72,11 @@ attr("id", cbid .. "_custom") .. attr("name", cbid) .. attr("value", " ") - %> />   + %> /> + <%- if not self.widget or self.widget == "checkbox" or self.widget == "radio" then -%> + <label<%=attr("for", cbid .. "_custom")%>></label> + <%- end -%> +   <label<%=attr("for", cbid .. "_custom")%>> <img title="<%:Custom Interface%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/ethernet_disabled.png" /> <%:Custom Interface%>: diff --git a/modules/luci-base/luasrc/view/cbi/network_netlist.htm b/modules/luci-base/luasrc/view/cbi/network_netlist.htm index f8a2b72f3c..8bf1a70a20 100644 --- a/modules/luci-base/luasrc/view/cbi/network_netlist.htm +++ b/modules/luci-base/luasrc/view/cbi/network_netlist.htm @@ -52,6 +52,9 @@ <% if not self.nocreate then %> <li style="padding:0.25em 0"> <input class="cbi-input-<%=self.widget or "radio"%>" data-update="click change"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not value and self.widget ~= "checkbox", "checked", "checked")%> />   + <%- if not self.widget or self.widget == "checkbox" or self.widget == "radio" then -%> + <label<%=attr("for", cbid .. "_new")%>></label> + <%- end -%> <div style="padding:0.5em; display:inline"> <label<%=attr("for", cbid .. "_new")%>><em> <%- if self.widget == "checkbox" then -%> diff --git a/modules/luci-base/luasrc/view/sysauth.htm b/modules/luci-base/luasrc/view/sysauth.htm index e207504911..f6b0f5706a 100644 --- a/modules/luci-base/luasrc/view/sysauth.htm +++ b/modules/luci-base/luasrc/view/sysauth.htm @@ -7,14 +7,14 @@ <%+header%> <form method="post" action="<%=pcdata(luci.http.getenv("REQUEST_URI"))%>"> + <%- if fuser then %> + <div class="errorbox"><%:Invalid username and/or password! Please try again.%></div> + <% end -%> + <div class="cbi-map"> <h2 name="content"><%:Authorization Required%></h2> <div class="cbi-map-descr"> <%:Please enter your username and password.%> - <%- if fuser then %> - <div class="error"><%:Invalid username and/or password! Please try again.%></div> - <br /> - <% end -%> </div> <fieldset class="cbi-section"><fieldset class="cbi-section-node"> <div class="cbi-value"> diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index 4d797a1953..ec573915b3 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(finestra de %d minuts, interval de %d segons)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Càrrega d'1 minut:" @@ -278,6 +284,9 @@ 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" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -286,9 +295,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Es crearà una xarxa addicional si deixes això sense marcar." - msgid "Annex" msgstr "" @@ -396,6 +402,9 @@ msgstr "" msgid "Authentication" msgstr "Autenticació" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritzada" @@ -493,9 +502,15 @@ msgstr "" "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." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Velocitat de bits" @@ -534,9 +549,6 @@ msgstr "Botons" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Ús de CPU (%)" @@ -567,6 +579,9 @@ msgstr "Comprovació" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Suma de verificació" @@ -896,6 +911,9 @@ msgstr "Es requereix un domini" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -966,6 +984,9 @@ msgstr "Habilita l'<abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Habilita negociació IPv6 en la enllaç PPP" @@ -996,6 +1017,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -1017,6 +1041,12 @@ msgstr "Mode d'encapsulació" msgid "Encryption" msgstr "Encriptació" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Esborrant..." @@ -1054,6 +1084,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1170,6 +1203,11 @@ msgstr "Lliures" msgid "Free space" msgstr "Espai lliure" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1229,6 +1267,9 @@ msgstr "Contrasenya de HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1329,6 +1370,9 @@ msgstr "Longitud de prefix IPv4" msgid "IPv4-Address" msgstr "Adreça IPv6" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1536,12 +1580,12 @@ msgstr "Es requereix JavaScript!" msgid "Join Network" msgstr "Uneix-te a la xarxa" -msgid "Join Network: Settings" -msgstr "Unir-se a la xarxa: Ajusts" - msgid "Join Network: Wireless Scan" msgstr "" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "" @@ -1655,6 +1699,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1752,6 +1799,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2081,6 +2131,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Opcions" @@ -2105,6 +2185,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2221,6 +2307,9 @@ msgstr "Màxim:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2230,6 +2319,9 @@ msgstr "Executa un reinici" msgid "Perform reset" msgstr "Executa un reinici" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Velocitat física:" @@ -2251,12 +2343,6 @@ msgstr "Política" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "Port %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "Estatus de port" @@ -2266,12 +2352,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2280,6 +2369,9 @@ msgstr "Evita la comunicació client a client" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "continua" @@ -2313,9 +2405,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Calidad" @@ -2445,6 +2543,9 @@ msgstr "Pont de relé" msgid "Remote IPv4 address" msgstr "Adreça IPv6 remota" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Treu" @@ -2469,6 +2570,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Alguns ISP ho requereixen, per exemple el Charter amb DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2513,6 +2626,12 @@ msgstr "Directori arrel dels fitxers servits per TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2538,6 +2657,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2677,6 +2799,9 @@ msgstr "" msgid "Software" msgstr "Programari" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "No es pot desar els valors perquè alguns camps estan invàlids!" @@ -2688,8 +2813,8 @@ msgstr "Tristament, el servidor ha encontrat un error inesperat." msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2720,6 +2845,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Especifiqueu el clau de xifració secret aquí." @@ -2789,6 +2927,13 @@ msgstr "Commutador %q" msgid "Switch %q (%s)" msgstr "Commutador %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Protocol de commutador" @@ -2858,6 +3003,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2922,6 +3071,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "La longitud del prefix IPv6 en bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3179,8 +3331,8 @@ msgstr "Actualitza les llistes" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3263,9 +3415,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interfície VLAN" - msgid "VLANs on %q" msgstr "VLANs en %q" @@ -3361,6 +3510,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Sense fils" @@ -3397,6 +3549,9 @@ msgstr "Sense fils aturat" msgid "Write received DNS requests to syslog" msgstr "Escriure les peticions DNS rebudes al syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Suport XR" @@ -3579,3 +3734,18 @@ msgstr "sí" msgid "« Back" msgstr "« Enrere" + +#~ 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/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index ea79471af5..1438b11a46 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -11,6 +11,9 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d minutové okno, %d sekundový interval)" @@ -38,6 +41,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Zatížení za 1 minutu:" @@ -278,6 +284,9 @@ 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" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -286,9 +295,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Pokud není zaškrtnuto, bude vytvořena dodatečná síť." - msgid "Annex" msgstr "" @@ -396,6 +402,9 @@ msgstr "" msgid "Authentication" msgstr "Autentizace" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritativní" @@ -492,9 +501,15 @@ msgstr "" "souborů označených opkg, nezbyných systémových souborů a souborů " "vyhovujících uživatelem určeným vzorům." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Přenosová rychlost" @@ -533,9 +548,6 @@ msgstr "Tlačítka" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Vytížení CPU (%)" @@ -566,6 +578,9 @@ msgstr "Kontrola" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Kontrolní součet" @@ -904,6 +919,9 @@ msgstr "Vyžadována doména" msgid "Domain whitelist" msgstr "Whitelist domén" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -976,6 +994,9 @@ msgstr "Povolit <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Povolit dynamickou aktualizaci koncového bodu HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Na PPP spoji povolit vyjednání IPv6" @@ -1006,6 +1027,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Povolit tento přípojný bod" @@ -1027,6 +1051,12 @@ msgstr "Režim zapouzdření" msgid "Encryption" msgstr "Šifrování" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Odstraňování..." @@ -1066,6 +1096,9 @@ msgstr "Externí protokolovací server" msgid "External system log server port" msgstr "Port externího protokolovacího serveru" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1182,6 +1215,11 @@ msgstr "Volné" msgid "Free space" msgstr "Volné místo" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1239,6 +1277,9 @@ msgstr "Heslo HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Handler" @@ -1340,6 +1381,9 @@ msgstr "Délka IPv4 prefixu" msgid "IPv4-Address" msgstr "IPv4 adresa" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1549,12 +1593,12 @@ msgstr "Vyžadován JavaScript!" msgid "Join Network" msgstr "Připojit k síti" -msgid "Join Network: Settings" -msgstr "Připojit k síti: nastavení" - msgid "Join Network: Wireless Scan" msgstr "Připojit k síti: Vyhledání bezdrátových sítí" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Zachovat nastavení" @@ -1670,6 +1714,9 @@ msgstr "Seznam hostitelů, kteří udávají falešné hodnoty NX domén" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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" @@ -1774,6 +1821,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2102,6 +2152,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Možnosti" @@ -2126,6 +2206,12 @@ msgstr "Přepsat MAC adresu" msgid "Override MTU" msgstr "Přepsat MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2244,6 +2330,9 @@ msgstr "Špička:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2253,6 +2342,9 @@ msgstr "Provést restart" msgid "Perform reset" msgstr "Provést reset" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Fyzická rychlost:" @@ -2274,12 +2366,6 @@ msgstr "Politika" msgid "Port" msgstr "Port" -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 "Port status:" msgstr "Stav portu:" @@ -2289,6 +2375,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2296,7 +2385,7 @@ 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" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2305,6 +2394,9 @@ msgstr "Zabraňuje komunikaci klient-klient" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b Wireless Controller" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Pokračovat" @@ -2338,9 +2430,15 @@ msgstr "Poskytování nové sítě" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Kvalita" @@ -2483,6 +2581,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "Vzdálená IPv4 adresa" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Odstranit" @@ -2508,6 +2609,18 @@ msgstr "" 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" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2552,6 +2665,12 @@ msgstr "Kořenový adresář souborů, přístupných přes TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2576,6 +2695,9 @@ msgstr "Spustit kontrolu souborového systému před připojením zařízení" msgid "Run filesystem check" msgstr "Spustit kontrolu souborového systému" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2717,6 +2839,9 @@ msgstr "Time sloty" msgid "Software" msgstr "Software" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Některá pole obsahují neplatné hodnoty, nelze uložit!" @@ -2726,15 +2851,14 @@ msgstr "Omlouváme se, ale požadovaný objekt nebyl nalezen." msgid "Sorry, the server encountered an unexpected error." msgstr "Omlouváme se, na serveru došlo k neočekávané vyjímce." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 " -"OpenWRT wiki pro zařízení specifické instalační instrukce." +"wiki pro zařízení specifické instalační instrukce." msgid "Sort" msgstr "Seřadit" @@ -2766,6 +2890,19 @@ msgid "" "dead" msgstr "Určuje počet sekund, po kterém je hostitel považovám za mrtvého" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Zde nastavte soukromý šifrovací klíč." @@ -2802,7 +2939,7 @@ msgid "" "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žadvány pro nedynamické konfigurace " +"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." msgid "Status" @@ -2818,7 +2955,7 @@ msgid "Submit" msgstr "Odeslat" msgid "Suppress logging" -msgstr "" +msgstr "Potlačit logování" msgid "Suppress logging of the routine operation of these protocols" msgstr "" @@ -2838,6 +2975,13 @@ msgstr "Směrovač číslo %q" msgid "Switch %q (%s)" msgstr "Směrovač číslo %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Směrovací protokol" @@ -2913,6 +3057,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "IPv6 prefix přidělený poskytovatelm většinou končí <code>::</code>" @@ -2979,6 +3127,9 @@ msgstr "Délka IPv4 prefixu v bitech, zbytek se používá v IPv6 adresách" msgid "The length of the IPv6 prefix in bits" msgstr "Délka IPv6 prefixu v bitech" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3091,8 +3242,8 @@ msgid "" "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> in the local network" msgstr "" -"Toto je jedný <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" -"abbr>v mistní síti" +"Toto je jediný <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" +"abbr> v mistní síti" msgid "This is the plain username for logging into the account" msgstr "" @@ -3246,12 +3397,12 @@ msgstr "Aktualizovat seznamy" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 OpenWrt kompatabilního firmwaru)." +"(vyžaduje obraz kompatabilního firmwaru)." msgid "Upload archive..." msgstr "Nahrát archiv..." @@ -3336,9 +3487,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Rozhraní VLAN" - msgid "VLANs on %q" msgstr "VLANy na %q" @@ -3434,6 +3582,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Bezdrátová síť" @@ -3470,6 +3621,9 @@ msgstr "Bezdrátová síť vypnuta" msgid "Write received DNS requests to syslog" msgstr "Zapisovat přijaté požadavky DNS do systemového logu" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Podpora XR" @@ -3649,3 +3803,21 @@ msgstr "ano" msgid "« Back" msgstr "« Zpět" + +#~ 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/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index 48331b9ab0..3650235a6d 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d Minuten Abschnitt, %d Sekunden Intervall)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Systemlast (1 Minute):" @@ -277,6 +283,9 @@ msgstr "" "Dies erlaubt DNS-Antworten im 127.0.0.0/8 Bereich der z.B. für RBL Dienste " "genutzt wird" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -285,10 +294,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" -"Erzeugt ein zusätzliches Netzwerk wenn diese Option nicht ausgewählt ist" - msgid "Annex" msgstr "" @@ -396,6 +401,9 @@ msgstr "" msgid "Authentication" msgstr "Authentifizierung" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Authoritativ" @@ -493,9 +501,15 @@ msgstr "" "markierten Konfigurationsdateien. Des Weiteren sind die durch " "benutzerdefinierte Dateiemuster betroffenen Dateien enthalten." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitrate" @@ -534,9 +548,6 @@ msgstr "Knöpfe" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "Prozessor" - msgid "CPU usage (%)" msgstr "CPU-Nutzung (%)" @@ -567,6 +578,9 @@ msgstr "Prüfen" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Prüfsumme" @@ -903,6 +917,9 @@ msgstr "Anfragen nur mit Domain" msgid "Domain whitelist" msgstr "Domain-Whitelist" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -972,6 +989,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> aktivieren" msgid "Enable HE.net dynamic endpoint update" msgstr "Dynamisches HE.net IP-Adress-Update aktivieren" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Aushandeln von IPv6-Adressen auf der PPP-Verbindung aktivieren" @@ -1002,6 +1022,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Diesen Mountpunkt aktivieren" @@ -1023,6 +1046,12 @@ msgstr "Kapselung" msgid "Encryption" msgstr "Verschlüsselung" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Lösche..." @@ -1063,6 +1092,9 @@ msgstr "Externer Protokollserver IP" msgid "External system log server port" msgstr "Externer Protokollserver Port" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1181,6 +1213,11 @@ msgstr "Frei" msgid "Free space" msgstr "Freier Platz" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1240,6 +1277,9 @@ msgstr "HE.net Passwort" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Handler" @@ -1340,6 +1380,9 @@ msgstr "Länge des IPv4 Präfix" msgid "IPv4-Address" msgstr "IPv4-Adresse" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1550,12 +1593,12 @@ msgstr "Java-Script benötigt!" msgid "Join Network" msgstr "Netzwerk beitreten" -msgid "Join Network: Settings" -msgstr "Netzwerk beitreten: Einstellungen" - msgid "Join Network: Wireless Scan" msgstr "Netzwerk beitreten: Suche nach Netzwerken" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Konfiguration behalten" @@ -1671,6 +1714,9 @@ msgstr "Liste von Servern die falsche \"NX Domain\" Antworten liefern" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Nur auf die gegebene Schnittstelle reagieren, nutze alle wenn nicht " @@ -1778,6 +1824,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2108,6 +2157,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Optionen" @@ -2132,6 +2211,12 @@ msgstr "MAC-Adresse überschreiben" msgid "Override MTU" msgstr "MTU-Wert überschreiben" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2250,6 +2335,9 @@ msgstr "Spitze:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2259,6 +2347,9 @@ msgstr "Neustart durchführen" msgid "Perform reset" msgstr "Reset durchführen" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Phy-Rate:" @@ -2280,12 +2371,6 @@ msgstr "Standardregel" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "Port %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "Port %d ist untagged in mehreren VLANs!" - msgid "Port status:" msgstr "Port-Status:" @@ -2295,6 +2380,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2302,7 +2390,7 @@ msgstr "" "Deklariere den Client als tot nach der angegebenen Anzahl von LCP Echo " "Fehlschlägen, nutze den Wert 0 um Fehler zu ignorieren" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2311,6 +2399,9 @@ msgstr "Unterbindet Client-Client-Verkehr" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b W-LAN Adapter" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Fortfahren" @@ -2344,9 +2435,15 @@ msgstr "Neues Netzwerk anbieten" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Qualität" @@ -2490,6 +2587,9 @@ msgstr "Relay-Brücke" msgid "Remote IPv4 address" msgstr "Entfernte IPv4-Adresse" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Entfernen" @@ -2515,6 +2615,18 @@ 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" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2559,6 +2671,12 @@ msgstr "Wurzelverzeichnis für über TFTP ausgelieferte Dateien " msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2584,6 +2702,9 @@ msgstr "Vor dem Einhängen Dateisystemprüfung starten " msgid "Run filesystem check" msgstr "Dateisystemprüfung durchführen" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2725,6 +2846,9 @@ msgstr "Zeitslot" msgid "Software" msgstr "Paketverwaltung" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Einige Felder sind ungültig, kann das Formular nicht speichern!" @@ -2735,15 +2859,14 @@ msgid "Sorry, the server encountered an unexpected error." msgstr "" "Entschuldigung, auf dem Server ist ein unerwarteter Fehler aufgetreten." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 OpenWrt Wiki." +"geflasht werden. Weitere Informationen sowie gerätespezifische " +"Installationsanleitungen entnehmen Sie bitte dem Wiki." msgid "Sort" msgstr "Sortieren" @@ -2777,6 +2900,19 @@ msgstr "" "Spezifiziert die maximale Anzahl an Sekunde nach denen Hoss als tot erachtet " "werden" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Geben Sie hier den geheimen Netzwerkschlüssel an" @@ -2850,6 +2986,13 @@ msgstr "Switch %q" msgid "Switch %q (%s)" msgstr "Switch %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Wechsle Protokoll" @@ -2926,6 +3069,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "Vom Provider zugewiesener IPv6 Präfix, endet normalerweise mit <code>::</" @@ -2992,6 +3139,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "Länge des IPv6 Präfix in Bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3270,8 +3420,8 @@ msgstr "Listen aktualisieren" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 " @@ -3361,9 +3511,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "VLAN Schnittstelle" - msgid "VLANs on %q" msgstr "VLANs auf %q" @@ -3459,6 +3606,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "WLAN" @@ -3495,6 +3645,9 @@ msgstr "WLAN heruntergefahren" msgid "Write received DNS requests to syslog" msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "XR-Unterstützung" @@ -3674,3 +3827,22 @@ msgstr "ja" msgid "« Back" msgstr "« Zurück" + +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "" +#~ "Erzeugt ein zusätzliches Netzwerk wenn diese Option nicht ausgewählt ist" + +#~ msgid "Join Network: Settings" +#~ msgstr "Netzwerk beitreten: Einstellungen" + +#~ msgid "CPU" +#~ msgstr "Prozessor" + +#~ msgid "Port %d" +#~ msgstr "Port %d" + +#~ msgid "Port %d is untagged in multiple VLANs!" +#~ msgstr "Port %d ist untagged in mehreren VLANs!" + +#~ msgid "VLAN Interface" +#~ msgstr "VLAN Schnittstelle" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index c5de065e4d..d5dbff8907 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(παράθυρο %d λεπτών, διάστημα %d δευτερολέπτων)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Φορτίο 1 λεπτού:" @@ -285,6 +291,9 @@ msgstr "" "Να επιτρέπονται απαντήσεις από ανώτερο επίπεδο εντός του εύρους 127.0.0.0/8, " "π.χ. για υπηρεσίες RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -293,9 +302,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Ένα επιπλέον δίκτυο θα δημιουργηθεί εάν αυτό αφεθεί κενό" - msgid "Annex" msgstr "" @@ -403,6 +409,9 @@ msgstr "" msgid "Authentication" msgstr "Εξουσιοδότηση" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Κύριος" @@ -501,9 +510,15 @@ msgstr "" "ουσιώδη βασικά αρχεία καθώς και καθορισμένα από το χρήστη μοτίβα αντιγράφων " "ασφαλείας." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Ρυθμός δεδομένων" @@ -542,9 +557,6 @@ msgstr "Κουμπιά" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "Χρήση CPU (%)" @@ -575,6 +587,9 @@ msgstr "Έλεγχος" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Άθροισμα Ελέγχου" @@ -915,6 +930,9 @@ msgstr "Απαίτηση για όνομα τομέα" msgid "Domain whitelist" msgstr "Λευκή λίστα τομέων" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -988,6 +1006,9 @@ msgstr "Ενεργοποίηση <abbr title=\"Spanning Tree Protocol\">STP</abb msgid "Enable HE.net dynamic endpoint update" msgstr "Ενεργοποίηση ενημέρωσης δυναμικού τερματικού σημείου HE.net." +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Ενεργοποίηση διαπραγμάτευσης IPv6 πάνω στη PPP ζεύξη" @@ -1018,6 +1039,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Ενεργοποίηση αυτής της προσάρτησης" @@ -1039,6 +1063,12 @@ msgstr "Λειτουργία ενθυλάκωσης" msgid "Encryption" msgstr "Κρυπτογράφηση" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Διαγράφεται..." @@ -1079,6 +1109,9 @@ msgstr "Εξωτερικός εξυπηρετητής καταγραφής συ msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1196,6 +1229,11 @@ msgstr "" msgid "Free space" msgstr "Ελεύθερος χώρος" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1253,6 +1291,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1353,6 +1394,9 @@ msgstr "" msgid "IPv4-Address" msgstr "IPv4-Διεύθυνση" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1564,10 +1608,10 @@ msgstr "Απαιτείται Javascript!" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1683,6 +1727,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1780,6 +1827,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2111,6 +2161,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Επιλογές" @@ -2135,6 +2215,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2251,6 +2337,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2260,6 +2349,9 @@ msgstr "Εκτέλεση επανεκκίνησης" msgid "Perform reset" msgstr "Διενέργεια αρχικοποίησης" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2281,12 +2373,6 @@ msgstr "Πολιτική" msgid "Port" msgstr "Θύρα" -msgid "Port %d" -msgstr "Θύρα %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2296,12 +2382,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" #, fuzzy @@ -2311,6 +2400,9 @@ msgstr "Αποτρέπει την επικοινωνία μεταξύ πελατ msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Συνέχεια" @@ -2344,9 +2436,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ψευδό Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2476,6 +2574,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "Απομακρυσμένη διεύθυνση IPv4" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Αφαίρεση" @@ -2500,6 +2601,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2544,6 +2657,12 @@ msgstr "Κατάλογος Root για αρχεία που σερβίροντα msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2570,6 +2689,9 @@ msgstr "Εκτέλεση ελέγχου του συστήματος αρχείω msgid "Run filesystem check" msgstr "Εκτέλεση ελέγχου συστήματος αρχείων" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2709,6 +2831,9 @@ msgstr "" msgid "Software" msgstr "Λογισμικό" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Κάποια πεδία δεν είναι έγκυρα, δεν μπορούν να αποθηκευτούν οι τιμές!" @@ -2720,8 +2845,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2754,6 +2879,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Ορίστε το κρυφό κλειδί κρυπτογράφησης." @@ -2823,6 +2961,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2890,6 +3035,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2950,6 +3099,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3204,8 +3356,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3288,9 +3440,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Διεπαφή VLAN" - msgid "VLANs on %q" msgstr "" @@ -3384,6 +3533,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Ασύρματο" @@ -3420,6 +3572,9 @@ msgstr "Το ασύρματο δίκτυο τερματίστηκε" msgid "Write received DNS requests to syslog" msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Υποστήριξη XR" @@ -3601,3 +3756,12 @@ msgstr "ναι" msgid "« Back" msgstr "« Πίσω" + +#~ 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/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index 7550230ec1..4afe6165c5 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d minute window, %d second interval)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "1 Minute Load:" @@ -276,6 +282,9 @@ msgid "" msgstr "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -284,9 +293,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -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 "Annex" msgstr "" @@ -394,6 +400,9 @@ msgstr "" msgid "Authentication" msgstr "Authentication" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Authoritative" @@ -490,9 +499,15 @@ msgstr "" "configuration files marked by opkg, essential base files and the user " "defined backup patterns." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitrate" @@ -531,9 +546,6 @@ msgstr "Buttons" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "CPU usage (%)" @@ -564,6 +576,9 @@ msgstr "Check" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Checksum" @@ -897,6 +912,9 @@ msgstr "Domain required" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -967,6 +985,9 @@ msgstr "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -997,6 +1018,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -1018,6 +1042,12 @@ msgstr "" msgid "Encryption" msgstr "Encryption" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1055,6 +1085,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1171,6 +1204,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1228,6 +1266,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Handler" @@ -1327,6 +1368,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1533,10 +1577,10 @@ msgstr "" msgid "Join Network" msgstr "Join Network" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1652,6 +1696,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1749,6 +1796,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2078,6 +2128,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Options" @@ -2102,6 +2182,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2218,6 +2304,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2227,6 +2316,9 @@ msgstr "Perform reboot" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2248,12 +2340,6 @@ msgstr "Policy" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2263,12 +2349,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2277,6 +2366,9 @@ msgstr "Prevents client-to-client communication" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Proceed" @@ -2310,9 +2402,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2442,6 +2540,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Remove" @@ -2466,6 +2567,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2510,6 +2623,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2535,6 +2654,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2673,6 +2795,9 @@ msgstr "Slot time" msgid "Software" msgstr "Software" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2684,8 +2809,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2716,6 +2841,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2785,6 +2923,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2852,6 +2997,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2910,6 +3059,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3161,8 +3313,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3245,9 +3397,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3343,6 +3492,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3379,6 +3531,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "XR Support" @@ -3557,3 +3712,9 @@ msgstr "" msgid "« Back" msgstr "« Back" + +#~ 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/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index 2cdc29cdea..d466cf05e1 100644 --- a/modules/luci-base/po/es/base.po +++ b/modules/luci-base/po/es/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(ventana de %d minutos, intervalo de %d segundos)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Carga a 1 minuto:" @@ -282,6 +288,9 @@ msgid "" msgstr "" "Permitir respuestas en el rango 127.0.0.0/8, por ejemplo para servicios RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -290,9 +299,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Se creará una red adicional si deja esto desmarcado." - msgid "Annex" msgstr "" @@ -400,6 +406,9 @@ msgstr "" msgid "Authentication" msgstr "Autentificación" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autorizado" @@ -497,9 +506,15 @@ msgstr "" "esenciales base y los patrones de copia de seguridad definidos por el " "usuario." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitrate" @@ -538,9 +553,6 @@ msgstr "Botones" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Uso de CPU (%)" @@ -571,6 +583,9 @@ msgstr "Comprobar" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Comprobación" @@ -910,6 +925,9 @@ msgstr "Dominio requerido" msgid "Domain whitelist" msgstr "Lista blanca de dominios" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -982,6 +1000,9 @@ msgstr "Activar <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Activar actualización dinámica de punto final HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Activar negociación IPv6 en el enlace PPP" @@ -1012,6 +1033,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Active este punto de montaje" @@ -1033,6 +1057,12 @@ msgstr "Modo de encapsulado" msgid "Encryption" msgstr "Encriptación" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Borrando..." @@ -1073,6 +1103,9 @@ msgstr "Servidor externo de registro del sistema" msgid "External system log server port" msgstr "Puerto del servidor externo de registro del sistema" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1190,6 +1223,11 @@ msgstr "Libre" msgid "Free space" msgstr "Espacio libre" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1249,6 +1287,9 @@ msgstr "Contraseña HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Manejador" @@ -1349,6 +1390,9 @@ msgstr "Longitud de prefijo IPv4" msgid "IPv4-Address" msgstr "Dirección IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1563,12 +1607,12 @@ msgstr "¡Se necesita JavaScript!" msgid "Join Network" msgstr "Unirse a Red" -msgid "Join Network: Settings" -msgstr "Unirse a Red: Configuración" - msgid "Join Network: Wireless Scan" msgstr "Unirse a una red: Exploración inalámbrica" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Conservar la configuración del router" @@ -1684,6 +1728,9 @@ msgstr "Lista de máquinas que proporcionan resultados de dominio NX falsos" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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" @@ -1788,6 +1835,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2116,6 +2166,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Opciones" @@ -2140,6 +2220,12 @@ msgstr "Ignorar dirección MAC" msgid "Override MTU" msgstr "Ignorar MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2258,6 +2344,9 @@ msgstr "Pico:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2267,6 +2356,9 @@ msgstr "Rearrancar" msgid "Perform reset" msgstr "Reiniciar" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Ratio Phy:" @@ -2288,12 +2380,6 @@ msgstr "Política" msgid "Port" msgstr "Puerto" -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 "Port status:" msgstr "Estado del puerto:" @@ -2303,6 +2389,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2310,7 +2399,7 @@ msgstr "" "Asumir que el otro estará muerto tras estos fallos de echo LCP, use 0 para " "ignorar fallos" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2319,6 +2408,9 @@ msgstr "Impide la comunicación cliente a cliente" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Controlador inalámbrico 802.11n Prism2/2.5/3" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Proceder" @@ -2352,9 +2444,15 @@ msgstr "Introduzca una nueva red" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Calidad" @@ -2496,6 +2594,9 @@ msgstr "Puente relé" msgid "Remote IPv4 address" msgstr "Dirección IPv4 remota" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Desinstalar" @@ -2520,6 +2621,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Necesario para ciertos ISPs, por ejemplo Charter con DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2564,6 +2677,12 @@ msgstr "Directorio raíz para los ficheros servidos por TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2589,6 +2708,9 @@ msgstr "Comprobar el sistema de ficheros antes de montar el dispositivo" msgid "Run filesystem check" msgstr "Comprobar el sistema de ficheros" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2730,6 +2852,9 @@ msgstr "Tiempo asignado" msgid "Software" msgstr "Instalación de programas" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Algunos campos no son válidos, ¡no se pueden guardar!" @@ -2739,15 +2864,14 @@ msgstr "Objeto no encontrado." msgid "Sorry, the server encountered an unexpected error." msgstr "El servidor encontró un error inesperado." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 de OpenWrt para instrucciones " -"de instalación específicas." +"grabarse manualmente. Por favor, mire el wiki para instrucciones de " +"instalación específicas." msgid "Sort" msgstr "Ordenar" @@ -2782,6 +2906,19 @@ msgstr "" "Especifica la cantidad de segundos a transcurrir hasta suponer muerta una " "máquina" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Especifica la clave secreta de encriptado." @@ -2855,6 +2992,13 @@ msgstr "Switch %q" msgid "Switch %q (%s)" msgstr "Switch %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Intercambiar protocolo" @@ -2932,6 +3076,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "El prefijo IPv6 asignado por el proveedor, suele termina con <code>::</code>" @@ -3000,6 +3148,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "Longitud del prefijo IPv6 en bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3271,12 +3422,12 @@ msgstr "Actualizar listas" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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\" si lo desea (es " -"necesario que la imagen de OpenWrt sea compatible)." +"necesario que la imagen sea compatible)." msgid "Upload archive..." msgstr "Subir archivo..." @@ -3362,9 +3513,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interfaz VLAN" - msgid "VLANs on %q" msgstr "VLANs en %q" @@ -3460,6 +3608,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Red inalámbrica" @@ -3496,6 +3647,9 @@ msgstr "Apagando red inalámbrica" msgid "Write received DNS requests to syslog" msgstr "Escribir las peticiones de DNS recibidas en el registro del sistema" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Soporte de XR" @@ -3677,3 +3831,21 @@ msgstr "sí" msgid "« Back" msgstr "« Volver" + +#~ 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/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index 24608e380a..b8a68f05d9 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(fenêtre de %d minutes, intervalle de %d secondes)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Charge sur 1 minute :" @@ -288,6 +294,9 @@ msgstr "" "Autorise les réponses de l'amont dans la plage 127.0.0.0/8, par ex. pour les " "services RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -296,9 +305,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -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 "Annex" msgstr "" @@ -406,6 +412,9 @@ msgstr "" msgid "Authentication" msgstr "Authentification" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritaire" @@ -502,9 +511,15 @@ msgstr "" "de configuration modifiés marqués par opkg, des fichiers de base essentiels, " "et des motifs de sauvegarde définis par l'utilisateur." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Débit" @@ -543,9 +558,6 @@ msgstr "Boutons" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Utilisation CPU (%)" @@ -576,6 +588,9 @@ msgstr "Vérification" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Somme de contrôle" @@ -920,6 +935,9 @@ msgstr "Domaine nécessaire" msgid "Domain whitelist" msgstr "Liste blanche de domaines" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -992,6 +1010,9 @@ msgstr "Activer le protocole <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Activer la mise à jour dynamique de l'extrémité du tunnel chez HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Activer la négociation IPv6 sur le lien PPP" @@ -1022,6 +1043,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Activer ce montage" @@ -1045,6 +1069,12 @@ msgstr "Mode encapsulé" msgid "Encryption" msgstr "Chiffrement" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Effacement…" @@ -1085,6 +1115,9 @@ msgstr "Serveur distant de journaux système" msgid "External system log server port" msgstr "Port du serveur distant de journaux système" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1201,6 +1234,11 @@ msgstr "Libre" msgid "Free space" msgstr "Espace libre" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "Ghz" @@ -1260,6 +1298,9 @@ msgstr "Mot de passe HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Gestionnaire" @@ -1361,6 +1402,9 @@ msgstr "longueur du préfixe IPv4" msgid "IPv4-Address" msgstr "Adresse IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1574,12 +1618,12 @@ msgstr "Nécessite un Script Java !" msgid "Join Network" msgstr "Rejoindre un réseau" -msgid "Join Network: Settings" -msgstr "Rejoindre un réseau : paramètres" - msgid "Join Network: Wireless Scan" msgstr "Rejoindre un réseau : recherche des réseaux sans-fil" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Garder le paramètrage" @@ -1696,6 +1740,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Écouter seulement sur l'interface spécifié, sinon sur toutes" @@ -1802,6 +1849,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2129,6 +2179,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Options" @@ -2153,6 +2233,12 @@ msgstr "Modifier l'adresse MAC" msgid "Override MTU" msgstr "Modifier le MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2271,6 +2357,9 @@ msgstr "Pic :" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2280,6 +2369,9 @@ msgstr "Redémarrer" msgid "Perform reset" msgstr "Réinitialiser" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Débit de la puce:" @@ -2301,12 +2393,6 @@ msgstr "Politique" msgid "Port" msgstr "Port" -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 "Port status:" msgstr "Statut du port :" @@ -2316,6 +2402,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2323,7 +2412,7 @@ msgstr "" "Suppose que le distant a disparu une fois le nombre donné d'erreurs d'échos " "LCP ; utiliser 0 pour ignorer ces erreurs" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2332,6 +2421,9 @@ msgstr "Empêche la communication directe entre clients" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Contrôleur sans fil Prism2/2.5/3 802.11b" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Continuer" @@ -2365,9 +2457,15 @@ msgstr "Donner un nouveau réseau" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Qualitée" @@ -2509,6 +2607,9 @@ msgstr "Pont-relais" msgid "Remote IPv4 address" msgstr "Adresse IPv4 distante" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Désinstaller" @@ -2533,6 +2634,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Nécessaire avec certains FAIs, par ex. : Charter avec DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2577,6 +2690,12 @@ msgstr "Répertoire racine des fichiers fournis par TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2603,6 +2722,9 @@ msgstr "" msgid "Run filesystem check" msgstr "Faire une vérification du système de fichiers" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2744,6 +2866,9 @@ msgstr "Tranche de temps" msgid "Software" msgstr "Logiciels" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Certains champs sont invalides, ne peut sauvegarder les valeurs !" @@ -2753,16 +2878,15 @@ msgstr "Désolé, l'objet que vous avez demandé n'as pas été trouvé." msgid "Sorry, the server encountered an unexpected error." msgstr "Désolé, le serveur à rencontré une erreur inattendue." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 OpenWrt pour connaître les instructions d'installation spécifiques à " -"votre matériel." +"au wiki pour connaître les instructions d'installation spécifiques à votre " +"matériel." msgid "Sort" msgstr "Trier" @@ -2794,6 +2918,19 @@ msgid "" "dead" msgstr "Indique le délai après quoi les hôtes seront supposés disparus" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Spécifiez ici la clé secrète de chiffrage." @@ -2867,6 +3004,13 @@ msgstr "Commutateur %q" msgid "Switch %q (%s)" msgstr "Commutateur %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Protocole du commutateur" @@ -2943,6 +3087,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "Le préfixe IPv6 attribué par le fournisseur, se termine généralement par " @@ -3011,6 +3159,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "La longueur du préfixe IPv6 en bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3289,13 +3440,13 @@ msgstr "Mettre les listes à jour" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 " -"OpenWRT compatible)." +"compatible)." msgid "Upload archive..." msgstr "Envoi de l'archive…" @@ -3381,9 +3532,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interface du VLAN" - msgid "VLANs on %q" msgstr "VLANs sur %q" @@ -3479,6 +3627,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Sans-fil" @@ -3515,6 +3666,9 @@ msgstr "Wi-Fi arrêté" msgid "Write received DNS requests to syslog" msgstr "Écrire les requêtes DNS reçues dans syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Gestion du mode XR" @@ -3695,3 +3849,21 @@ msgstr "oui" msgid "« Back" msgstr "« Retour" + +#~ 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/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index 5a0c07c66a..5ed0029b79 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -11,6 +11,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "" @@ -38,6 +41,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "עומס במשך דקה:" @@ -275,6 +281,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -283,10 +292,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -#, fuzzy -msgid "An additional network will be created if you leave this unchecked." -msgstr "רשת נוספת תווצר אם תשאיר את זה לא מסומן" - msgid "Annex" msgstr "" @@ -396,6 +401,9 @@ msgstr "" msgid "Authentication" msgstr "אימות" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "מוסמך" @@ -492,9 +500,15 @@ msgstr "" "המסומנים ב opkg ׁOpen PacKaGe Managementׂ, קבצי בסיס חיוניים ותבניות הגיבוי " "המוגדרות ע\"י המשתמש." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -534,9 +548,6 @@ msgstr "כפתורים" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "מעבד" - msgid "CPU usage (%)" msgstr "שימוש מעבד (%)" @@ -567,6 +578,9 @@ msgstr "לבדוק" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "" @@ -886,6 +900,9 @@ msgstr "" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -953,6 +970,9 @@ msgstr "אפשר <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -983,6 +1003,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -1004,6 +1027,12 @@ msgstr "" msgid "Encryption" msgstr "הצפנה" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "מוחק..." @@ -1041,6 +1070,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1157,6 +1189,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1214,6 +1251,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1311,6 +1351,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "" @@ -1509,10 +1552,10 @@ msgstr "" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1628,6 +1671,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1725,6 +1771,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2046,6 +2095,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "" @@ -2070,6 +2149,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2186,6 +2271,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2195,6 +2283,9 @@ msgstr "" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2216,12 +2307,6 @@ msgstr "" msgid "Port" msgstr "" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2231,12 +2316,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2245,6 +2333,9 @@ msgstr "" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "" @@ -2278,9 +2369,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2411,6 +2508,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "" @@ -2435,6 +2535,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2479,6 +2591,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2502,6 +2620,9 @@ msgstr "" msgid "Run filesystem check" msgstr "הרץ בדיקת מערכת קבצים" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2641,6 +2762,9 @@ msgstr "" msgid "Software" msgstr "תוכנה" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "חלק מהשדות אינם תקינים, אין אפשרות לשמור את הערכים!" @@ -2650,14 +2774,13 @@ msgstr "סליחה, אך האובייקט שביקשת אינו נמצא." msgid "Sorry, the server encountered an unexpected error." msgstr "סליחה, השרת נתקל בשגיאה לא צפויה." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" "סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה " -"אל ה-wiki של OpenWrt עבור הוראות ספציפיות למכשיר שלך." +"אל ה-wiki של OpenWrt/LEDE עבור הוראות ספציפיות למכשיר שלך." msgid "Sort" msgstr "מיין" @@ -2687,6 +2810,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2759,6 +2895,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2826,6 +2969,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2880,6 +3027,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3121,8 +3271,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3205,9 +3355,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3301,6 +3448,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3337,6 +3487,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "" @@ -3510,3 +3663,10 @@ msgstr "כן" msgid "« Back" msgstr "<< אחורה" + +#, fuzzy +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "רשת נוספת תווצר אם תשאיר את זה לא מסומן" + +#~ msgid "CPU" +#~ msgstr "מעבד" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index ed64f994e6..d7c19278eb 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -11,6 +11,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d perces ablak, %d másodperces intervallum)" @@ -38,6 +41,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Terhelés (utolsó 1 perc):" @@ -281,6 +287,9 @@ msgstr "" "A 127.0.0.0/8-as tartományba eső DNS válaszok engedélyezése (pl. RBL " "szervizek)" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -289,9 +298,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -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 "Annex" msgstr "" @@ -399,6 +405,9 @@ msgstr "" msgid "Authentication" msgstr "Hitelesítés" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Hiteles" @@ -496,9 +505,15 @@ msgstr "" "fájlokból valamint a felhasználó által megadott mintáknak megfelelő " "fájlokból áll." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitráta" @@ -537,9 +552,6 @@ msgstr "Gombok" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "Processzor" - msgid "CPU usage (%)" msgstr "Processzor használat (%)" @@ -571,6 +583,9 @@ msgstr "Ellenőrzés" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Ellenőrző összeg" @@ -911,6 +926,9 @@ msgstr "Tartomány szükséges" msgid "Domain whitelist" msgstr "Tartomány fehérlista" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -985,6 +1003,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> engedélyezése" msgid "Enable HE.net dynamic endpoint update" msgstr "HE.net dinamikus végpont frissítésének engedélyezése" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "IPv6 egyeztetés engedélyezése a PPP linken" @@ -1015,6 +1036,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "A csatolás engedélyezése" @@ -1036,6 +1060,12 @@ msgstr "Beágyazási mód" msgid "Encryption" msgstr "Titkosítás" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Törlés..." @@ -1074,6 +1104,9 @@ msgstr "Külső rendszernapló kiszolgáló" msgid "External system log server port" msgstr "Külső rendszernapló kiszolgáló port" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1192,6 +1225,11 @@ msgstr "Szabad" msgid "Free space" msgstr "Szabad hely" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1249,6 +1287,9 @@ msgstr "HE.net jelszó" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Kezelő" @@ -1350,6 +1391,9 @@ msgstr "IPv4 prefix hossza" msgid "IPv4-Address" msgstr "IPv4-cím" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1563,12 +1607,12 @@ msgstr "Javascript szükséges!" msgid "Join Network" msgstr "Csatlakozás a hálózathoz" -msgid "Join Network: Settings" -msgstr "Csatlakozás a hálózathoz: Beállítások" - msgid "Join Network: Wireless Scan" msgstr "Csatlakozás a hálózathoz: vezetéknélküli hálózatok keresése" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Beállítások megtartása" @@ -1684,6 +1728,9 @@ msgstr "A hamis NX tartomány eredményeket szolgáltató gépek listája" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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 " @@ -1791,6 +1838,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2119,6 +2169,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Lehetőségek" @@ -2143,6 +2223,12 @@ msgstr "MAC cím felülbírálása" msgid "Override MTU" msgstr "MTU felülbíráslás" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2261,6 +2347,9 @@ msgstr "Csúcs:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2270,6 +2359,9 @@ msgstr "Újraindítás végrehajtása" msgid "Perform reset" msgstr "Visszaállítás végrehajtása" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Phy sebesség:" @@ -2291,12 +2383,6 @@ msgstr "Szabály" msgid "Port" msgstr "Port" -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 "Port status:" msgstr "Port állapot:" @@ -2306,6 +2392,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2313,7 +2402,7 @@ 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." -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2322,6 +2411,9 @@ msgstr "Ügyfél-ügyfél közötti kommunikáció megakadályozása" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b vezeték nélküli vezérlő" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Folytatás" @@ -2355,9 +2447,15 @@ msgstr "Új hálózat nyújtása" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ál Ad-hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Minőség" @@ -2500,6 +2598,9 @@ msgstr "Átjátszó híd" msgid "Remote IPv4 address" msgstr "Távoli IPv4 cím" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Eltávolítás" @@ -2525,6 +2626,18 @@ 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" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2569,6 +2682,12 @@ msgstr "TFTP-n keresztül megosztott fájlok gyökérkönyvtára" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2594,6 +2713,9 @@ msgstr "Fájlrendszer ellenőrzés futtatása az eszköz csatolása előtt" msgid "Run filesystem check" msgstr "Fájlrendszer ellenőrzés futtatása" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2735,6 +2857,9 @@ msgstr "Időrés" msgid "Software" msgstr "Szoftver" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Néhán mező érvénytelen, az értékek nem menthetők!" @@ -2744,15 +2869,14 @@ msgstr "Sajnálom, a kért objektum nem található." msgid "Sorry, the server encountered an unexpected error." msgstr "Sajnálom, a szerver váratlan hibát észlelt." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 OpenWrt wiki-t." +"utasításokért keresse fel az wiki-t." msgid "Sort" msgstr "Sorbarendezés" @@ -2785,6 +2909,19 @@ msgid "" msgstr "" "Megadja a másodpercek számát, amik után a host nem elérhetőnek tekinthető" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Itt adja meg a titkosító kulcsot." @@ -2858,6 +2995,13 @@ msgstr "Kapcsoló %q" msgid "Switch %q (%s)" msgstr "Kapcsoló %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Protokoll csere" @@ -2933,6 +3077,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "A szolgáltatóhoz rendelt IPv6 előtag, általában így végződik: <code>::</code>" @@ -3002,6 +3150,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "Az IPv6 előtag hossza bitekben" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3277,13 +3428,12 @@ msgstr "Listák frissítése" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 (OpenWrt-vel kompatibilis firmware kép " -"szükséges)." +"\"Beállítások megtartása\" négyzetet (kompatibilis firmware kép szükséges)." msgid "Upload archive..." msgstr "Archívum feltöltése..." @@ -3369,9 +3519,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "VLAN interfész" - msgid "VLANs on %q" msgstr "VLAN-ok %q-n" @@ -3467,6 +3614,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Vezetéknélküli rész" @@ -3503,6 +3653,9 @@ msgstr "Vezetéknélküli rész leállítása" msgid "Write received DNS requests to syslog" msgstr "A kapott DNS kéréseket írja a rendszernaplóba" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "XR támogatás" @@ -3684,3 +3837,21 @@ msgstr "igen" msgid "« Back" msgstr "« Vissza" + +#~ 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/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index 21bcf10aec..199ffcb8f3 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.6.10\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d finestra in minuti , %d secondi intervallo)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Carico in 1 minuto:" @@ -288,6 +294,9 @@ msgstr "" "Permetti le risposte upstream nell'intervallo 127.0.0.0/8, per esempio nei " "servizi RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -296,9 +305,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Sarà creata una rete aggiuntiva se lasci questo senza spunta." - msgid "Annex" msgstr "" @@ -406,6 +412,9 @@ msgstr "" msgid "Authentication" msgstr "Autenticazione PEAP" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritativo" @@ -502,9 +511,15 @@ msgstr "" "composta dai file di configurazione modificati installati da opkg, file di " "base essenziali e i file di backup definiti dall'utente." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitrate" @@ -543,9 +558,6 @@ msgstr "Pulsanti" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Uso CPU (%)" @@ -576,6 +588,9 @@ msgstr "Verifica" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Checksum" @@ -914,6 +929,9 @@ msgstr "Dominio richiesto" msgid "Domain whitelist" msgstr "Elenco Domini consentiti" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -986,6 +1004,9 @@ msgstr "Abilita <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Abilitazione aggiornamento endpoint dinamico HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Attiva la negoziazione IPv6 sul collegamento PPP" @@ -1016,6 +1037,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Abilita questo mount" @@ -1037,6 +1061,12 @@ msgstr "Modalità di incapsulamento" msgid "Encryption" msgstr "Crittografia" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Cancellazione..." @@ -1076,6 +1106,9 @@ msgstr "Server Log di Sistema esterno" msgid "External system log server port" msgstr "Porta Server Log di Sistema esterno" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1192,6 +1225,11 @@ msgstr "Disponibile" msgid "Free space" msgstr "Spazio libero" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1231,7 +1269,7 @@ msgid "Global Settings" msgstr "" msgid "Global network options" -msgstr "" +msgstr "Opzioni rete globale" msgid "Go to password configuration..." msgstr "Vai alla configurazione della password..." @@ -1251,6 +1289,9 @@ msgstr "Password HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Gestore" @@ -1353,6 +1394,9 @@ msgstr "Lunghezza prefisso IPv4" msgid "IPv4-Address" msgstr "Indirizzo-IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1477,7 +1521,7 @@ msgid "Inactivity timeout" msgstr "Tempo di Inattività" msgid "Inbound:" -msgstr "in entrata:" +msgstr "In entrata:" msgid "Info" msgstr "Informazioni" @@ -1565,12 +1609,12 @@ msgstr "Richiesto Java Script!" msgid "Join Network" msgstr "Aggiungi Rete" -msgid "Join Network: Settings" -msgstr "Aggiunta Rete: Impostazioni" - msgid "Join Network: Wireless Scan" msgstr "Aggiunta Rete: Rilevamento Wireless" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Mantieni le Impostazioni" @@ -1596,7 +1640,7 @@ msgid "L2TP Server" msgstr "Server L2TP" msgid "LCP echo failure threshold" -msgstr "fallimento soglia echo LCP" +msgstr "Fallimento soglia echo LCP" msgid "LCP echo interval" msgstr "Intervallo echo LCP" @@ -1686,6 +1730,9 @@ msgstr "Elenco degli host che forniscono falsi risultati di dominio NX" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Ascolta solo l'interfaccia data o, se non specificato, su tutte" @@ -1763,7 +1810,7 @@ msgid "Login" msgstr "Login" msgid "Logout" -msgstr "Logout" +msgstr "Slogga" msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -1789,6 +1836,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -1969,7 +2019,7 @@ msgid "Network boot image" msgstr "" msgid "Network without interfaces." -msgstr "" +msgstr "Rete senza interfaccia" msgid "Next »" msgstr "Prossimo »" @@ -2117,6 +2167,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Opzioni" @@ -2127,7 +2207,7 @@ msgid "Out" msgstr "" msgid "Outbound:" -msgstr "" +msgstr "In uscita:" msgid "Outdoor Channels" msgstr "" @@ -2139,6 +2219,12 @@ msgid "Override MAC address" msgstr "" msgid "Override MTU" +msgstr "Sovrascivi MTU" + +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" msgstr "" msgid "Override default interface name" @@ -2257,6 +2343,9 @@ msgstr "Picco:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2266,6 +2355,9 @@ msgstr "Esegui un riavvio" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2287,12 +2379,6 @@ msgstr "" msgid "Port" msgstr "Porta" -msgid "Port %d" -msgstr "Porta %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2302,12 +2388,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2316,6 +2405,9 @@ msgstr "Impedisci la comunicazione fra Client" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Continuare" @@ -2349,9 +2441,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2484,6 +2582,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Rimuovi" @@ -2508,6 +2609,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2552,6 +2665,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2577,6 +2696,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2715,6 +2837,9 @@ msgstr "Slot time" msgid "Software" msgstr "Software" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Alcuni campi non sono validi, non è possibile salvare i valori!" @@ -2724,16 +2849,15 @@ msgstr "Siamo spiacenti, l'oggetto che hai richiesto non è stato trovato." msgid "Sorry, the server encountered an unexpected error." msgstr "Spiacente, il server ha rilevato un errore imprevisto." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 di OpenWrt per le istruzioni di installazione di " -"dispositivi specifici." +"riferimento al wiki per le istruzioni di installazione di dispositivi " +"specifici." msgid "Sort" msgstr "Elenca" @@ -2767,6 +2891,19 @@ msgstr "" "Specifica la quantità massima di secondi dopo di che si presume che gli host " "siano morti." +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Specificare la chiave di cifratura qui." @@ -2840,6 +2977,13 @@ msgstr "Switch %q" msgid "Switch %q (%s)" msgstr "Switch %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Cambia protocollo" @@ -2916,6 +3060,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "Il prefisso IPv6 assegnati dal provider, si conclude di solito con <code>::</" @@ -2975,6 +3123,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3228,13 +3379,12 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 OpenWrt " -"compatibile)." +"configurazione corrente (richiede un immagine del firmware compatibile)." msgid "Upload archive..." msgstr "Carica archivio..." @@ -3320,9 +3470,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interfaccia VLAN" - msgid "VLANs on %q" msgstr "VLANs su %q" @@ -3418,6 +3565,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Wireless" @@ -3454,6 +3604,9 @@ msgstr "Wireless spento" msgid "Write received DNS requests to syslog" msgstr "Scrittura delle richiesta DNS ricevute nel syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Supporto XR" @@ -3637,3 +3790,18 @@ msgstr "Sì" msgid "« Back" msgstr "« Indietro" + +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "Sarà creata una rete aggiuntiva se lasci questo senza spunta." + +#~ msgid "Join Network: Settings" +#~ msgstr "Aggiunta Rete: Impostazioni" + +#~ msgid "CPU" +#~ msgstr "CPU" + +#~ msgid "Port %d" +#~ msgstr "Porta %d" + +#~ msgid "VLAN Interface" +#~ msgstr "Interfaccia VLAN" diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index 63cfb28577..ac17c21f05 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -3,15 +3,18 @@ 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-10-06 02:29+0200\n" -"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n" +"PO-Revision-Date: 2016-12-16 15:23+0900\n" +"Last-Translator: musashino205 <musashino.open@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 1.5.7\n" + +msgid "%s is untagged in multiple VLANs!" +msgstr "%s は複数のVLANにUntaggedしています!" msgid "(%d minute window, %d second interval)" msgstr "(%d 分幅, %d 秒間隔)" @@ -35,9 +38,12 @@ msgid "-- custom --" msgstr "-- 手動設定 --" msgid "-- match by device --" -msgstr "" +msgstr "-- デバイスで設定 --" msgid "-- match by label --" +msgstr "-- ラベルで設定 --" + +msgid "-- match by uuid --" msgstr "" msgid "1 Minute Load:" @@ -92,6 +98,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-ゲートウェ msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス (16進数)" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" @@ -275,16 +282,16 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" msgstr "" msgid "Always announce default router" -msgstr "" - -msgid "An additional network will be created if you leave this unchecked." -msgstr "チェックボックスがオフの場合、追加のネットワークが作成されます。" +msgstr "常にデフォルト ルーターとして通知する" msgid "Annex" msgstr "" @@ -333,6 +340,8 @@ msgstr "" msgid "Announce as default router even if no public prefix is available." msgstr "" +"利用可能なパブリック プレフィクスが無くても、デフォルトのルーターとして通知し" +"ます。" msgid "Announced DNS domains" msgstr "" @@ -344,10 +353,10 @@ msgid "Anonymous Identity" msgstr "" msgid "Anonymous Mount" -msgstr "" +msgstr "アノニマス マウント" msgid "Anonymous Swap" -msgstr "" +msgstr "アノニマス スワップ" msgid "Antenna 1" msgstr "アンテナ 1" @@ -393,6 +402,9 @@ msgstr "" msgid "Authentication" msgstr "認証" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Authoritative" @@ -403,25 +415,25 @@ msgid "Auto Refresh" msgstr "自動更新" msgid "Automatic" -msgstr "" +msgstr "自動" msgid "Automatic Homenet (HNCP)" msgstr "" msgid "Automatically check filesystem for errors before mounting" -msgstr "" +msgstr "マウント実行前にファイルシステムのエラーを自動でチェックします。" msgid "Automatically mount filesystems on hotplug" -msgstr "" +msgstr "ホットプラグによってファイルシステムを自動的にマウントします。" msgid "Automatically mount swap on hotplug" -msgstr "" +msgstr "ホットプラグによってスワップ パーティションを自動的にマウントします。" msgid "Automount Filesystem" -msgstr "" +msgstr "ファイルシステム 自動マウント" msgid "Automount Swap" -msgstr "" +msgstr "スワップ 自動マウント" msgid "Available" msgstr "使用可" @@ -489,8 +501,15 @@ msgstr "" "て認識されている設定ファイル、重要なベースファイル、ユーザーが設定した正規表" "現に一致したファイルの一覧です。" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +"ワイルドカード アドレスではなく、特定のインターフェースのみにバインドします。" + +msgid "Bind the tunnel to this interface (optional)." +msgstr "" msgid "Bitrate" msgstr "ビットレート" @@ -523,6 +542,8 @@ msgid "" "Build/distribution specific feed definitions. This file will NOT be " "preserved in any sysupgrade." msgstr "" +"ビルド/ディストリビューション固有のフィード定義です。このファイルはsysupgrade" +"の際に引き継がれません。" msgid "Buttons" msgstr "ボタン" @@ -530,9 +551,6 @@ msgstr "ボタン" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "CPU使用率 (%)" @@ -540,7 +558,7 @@ msgid "Cancel" msgstr "キャンセル" msgid "Category" -msgstr "" +msgstr "カテゴリー" msgid "Chain" msgstr "チェイン" @@ -561,6 +579,9 @@ msgid "Check" msgstr "チェック" msgid "Check fileystems before mount" +msgstr "マウント前にファイルシステムをチェックする" + +msgid "Check this option to delete the existing networks from this radio." msgstr "" msgid "Checksum" @@ -650,7 +671,7 @@ msgid "Connection Limit" msgstr "接続制限" msgid "Connection to server fails when TLS cannot be used" -msgstr "" +msgstr "TLSが使用できないとき、サーバーへの接続は失敗します。" msgid "Connections" msgstr "ネットワーク接続" @@ -692,9 +713,11 @@ msgid "" "Custom feed definitions, e.g. private feeds. This file can be preserved in a " "sysupgrade." msgstr "" +"プライベート フィードなどのカスタム フィード定義です。このファイルは" +"sysupgrade時に引き継ぐことができます。" msgid "Custom feeds" -msgstr "" +msgstr "カスタム フィード" msgid "" "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" @@ -722,13 +745,13 @@ msgid "DHCPv6 Leases" msgstr "DHCPv6 リース" msgid "DHCPv6 client" -msgstr "" +msgstr "DHCPv6 クライアント" msgid "DHCPv6-Mode" -msgstr "" +msgstr "DHCPv6-モード" msgid "DHCPv6-Service" -msgstr "" +msgstr "DHCPv6-サービス" msgid "DNS" msgstr "DNS" @@ -749,7 +772,7 @@ msgid "DPD Idle Timeout" msgstr "" msgid "DS-Lite AFTR address" -msgstr "" +msgstr "DS-Lite AFTR アドレス" msgid "DSL" msgstr "" @@ -776,7 +799,7 @@ msgid "Default gateway" msgstr "デフォルトゲートウェイ" msgid "Default is stateless + stateful" -msgstr "" +msgstr "デフォルトは ステートレス + ステートフル です。" msgid "Default route" msgstr "" @@ -817,7 +840,7 @@ msgid "Device Configuration" msgstr "デバイス設定" msgid "Device is rebooting..." -msgstr "" +msgstr "デバイスを再起動中です..." msgid "Device unreachable" msgstr "" @@ -866,7 +889,7 @@ msgid "Distance to farthest network member in meters." msgstr "最も遠い端末との距離(メートル)を設定してください。" msgid "Distribution feeds" -msgstr "" +msgstr "ディストリビューション フィード" msgid "Diversity" msgstr "ダイバシティ" @@ -901,6 +924,9 @@ msgstr "ドメイン必須" msgid "Domain whitelist" msgstr "ドメイン・ホワイトリスト" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -926,7 +952,7 @@ msgstr "" "す。" msgid "Dual-Stack Lite (RFC6333)" -msgstr "" +msgstr "Dual-Stack Lite (RFC6333)" msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" msgstr "" @@ -974,6 +1000,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr>を有効にする" msgid "Enable HE.net dynamic endpoint update" msgstr "HE.netの動的endpoint更新を有効にします" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "PPPリンクのIPv6ネゴシエーションを有効にする" @@ -1004,6 +1033,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "マウント設定を有効にする" @@ -1025,6 +1057,12 @@ msgstr "カプセル化モード" msgid "Encryption" msgstr "暗号化モード" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "消去中..." @@ -1041,7 +1079,7 @@ msgid "Ethernet Switch" msgstr "イーサネットスイッチ" msgid "Exclude interfaces" -msgstr "" +msgstr "除外インターフェース" msgid "Expand hosts" msgstr "拡張ホスト設定" @@ -1057,7 +1095,7 @@ msgstr "" "code>)." msgid "External" -msgstr "" +msgstr "外部" msgid "External system log server" msgstr "外部システムログ・サーバー" @@ -1065,8 +1103,11 @@ msgstr "外部システムログ・サーバー" msgid "External system log server port" msgstr "外部システムログ・サーバーポート" +msgid "External system log server protocol" +msgstr "外部システムログ・サーバー プロトコル" + msgid "Extra SSH command options" -msgstr "" +msgstr "拡張 SSHコマンドオプション" msgid "Fast Frames" msgstr "ファスト・フレーム" @@ -1093,6 +1134,8 @@ msgid "" "Find all currently attached filesystems and swap and replace configuration " "with defaults based on what was detected" msgstr "" +"現在アタッチされている全てのファイルシステムとスワップを検索し、検出結果に基" +"づいてデフォルト設定を置き換えます。" msgid "Find and join network" msgstr "ネットワークを検索して参加" @@ -1113,7 +1156,7 @@ msgid "Firewall Status" msgstr "ファイアウォール・ステータス" msgid "Firmware File" -msgstr "" +msgstr "ファームウェア ファイル" msgid "Firmware Version" msgstr "ファームウェア・バージョン" @@ -1182,6 +1225,11 @@ msgstr "空き" msgid "Free space" msgstr "ディスクの空き容量" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1201,10 +1249,10 @@ msgid "General Setup" msgstr "一般設定" msgid "General options for opkg" -msgstr "" +msgstr "opkgの一般設定" msgid "Generate Config" -msgstr "" +msgstr "コンフィグ生成" msgid "Generate archive" msgstr "バックアップアーカイブの作成" @@ -1216,7 +1264,7 @@ msgid "Given password confirmation did not match, password not changed!" msgstr "入力されたパスワードが一致しません。パスワードは変更されませんでした!" msgid "Global Settings" -msgstr "" +msgstr "全体設定" msgid "Global network options" msgstr "" @@ -1231,7 +1279,7 @@ msgid "Group Password" msgstr "" msgid "Guest" -msgstr "" +msgstr "ゲスト" msgid "HE.net password" msgstr "HE.net パスワード" @@ -1239,6 +1287,9 @@ msgstr "HE.net パスワード" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "HT モード (802.11n)" + msgid "Handler" msgstr "ハンドラ" @@ -1249,7 +1300,7 @@ msgid "Header Error Code Errors (HEC)" msgstr "" msgid "Heartbeat" -msgstr "" +msgstr "ハートビート" msgid "" "Here you can configure the basic aspects of your device like its hostname or " @@ -1269,7 +1320,7 @@ msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>の隠匿" msgid "Host" -msgstr "" +msgstr "ホスト" msgid "Host entries" msgstr "ホストエントリー" @@ -1291,7 +1342,7 @@ msgid "Hostnames" msgstr "ホスト名" msgid "Hybrid" -msgstr "" +msgstr "ハイブリッド" msgid "IKE DH Group" msgstr "" @@ -1330,7 +1381,7 @@ msgid "IPv4 only" msgstr "IPv4のみ" msgid "IPv4 prefix" -msgstr "" +msgstr "IPv4 プレフィクス" msgid "IPv4 prefix length" msgstr "IPv4 プレフィクス長" @@ -1338,6 +1389,9 @@ msgstr "IPv4 プレフィクス長" msgid "IPv4-Address" msgstr "IPv4-アドレス" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "IPv4-in-IPv4 (RFC2003)" + msgid "IPv6" msgstr "IPv6" @@ -1348,10 +1402,10 @@ msgid "IPv6 Neighbours" msgstr "" msgid "IPv6 Settings" -msgstr "" +msgstr "IPv6 設定" msgid "IPv6 ULA-Prefix" -msgstr "" +msgstr "IPv6 ULA-プレフィクス" msgid "IPv6 WAN Status" msgstr "IPv6 WAN ステータス" @@ -1500,7 +1554,7 @@ msgid "Interface is shutting down..." msgstr "インターフェース終了中..." msgid "Interface name" -msgstr "" +msgstr "インターフェース名" msgid "Interface not present or not connected yet." msgstr "インターフェースが存在しないか、接続していません" @@ -1515,7 +1569,7 @@ msgid "Interfaces" msgstr "インターフェース" msgid "Internal" -msgstr "" +msgstr "内部" msgid "Internal Server Error" msgstr "内部サーバーエラー" @@ -1532,13 +1586,12 @@ msgstr "無効なVLAN IDです! ユニークなIDを入力してください。" msgid "Invalid username and/or password! Please try again." msgstr "ユーザー名とパスワードが不正です! もう一度入力してください。" -#, 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 "" -"更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。もう一" -"度イメージファイルを確認してください!" +"更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。イメー" +"ジファイルを確認してください!" msgid "Java Script required!" msgstr "JavaScriptを有効にしてください!" @@ -1546,12 +1599,12 @@ msgstr "JavaScriptを有効にしてください!" msgid "Join Network" msgstr "ネットワークに接続する" -msgid "Join Network: Settings" -msgstr "ネットワークに接続する: 設定" - msgid "Join Network: Wireless Scan" msgstr "ネットワークに接続する: 無線LANスキャン" +msgid "Joining Network: %q" +msgstr "次のネットワークに参加: %q" + msgid "Keep settings" msgstr "設定を保持する" @@ -1595,13 +1648,13 @@ msgid "Language and Style" msgstr "言語とスタイル" msgid "Latency" -msgstr "" +msgstr "レイテンシー" msgid "Leaf" msgstr "" msgid "Lease time" -msgstr "" +msgstr "リース時間" msgid "Lease validity time" msgstr "リース有効時間" @@ -1631,7 +1684,7 @@ msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" msgid "Limit listening to these interfaces, and loopback." -msgstr "" +msgstr "待ち受けをこれらのインターフェースとループバックに制限します。" msgid "Line Attenuation (LATN)" msgstr "" @@ -1656,7 +1709,7 @@ msgstr "" "リストを設定します" msgid "List of SSH key files for auth" -msgstr "" +msgstr "認証用 SSH暗号キー ファイルのリスト" msgid "List of domains to allow RFC1918 responses for" msgstr "RFC1918の応答を許可するリスト" @@ -1665,7 +1718,10 @@ msgid "List of hosts that supply bogus NX domain results" msgstr "" msgid "Listen Interfaces" -msgstr "" +msgstr "待ち受けインターフェース" + +msgid "Listen Port" +msgstr "待ち受けポート" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1685,7 +1741,7 @@ msgid "Loading" msgstr "ロード中" msgid "Local IP address to assign" -msgstr "" +msgstr "割り当てるローカル IPアドレス" msgid "Local IPv4 address" msgstr "ローカル IPv4 アドレス" @@ -1712,6 +1768,8 @@ msgstr "" msgid "Local domain suffix appended to DHCP names and hosts file entries" msgstr "" +"DHCP名とhostsファイルのエントリーに付される、ローカルドメインサフィックスで" +"す。" msgid "Local server" msgstr "ローカルサーバー" @@ -1725,7 +1783,7 @@ msgid "Localise queries" msgstr "ローカライズクエリ" msgid "Locked to channel %s used by: %s" -msgstr "" +msgstr "チャネル %s にロックされています。次で使用されています: %s" msgid "Log output level" msgstr "ログ出力レベル" @@ -1767,6 +1825,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -1777,9 +1838,10 @@ msgid "" "Make sure to clone the root filesystem using something like the commands " "below:" msgstr "" +"以下のようなコマンドを使用して、ルート ファイルシステムを複製してください:" msgid "Manual" -msgstr "" +msgstr "手動" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -1806,6 +1868,8 @@ msgid "" "Maximum length of the name is 15 characters including the automatic protocol/" "bridge prefix (br-, 6in4-, pppoe- etc.)" msgstr "" +"名前の長さは、自動的に含まれるプロトコル/ブリッジ プレフィックス (br-, " +"6in4-, pppoe- など)と合わせて最大15文字です。" msgid "Maximum number of leased addresses." msgstr "リースするアドレスの最大数です" @@ -1841,7 +1905,7 @@ msgid "Mode" msgstr "モード" msgid "Model" -msgstr "" +msgstr "モデル" msgid "Modem device" msgstr "モデムデバイス" @@ -1875,7 +1939,7 @@ msgstr "" "表示しています。" msgid "Mount filesystems not specifically configured" -msgstr "" +msgstr "明確に設定されていないファイルシステムをマウントします。" msgid "Mount options" msgstr "マウントオプション" @@ -1884,7 +1948,7 @@ msgid "Mount point" msgstr "マウントポイント" msgid "Mount swap not specifically configured" -msgstr "" +msgstr "明確に設定されていないスワップ パーティションをマウントします。" msgid "Mounted file systems" msgstr "マウント中のファイルシステム" @@ -1908,10 +1972,10 @@ msgid "NAT-T Mode" msgstr "" msgid "NAT64 Prefix" -msgstr "" +msgstr "NAT64 プレフィクス" msgid "NDP-Proxy" -msgstr "" +msgstr "NDP-プロキシ" msgid "NT Domain" msgstr "" @@ -2001,7 +2065,7 @@ msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" msgid "Non-wildcard" -msgstr "" +msgstr "非ワイルドカード" msgid "None" msgstr "なし" @@ -2082,7 +2146,7 @@ msgid "OpenConnect (CISCO AnyConnect)" msgstr "" msgid "Operating frequency" -msgstr "" +msgstr "動作周波数" msgid "Option changed" msgstr "変更されるオプション" @@ -2096,6 +2160,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "オプション" @@ -2120,9 +2214,15 @@ msgstr "MACアドレスを上書きする" msgid "Override MTU" msgstr "MTUを上書きする" -msgid "Override default interface name" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" msgstr "" +msgid "Override default interface name" +msgstr "デフォルトのインターフェース名を上書きします。" + msgid "Override the gateway in DHCP responses" msgstr "DHCPレスポンス内のゲートウェイアドレスを上書きする" @@ -2167,7 +2267,7 @@ msgid "PPPoE" msgstr "PPPoE" msgid "PPPoSSH" -msgstr "" +msgstr "PPPoSSH" msgid "PPtP" msgstr "PPtP" @@ -2238,6 +2338,9 @@ msgstr "ピーク:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2247,6 +2350,9 @@ msgstr "再起動を実行" msgid "Perform reset" msgstr "設定リセットを実行" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "物理レート:" @@ -2268,12 +2374,6 @@ msgstr "ポリシー" msgid "Port" msgstr "ポート" -msgid "Port %d" -msgstr "ポート %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "ポート ステータス:" @@ -2283,6 +2383,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "事前共有鍵" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2290,8 +2393,8 @@ msgstr "" "設定回数のLCP echo 確認失敗後、ピアノードがダウンしているものと見なします。0" "を設定した場合、失敗しても無視します" -msgid "Prevent listening on thise interfaces." -msgstr "" +msgid "Prevent listening on these interfaces." +msgstr "これらのインターフェースでの待ち受けを停止します。" msgid "Prevents client-to-client communication" msgstr "クライアント同士の通信を制限します" @@ -2299,6 +2402,9 @@ msgstr "クライアント同士の通信を制限します" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b 無線LANコントローラ" +msgid "Private Key" +msgstr "秘密鍵" + msgid "Proceed" msgstr "続行" @@ -2332,9 +2438,15 @@ msgstr "新しいネットワークを設定する" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "擬似アドホック (ahdemo)" +msgid "Public Key" +msgstr "公開鍵" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "クオリティ" @@ -2399,7 +2511,6 @@ msgstr "" msgid "Really reset all changes?" msgstr "本当に全ての変更をリセットしますか?" -#, fuzzy msgid "" "Really shut down network?\\nYou might lose access to this device if you are " "connected via this interface." @@ -2479,6 +2590,9 @@ msgstr "リレーブリッジ" msgid "Remote IPv4 address" msgstr "リモートIPv4アドレス" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "削除" @@ -2492,17 +2606,29 @@ msgid "Replace wireless configuration" msgstr "無線設定を置換する" msgid "Request IPv6-address" -msgstr "" +msgstr "IPv6-アドレスのリクエスト" msgid "Request IPv6-prefix of length" msgstr "" msgid "Require TLS" -msgstr "" +msgstr "TLSが必要" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "DOCSIS 3.0を使用するいくつかのISPでは必要になります" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2545,13 +2671,19 @@ msgid "Root directory for files served via TFTP" msgstr "TFTP経由でファイルを取り扱う際のルートディレクトリ" msgid "Root preparation" +msgstr "ルートの準備" + +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" msgstr "" msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" msgid "Router Advertisement-Service" -msgstr "" +msgstr "ルーター アドバタイズメント-サービス" msgid "Router Password" msgstr "ルーター・パスワード" @@ -2572,6 +2704,9 @@ msgstr "デバイスのマウントを行う前にファイルシステムチェ msgid "Run filesystem check" msgstr "ファイルシステムチェックを行う" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2587,13 +2722,13 @@ msgid "SSH Access" msgstr "SSHアクセス" msgid "SSH server address" -msgstr "" +msgstr "SSH サーバーアドレス" msgid "SSH server port" -msgstr "" +msgstr "SSH サーバーポート" msgid "SSH username" -msgstr "" +msgstr "SSH ユーザー名" msgid "SSH-Keys" msgstr "SSHキー" @@ -2642,7 +2777,7 @@ msgid "Server Settings" msgstr "サーバー設定" msgid "Server password" -msgstr "" +msgstr "サーバー パスワード" msgid "" "Server password, enter the specific password of the tunnel when the username " @@ -2650,7 +2785,7 @@ msgid "" msgstr "" msgid "Server username" -msgstr "" +msgstr "サーバー ユーザー名" msgid "Service Name" msgstr "サービス名" @@ -2661,9 +2796,8 @@ msgstr "サービスタイプ" msgid "Services" msgstr "サービス" -#, fuzzy msgid "Set up Time Synchronization" -msgstr "時刻設定" +msgstr "時刻同期設定" msgid "Setup DHCP Server" msgstr "DHCPサーバーを設定" @@ -2696,7 +2830,7 @@ msgid "Size" msgstr "サイズ" msgid "Size (.ipk)" -msgstr "" +msgstr "サイズ (.ipk)" msgid "Skip" msgstr "スキップ" @@ -2713,6 +2847,9 @@ msgstr "スロット時間" msgid "Software" msgstr "ソフトウェア" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "無効な値が設定されているフィールドがあるため、保存できません。" @@ -2722,15 +2859,14 @@ msgstr "申し訳ありません。リクエストされたオブジェクトは msgid "Sorry, the server encountered an unexpected error." msgstr "申し訳ありません。サーバーに予期せぬエラーが発生しました。" -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" "申し訳ありません。現在このボードではsysupgradeがサポートがされていないため、" -"ファームウェア更新は手動で行っていただく必要があります。OpenWrt wikiを参照し" -"て、このデバイスのインストール手順を参照してください。" +"ファームウェア更新は手動で行っていただく必要があります。wikiを参照して、この" +"デバイスのインストール手順を参照してください。" msgid "Sort" msgstr "ソート" @@ -2760,6 +2896,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "暗号鍵を設定します。" @@ -2770,7 +2919,7 @@ msgid "Start priority" msgstr "優先順位" msgid "Startup" -msgstr "Startup" +msgstr "スタートアップ" msgid "Static IPv4 Routes" msgstr "IPv4 静的ルーティング" @@ -2818,7 +2967,7 @@ msgid "Suppress logging of the routine operation of these protocols" msgstr "" msgid "Swap" -msgstr "" +msgstr "スワップ" msgid "Swap Entry" msgstr "スワップ機能" @@ -2832,6 +2981,13 @@ msgstr "スイッチ %q" msgid "Switch %q (%s)" msgstr "スイッチ %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "プロトコルの切り替え" @@ -2907,6 +3063,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2973,6 +3133,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3227,7 +3390,7 @@ msgid "Unmanaged" msgstr "Unmanaged" msgid "Unmount" -msgstr "" +msgstr "アンマウント" msgid "Unsaved Changes" msgstr "保存されていない変更" @@ -3240,13 +3403,13 @@ msgstr "リストの更新" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" "システムをアップデートする場合、sysupgrade機能に互換性のあるファームウェアイ" "メージをアップロードしてください。\"設定の保持\"を有効にすると、現在の設定を" -"維持してアップデートを行います。ただし、OpenWrt互換のファームウェアイメージが" -"アップロードされた場合のみ、設定は保持されます。" +"維持してアップデートを行います。ただし、OpenWrt/LEDE互換のファームウェアイ" +"メージがアップロードされた場合のみ、設定は保持されます。" msgid "Upload archive..." msgstr "アーカイブをアップロード" @@ -3276,16 +3439,16 @@ msgid "Use TTL on tunnel interface" msgstr "トンネルインターフェースのTTLを設定" msgid "Use as external overlay (/overlay)" -msgstr "" +msgstr "外部オーバーレイとして使用する (/overlay)" msgid "Use as root filesystem (/)" -msgstr "" +msgstr "ルート ファイルシステムとして使用する (/)" msgid "Use broadcast flag" msgstr "ブロードキャスト・フラグを使用する" msgid "Use builtin IPv6-management" -msgstr "" +msgstr "ビルトインのIPv6-マネジメントを使用する" msgid "Use custom DNS servers" msgstr "DNSサーバーを手動で設定" @@ -3332,9 +3495,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "VLANインターフェース" - msgid "VLANs on %q" msgstr "%q上のVLANs" @@ -3420,7 +3580,7 @@ msgid "Warning" msgstr "警告" msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" +msgstr "警告: 再起動すると消えてしまう、保存されていない設定があります!" msgid "Whether to create an IPv6 default route over the tunnel" msgstr "" @@ -3429,6 +3589,9 @@ msgid "Whether to route only packets from delegated prefixes" msgstr "" msgid "Width" +msgstr "帯域幅" + +msgid "WireGuard VPN" msgstr "" msgid "Wireless" @@ -3467,6 +3630,9 @@ msgstr "無線LAN機能停止" msgid "Write received DNS requests to syslog" msgstr "受信したDNSリクエストをsyslogへ記録します" +msgid "Write system log to file" +msgstr "システムログをファイルに書き込む" + msgid "XR Support" msgstr "XRサポート" @@ -3496,9 +3662,8 @@ msgstr "全て" msgid "auto" msgstr "自動" -#, fuzzy msgid "automatic" -msgstr "static" +msgstr "自動" msgid "baseT" msgstr "baseT" @@ -3522,7 +3687,7 @@ msgid "disable" msgstr "無効" msgid "disabled" -msgstr "" +msgstr "無効" msgid "expired" msgstr "期限切れ" @@ -3550,7 +3715,7 @@ msgid "hidden" msgstr "" msgid "hybrid mode" -msgstr "" +msgstr "ハイブリッド モード" msgid "if target is a network" msgstr "ターゲットがネットワークの場合" @@ -3601,13 +3766,13 @@ msgid "overlay" msgstr "" msgid "relay mode" -msgstr "" +msgstr "リレー モード" msgid "routed" msgstr "routed" msgid "server mode" -msgstr "" +msgstr "サーバー モード" msgid "skiplink1 Skip to navigation" msgstr "" @@ -3616,19 +3781,19 @@ msgid "skiplink2 Skip to content" msgstr "" msgid "stateful-only" -msgstr "" +msgstr "ステートフルのみ" msgid "stateless" -msgstr "" +msgstr "ステートレス" msgid "stateless + stateful" -msgstr "" +msgstr "ステートレス + ステートフル" msgid "tagged" msgstr "tagged" msgid "unknown" -msgstr "" +msgstr "不明" msgid "unlimited" msgstr "無期限" @@ -3647,3 +3812,18 @@ msgstr "はい" msgid "« Back" msgstr "« 戻る" + +#~ 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 "VLAN Interface" +#~ msgstr "VLANインターフェース" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po new file mode 100644 index 0000000000..c20444e10c --- /dev/null +++ b/modules/luci-base/po/ko/base.po @@ -0,0 +1,3723 @@ +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 <weongyo@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\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" + +msgid "%s is untagged in multiple VLANs!" +msgstr "" + +msgid "(%d minute window, %d second interval)" +msgstr "(%d 분 window, %d 초 간격)" + +msgid "(%s available)" +msgstr "" + +msgid "(empty)" +msgstr "" + +msgid "(no interfaces attached)" +msgstr "" + +msgid "-- Additional Field --" +msgstr "" + +msgid "-- Please choose --" +msgstr "" + +msgid "-- custom --" +msgstr "" + +msgid "-- match by device --" +msgstr "" + +msgid "-- match by label --" +msgstr "" + +msgid "-- match by uuid --" +msgstr "" + +msgid "1 Minute Load:" +msgstr "1 분 부하:" + +msgid "15 Minute Load:" +msgstr "15 분 부하:" + +msgid "464XLAT (CLAT)" +msgstr "" + +msgid "5 Minute Load:" +msgstr "5 분 부하:" + +msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" +msgstr "" + +msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" +msgstr "<abbr title=\"Domain Name System\">DNS</abbr> query 포트" + +msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" +msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 서버 포트" + +msgid "" +"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " +"order of the resolvfile" +msgstr "" + +msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "" + +msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" +msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-주소" + +msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway" +msgstr "" + +msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask" +msgstr "" + +msgid "" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network " +"(CIDR)" +msgstr "" + +msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" +msgstr "" + +msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" +msgstr "" + +msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" +msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 설정" + +msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" +msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 이름" + +msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" +msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-주소" + +msgid "" +"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " +"Protocol\">DHCP</abbr> leases" +msgstr "" +"<abbr title=\"maximal\">최대</abbr> <abbr title=\"Dynamic Host Configuration " +"Protocol\">DHCP</abbr> lease 수" + +msgid "" +"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " +"Domain Name System\">EDNS0</abbr> packet size" +msgstr "" +"<abbr title=\"maximal\">최대</abbr> <abbr title=\"Extension Mechanisms for " +"Domain Name System\">EDNS0</abbr> 패킷 크기" + +msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" +msgstr "<abbr title=\"maximal\">최대</abbr> 동시 처리 query 수" + +msgid "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>" +msgstr "" + +msgid "A43C + J43 + A43" +msgstr "" + +msgid "A43C + J43 + A43 + V43" +msgstr "" + +msgid "ADSL" +msgstr "" + +msgid "AICCU (SIXXS)" +msgstr "" + +msgid "ANSI T1.413" +msgstr "" + +msgid "APN" +msgstr "" + +msgid "AR Support" +msgstr "" + +msgid "ARP retry threshold" +msgstr "" + +msgid "ATM (Asynchronous Transfer Mode)" +msgstr "" + +msgid "ATM Bridges" +msgstr "" + +msgid "ATM Virtual Channel Identifier (VCI)" +msgstr "" + +msgid "ATM Virtual Path Identifier (VPI)" +msgstr "" + +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 "" + +msgid "ATM device number" +msgstr "" + +msgid "ATU-C System Vendor ID" +msgstr "" + +msgid "AYIYA" +msgstr "" + +msgid "Access Concentrator" +msgstr "" + +msgid "Access Point" +msgstr "" + +msgid "Action" +msgstr "" + +msgid "Actions" +msgstr "관리 도구" + +msgid "Activate this network" +msgstr "이 네트워를 활성화합니다" + +msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" +msgstr "" +"Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Route 경로" + +msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" +msgstr "" +"Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Route 경로" + +msgid "Active Connections" +msgstr "Active 연결수" + +msgid "Active DHCP Leases" +msgstr "Active DHCP 임대 목록" + +msgid "Active DHCPv6 Leases" +msgstr "Active DHCPv6 임대 목록" + +msgid "Ad-Hoc" +msgstr "" + +msgid "Add" +msgstr "추가" + +msgid "Add local domain suffix to names served from hosts files" +msgstr "" + +msgid "Add new interface..." +msgstr "새로운 인터페이스 추가..." + +msgid "Additional Hosts files" +msgstr "추가적인 Hosts 파일들" + +msgid "Additional servers file" +msgstr "" + +msgid "Address" +msgstr "주소" + +msgid "Address to access local relay bridge" +msgstr "" + +msgid "Administration" +msgstr "관리" + +msgid "Advanced Settings" +msgstr "고급 설정" + +msgid "Aggregate Transmit Power(ACTATP)" +msgstr "" + +msgid "Alert" +msgstr "" + +msgid "" +"Allocate IP addresses sequentially, starting from the lowest available " +"address" +msgstr "" + +msgid "Allocate IP sequentially" +msgstr "" + +msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" +msgstr "<abbr title=\"Secure Shell\">SSH</abbr> 암호 인증을 허용합니다" + +msgid "Allow all except listed" +msgstr "" + +msgid "Allow listed only" +msgstr "" + +msgid "Allow localhost" +msgstr "" + +msgid "Allow remote hosts to connect to local SSH forwarded ports" +msgstr "" + +msgid "Allow root logins with password" +msgstr "암호를 이용한 root 접근 허용" + +msgid "Allow the <em>root</em> user to login with password" +msgstr "암호를 이용한 <em>root</em> 사용자 접근을 허용합니다" + +msgid "" +"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" +msgstr "" + +msgid "Allowed IPs" +msgstr "" + +msgid "" +"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" +"\">Tunneling Comparison</a> on SIXXS" +msgstr "" + +msgid "Always announce default router" +msgstr "" + +msgid "Annex" +msgstr "" + +msgid "Annex A + L + M (all)" +msgstr "" + +msgid "Annex A G.992.1" +msgstr "" + +msgid "Annex A G.992.2" +msgstr "" + +msgid "Annex A G.992.3" +msgstr "" + +msgid "Annex A G.992.5" +msgstr "" + +msgid "Annex B (all)" +msgstr "" + +msgid "Annex B G.992.1" +msgstr "" + +msgid "Annex B G.992.3" +msgstr "" + +msgid "Annex B G.992.5" +msgstr "" + +msgid "Annex J (all)" +msgstr "" + +msgid "Annex L G.992.3 POTS 1" +msgstr "" + +msgid "Annex M (all)" +msgstr "" + +msgid "Annex M G.992.3" +msgstr "" + +msgid "Annex M G.992.5" +msgstr "" + +msgid "Announce as default router even if no public prefix is available." +msgstr "" + +msgid "Announced DNS domains" +msgstr "" + +msgid "Announced DNS servers" +msgstr "" + +msgid "Anonymous Identity" +msgstr "" + +msgid "Anonymous Mount" +msgstr "" + +msgid "Anonymous Swap" +msgstr "" + +msgid "Antenna 1" +msgstr "" + +msgid "Antenna 2" +msgstr "" + +msgid "Antenna Configuration" +msgstr "" + +msgid "Any zone" +msgstr "" + +msgid "Apply" +msgstr "적용" + +msgid "Applying changes" +msgstr "" + +msgid "" +"Assign a part of given length of every public IPv6-prefix to this interface" +msgstr "" + +msgid "Assign interfaces..." +msgstr "" + +msgid "" +"Assign prefix parts using this hexadecimal subprefix ID for this interface." +msgstr "" + +msgid "Associated Stations" +msgstr "연결된 station 들" + +msgid "Atheros 802.11%s Wireless Controller" +msgstr "" + +msgid "Auth Group" +msgstr "" + +msgid "AuthGroup" +msgstr "" + +msgid "Authentication" +msgstr "" + +msgid "Authentication Type" +msgstr "" + +msgid "Authoritative" +msgstr "" + +msgid "Authorization Required" +msgstr "인증이 필요합니다" + +msgid "Auto Refresh" +msgstr "자동 Refresh" + +msgid "Automatic" +msgstr "" + +msgid "Automatic Homenet (HNCP)" +msgstr "" + +msgid "Automatically check filesystem for errors before mounting" +msgstr "" + +msgid "Automatically mount filesystems on hotplug" +msgstr "" + +msgid "Automatically mount swap on hotplug" +msgstr "" + +msgid "Automount Filesystem" +msgstr "" + +msgid "Automount Swap" +msgstr "" + +msgid "Available" +msgstr "" + +msgid "Available packages" +msgstr "이용 가능한 패키지" + +msgid "Average:" +msgstr "평균:" + +msgid "B43 + B43C" +msgstr "" + +msgid "B43 + B43C + V43" +msgstr "" + +msgid "BR / DMR / AFTR" +msgstr "" + +msgid "BSSID" +msgstr "" + +msgid "Back" +msgstr "뒤로" + +msgid "Back to Overview" +msgstr "개요로 이동" + +msgid "Back to configuration" +msgstr "설정으로 돌아가기" + +msgid "Back to overview" +msgstr "" + +msgid "Back to scan results" +msgstr "" + +msgid "Background Scan" +msgstr "" + +msgid "Backup / Flash Firmware" +msgstr "Firmware 백업 / Flash" + +msgid "Backup / Restore" +msgstr "백업 / 복구" + +msgid "Backup file list" +msgstr "" + +msgid "Bad address specified!" +msgstr "" + +msgid "Band" +msgstr "" + +msgid "Behind NAT" +msgstr "" + +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 이 수정되었다고 판단한 파일, " +"필수 기본 파일 그리고 사용자가 패턴 정의로 백업하도록 지정한 것로 이루어져 있" +"습니다." + +msgid "Bind interface" +msgstr "" + +msgid "Bind only to specific interfaces rather than wildcard address." +msgstr "" + +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + +msgid "Bitrate" +msgstr "" + +msgid "Bogus NX Domain Override" +msgstr "" + +msgid "Bridge" +msgstr "" + +msgid "Bridge interfaces" +msgstr "Bridge 인터페이스" + +msgid "Bridge unit number" +msgstr "" + +msgid "Bring up on boot" +msgstr "부팅시 활성화" + +msgid "Broadcom 802.11%s Wireless Controller" +msgstr "" + +msgid "Broadcom BCM%04x 802.11 Wireless Controller" +msgstr "" + +msgid "Buffered" +msgstr "버퍼된 양" + +msgid "" +"Build/distribution specific feed definitions. This file will NOT be " +"preserved in any sysupgrade." +msgstr "" +"Build/distribution 지정 feed 목록입니다. 이 파일의 내용은 sysupgrade 시 초기" +"화됩니다." + +msgid "Buttons" +msgstr "" + +msgid "CA certificate; if empty it will be saved after the first connection." +msgstr "" + +msgid "CPU usage (%)" +msgstr "CPU 사용량 (%)" + +msgid "Cancel" +msgstr "" + +msgid "Category" +msgstr "" + +msgid "Chain" +msgstr "" + +msgid "Changes" +msgstr "변경 사항" + +msgid "Changes applied." +msgstr "" + +msgid "Changes the administrator password for accessing the device" +msgstr "장비 접근을 위한 관리자 암호를 변경합니다" + +msgid "Channel" +msgstr "" + +msgid "Check" +msgstr "" + +msgid "Check fileystems before mount" +msgstr "" + +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + +msgid "Checksum" +msgstr "" + +msgid "" +"Choose the firewall zone you want to assign to this interface. Select " +"<em>unspecified</em> to remove the interface from the associated zone or " +"fill out the <em>create</em> field to define a new zone and attach the " +"interface to it." +msgstr "" +"이 인터페이스에 할당하고자 하는 firewall zone 을 선택하세요. 연결된 zone 으로" +"부터 인터페이스를 제거하고 싶다면 <em>unspecified</em> 를 선택하세요. 새로" +"운 zone 을 정의하고 인터페이스 연결을 원한다면 <em>create</em> 항목을 입력하" +"세요." + +msgid "" +"Choose the network(s) you want to attach to this wireless interface or fill " +"out the <em>create</em> field to define a new network." +msgstr "" +"이 무선랜 인터페이스와 연결하고자 하는 네트워크(들)을 선택하세요. 혹은 새로" +"운 네트워크를 정의할려면 <em>create</em> 을 작성하세요." + +msgid "Cipher" +msgstr "" + +msgid "Cisco UDP encapsulation" +msgstr "" + +msgid "" +"Click \"Generate archive\" to download a tar archive of the current " +"configuration files. To reset the firmware to its initial state, click " +"\"Perform reset\" (only possible with squashfs images)." +msgstr "" +"현재 설정 파일에 대한 tar 아카이브 다운로드를 원한다면 \"아카이브 생성\" 버튼" +"을 클릭하세요. Firmware 의 초기 설정 reset 을 원한다면 \"Reset 하기\" 를 클" +"릭하세요. (squashfs 이미지들만 가능)." + +msgid "Client" +msgstr "" + +msgid "Client ID to send when requesting DHCP" +msgstr "DHCP 요청시 전송할 Client ID" + +msgid "" +"Close inactive connection after the given amount of seconds, use 0 to " +"persist connection" +msgstr "" + +msgid "Close list..." +msgstr "목록 닫기..." + +msgid "Collecting data..." +msgstr "Data 를 수집중입니다..." + +msgid "Command" +msgstr "명령어" + +msgid "Common Configuration" +msgstr "공통 설정" + +msgid "Compression" +msgstr "" + +msgid "Configuration" +msgstr "설정" + +msgid "Configuration applied." +msgstr "" + +msgid "Configuration files will be kept." +msgstr "" + +msgid "Confirmation" +msgstr "다시 확인" + +msgid "Connect" +msgstr "연결" + +msgid "Connected" +msgstr "연결 시간" + +msgid "Connection Limit" +msgstr "" + +msgid "Connection to server fails when TLS cannot be used" +msgstr "" + +msgid "Connections" +msgstr "연결" + +msgid "Country" +msgstr "" + +msgid "Country Code" +msgstr "" + +msgid "Cover the following interface" +msgstr "" + +msgid "Cover the following interfaces" +msgstr "" + +msgid "Create / Assign firewall-zone" +msgstr "Firewall-zone 생성 / 할당" + +msgid "Create Interface" +msgstr "" + +msgid "Create a bridge over multiple interfaces" +msgstr "" + +msgid "Critical" +msgstr "" + +msgid "Cron Log Level" +msgstr "" + +msgid "Custom Interface" +msgstr "임의의 인터페이스" + +msgid "Custom delegated IPv6-prefix" +msgstr "" + +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 "" +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." +msgstr "" +"원한다면 장치에 부착된 <abbr title=\"Light Emitting Diode\">LED</abbr> 들의 " +"행동을 마음대로 변경할 수 있습니다." + +msgid "DHCP Leases" +msgstr "DHCP 임대 정보" + +msgid "DHCP Server" +msgstr "DHCP 서버" + +msgid "DHCP and DNS" +msgstr "DHCP 와 DNS" + +msgid "DHCP client" +msgstr "DHCP client" + +msgid "DHCP-Options" +msgstr "DHCP-옵션들" + +msgid "DHCPv6 Leases" +msgstr "DHCPv6 임대 정보" + +msgid "DHCPv6 client" +msgstr "" + +msgid "DHCPv6-Mode" +msgstr "" + +msgid "DHCPv6-Service" +msgstr "" + +msgid "DNS" +msgstr "" + +msgid "DNS forwardings" +msgstr "" + +msgid "DNS-Label / FQDN" +msgstr "" + +msgid "DNSSEC" +msgstr "" + +msgid "DNSSEC check unsigned" +msgstr "" + +msgid "DPD Idle Timeout" +msgstr "" + +msgid "DS-Lite AFTR address" +msgstr "" + +msgid "DSL" +msgstr "" + +msgid "DSL Status" +msgstr "" + +msgid "DSL line mode" +msgstr "" + +msgid "DUID" +msgstr "" + +msgid "Data Rate" +msgstr "" + +msgid "Debug" +msgstr "" + +msgid "Default %d" +msgstr "" + +msgid "Default gateway" +msgstr "" + +msgid "Default is stateless + stateful" +msgstr "" + +msgid "Default route" +msgstr "" + +msgid "Default state" +msgstr "기본 상태" + +msgid "Define a name for this network." +msgstr "" + +msgid "" +"Define additional DHCP options, for example " +"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS " +"servers to clients." +msgstr "" +"추가적인 DHCP 옵션을 정의합니다. 예를 들어 " +"\"<code>6,192.168.2.1,192.168.2.2</code>\" 는 client 에게 다른 DNS 서버를 세" +"팅하도록 권고할 수 있습니다." + +msgid "Delete" +msgstr "삭제" + +msgid "Delete this network" +msgstr "이 네트워크를 삭제합니다" + +msgid "Description" +msgstr "설명" + +msgid "Design" +msgstr "디자인" + +msgid "Destination" +msgstr "" + +msgid "Device" +msgstr "" + +msgid "Device Configuration" +msgstr "장치 설정" + +msgid "Device is rebooting..." +msgstr "" + +msgid "Device unreachable" +msgstr "" + +msgid "Diagnostics" +msgstr "진단" + +msgid "Dial number" +msgstr "" + +msgid "Directory" +msgstr "" + +msgid "Disable" +msgstr "비활성화" + +msgid "" +"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " +"this interface." +msgstr "" +"이 인터페이스에 대해 <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> 기능을 비활성합니다." + +msgid "Disable DNS setup" +msgstr "" + +msgid "Disable Encryption" +msgstr "" + +msgid "Disable HW-Beacon timer" +msgstr "" + +msgid "Disabled" +msgstr "" + +msgid "Discard upstream RFC1918 responses" +msgstr "" + +msgid "Displaying only packages containing" +msgstr "" + +msgid "Distance Optimization" +msgstr "" + +msgid "Distance to farthest network member in meters." +msgstr "" + +msgid "Distribution feeds" +msgstr "Distribution feed 들" + +msgid "Diversity" +msgstr "" + +msgid "" +"Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-" +"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> " +"firewalls" +msgstr "" +"Dnsmasq 는 <abbr title=\"Network Address Translation\">NAT</abbr> 방화벽을 위" +"한 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>-서버와 " +"<abbr title=\"Domain Name System\">DNS</abbr>-Forwarder 기능을 제공합니다." + +msgid "Do not cache negative replies, e.g. for not existing domains" +msgstr "" + +msgid "Do not forward requests that cannot be answered by public name servers" +msgstr "" + +msgid "Do not forward reverse lookups for local networks" +msgstr "" + +msgid "Do not send probe responses" +msgstr "" + +msgid "Domain required" +msgstr "" + +msgid "Domain whitelist" +msgstr "" + +msgid "Don't Fragment" +msgstr "" + +msgid "" +"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " +"<abbr title=\"Domain Name System\">DNS</abbr>-Name" +msgstr "" + +msgid "Download and install package" +msgstr "패키지 다운로드 후 설치" + +msgid "Download backup" +msgstr "백업 다운로드" + +msgid "Dropbear Instance" +msgstr "" + +msgid "" +"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " +"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" +msgstr "" +"Dropbear 는 <abbr title=\"Secure Shell\">SSH</abbr> network shell 접근과 " +"<abbr title=\"Secure Copy\">SCP</abbr> 서버 기능을 제공합니다" + +msgid "Dual-Stack Lite (RFC6333)" +msgstr "" + +msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" +msgstr "" + +msgid "Dynamic tunnel" +msgstr "" + +msgid "" +"Dynamically allocate DHCP addresses for clients. If disabled, only clients " +"having static leases will be served." +msgstr "" +"동적으로 DHCP 주소를 client 에게 할당합니다. 만약 비활성화시, static lease " +"가 설정된 client 만 주소 제공이 이루어집니다." + +msgid "EA-bits length" +msgstr "" + +msgid "EAP-Method" +msgstr "" + +msgid "Edit" +msgstr "수정" + +msgid "" +"Edit the raw configuration data above to fix any error and hit \"Save\" to " +"reload the page." +msgstr "" + +msgid "Edit this interface" +msgstr "이 인터페이스를 수정합니다" + +msgid "Edit this network" +msgstr "이 네트워크를 수정합니다" + +msgid "Emergency" +msgstr "" + +msgid "Enable" +msgstr "활성화" + +msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" +msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> 활성화" + +msgid "Enable HE.net dynamic endpoint update" +msgstr "" + +msgid "Enable IPv6 negotiation" +msgstr "" + +msgid "Enable IPv6 negotiation on the PPP link" +msgstr "" + +msgid "Enable Jumbo Frame passthrough" +msgstr "" + +msgid "Enable NTP client" +msgstr "NTP client 활성화" + +msgid "Enable Single DES" +msgstr "" + +msgid "Enable TFTP server" +msgstr "TFTP 서버 활성화" + +msgid "Enable VLAN functionality" +msgstr "VLAN 기능 활성화" + +msgid "Enable WPS pushbutton, requires WPA(2)-PSK" +msgstr "" + +msgid "Enable learning and aging" +msgstr "" + +msgid "Enable mirroring of incoming packets" +msgstr "" + +msgid "Enable mirroring of outgoing packets" +msgstr "" + +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + +msgid "Enable this mount" +msgstr "" + +msgid "Enable this swap" +msgstr "" + +msgid "Enable/Disable" +msgstr "활성/비활성" + +msgid "Enabled" +msgstr "활성화됨" + +msgid "Enables the Spanning Tree Protocol on this bridge" +msgstr "이 bridge 에 Spanning Tree Protocol 활성화합니다" + +msgid "Encapsulation mode" +msgstr "" + +msgid "Encryption" +msgstr "암호화" + +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + +msgid "Erasing..." +msgstr "" + +msgid "Error" +msgstr "" + +msgid "Errored seconds (ES)" +msgstr "" + +msgid "Ethernet Adapter" +msgstr "" + +msgid "Ethernet Switch" +msgstr "Ethernet 스위치" + +msgid "Exclude interfaces" +msgstr "" + +msgid "Expand hosts" +msgstr "" + +msgid "Expires" +msgstr "만료 시간" + +msgid "" +"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." +msgstr "임대한 주소의 유효 시간. 최소값은 2 분 (<code>2m</code>) 입니다." + +msgid "External" +msgstr "" + +msgid "External system log server" +msgstr "외부 system log 서버" + +msgid "External system log server port" +msgstr "외부 system log 서버 포트" + +msgid "External system log server protocol" +msgstr "외부 system log 서버 프로토콜" + +msgid "Extra SSH command options" +msgstr "" + +msgid "Fast Frames" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Filename of the boot image advertised to clients" +msgstr "" + +msgid "Filesystem" +msgstr "" + +msgid "Filter" +msgstr "필터" + +msgid "Filter private" +msgstr "" + +msgid "Filter useless" +msgstr "" + +msgid "" +"Find all currently attached filesystems and swap and replace configuration " +"with defaults based on what was detected" +msgstr "" + +msgid "Find and join network" +msgstr "네트워크 검색 및 연결합니다" + +msgid "Find package" +msgstr "패키지 찾기" + +msgid "Finish" +msgstr "" + +msgid "Firewall" +msgstr "방화벽" + +msgid "Firewall Settings" +msgstr "방화벽 설정" + +msgid "Firewall Status" +msgstr "방화벽 상태" + +msgid "Firmware File" +msgstr "" + +msgid "Firmware Version" +msgstr "Firmware 버전" + +msgid "Fixed source port for outbound DNS queries" +msgstr "" + +msgid "Flash Firmware" +msgstr "" + +msgid "Flash image..." +msgstr "이미지로 Flash..." + +msgid "Flash new firmware image" +msgstr "새로운 firmware 이미지로 flash" + +msgid "Flash operations" +msgstr "Flash 작업" + +msgid "Flashing..." +msgstr "" + +msgid "Force" +msgstr "강제하기" + +msgid "Force CCMP (AES)" +msgstr "" + +msgid "Force DHCP on this network even if another server is detected." +msgstr "다른 DHCP 서버가 탐지되더라도 이 네트워크에 DHCP 를 강제합니다." + +msgid "Force TKIP" +msgstr "" + +msgid "Force TKIP and CCMP (AES)" +msgstr "" + +msgid "Force use of NAT-T" +msgstr "" + +msgid "Form token mismatch" +msgstr "" + +msgid "Forward DHCP traffic" +msgstr "" + +msgid "Forward Error Correction Seconds (FECS)" +msgstr "" + +msgid "Forward broadcast traffic" +msgstr "" + +msgid "Forwarding mode" +msgstr "" + +msgid "Fragmentation Threshold" +msgstr "" + +msgid "Frame Bursting" +msgstr "" + +msgid "Free" +msgstr "이용 가능한 양" + +msgid "Free space" +msgstr "여유 공간" + +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + +msgid "GHz" +msgstr "" + +msgid "GPRS only" +msgstr "" + +msgid "Gateway" +msgstr "" + +msgid "Gateway ports" +msgstr "" + +msgid "General Settings" +msgstr "기본 설정" + +msgid "General Setup" +msgstr "기본 설정" + +msgid "General options for opkg" +msgstr "opkg 명령의 기본 옵션들" + +msgid "Generate Config" +msgstr "" + +msgid "Generate archive" +msgstr "아카이브 생성" + +msgid "Generic 802.11%s Wireless Controller" +msgstr "" + +msgid "Given password confirmation did not match, password not changed!" +msgstr "" + +msgid "Global Settings" +msgstr "" + +msgid "Global network options" +msgstr "" + +msgid "Go to password configuration..." +msgstr "암호 설정 하기" + +msgid "Go to relevant configuration page" +msgstr "" + +msgid "Group Password" +msgstr "" + +msgid "Guest" +msgstr "" + +msgid "HE.net password" +msgstr "" + +msgid "HE.net username" +msgstr "" + +msgid "HT mode (802.11n)" +msgstr "" + +msgid "Handler" +msgstr "" + +msgid "Hang Up" +msgstr "" + +msgid "Header Error Code Errors (HEC)" +msgstr "" + +msgid "Heartbeat" +msgstr "" + +msgid "" +"Here you can configure the basic aspects of your device like its hostname or " +"the timezone." +msgstr "" +"여기서 호스트이름이나 시간대와 같은 기본적인 장비 설정을 할 수 있습니다." + +msgid "" +"Here you can paste public SSH-Keys (one per line) for SSH public-key " +"authentication." +msgstr "" +"아래에 SSH public-key 인증을 위한 공개 SSH-Key 들 (한 줄당 한개) 를 입력할 " +"수 있습니다." + +msgid "Hermes 802.11b Wireless Controller" +msgstr "" + +msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> 숨기기" + +msgid "Host" +msgstr "호스트" + +msgid "Host entries" +msgstr "호스트 목록들" + +msgid "Host expiry timeout" +msgstr "" + +msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network" +msgstr "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> 혹은 Network" + +msgid "Hostname" +msgstr "호스트이름" + +msgid "Hostname to send when requesting DHCP" +msgstr "DHCP 요청시 전달할 호스트이름" + +msgid "Hostnames" +msgstr "호스트이름" + +msgid "Hybrid" +msgstr "" + +msgid "IKE DH Group" +msgstr "" + +msgid "IP address" +msgstr "IP 주소" + +msgid "IPv4" +msgstr "" + +msgid "IPv4 Firewall" +msgstr "IPv4 방화벽" + +msgid "IPv4 WAN Status" +msgstr "IPv4 WAN 상태" + +msgid "IPv4 address" +msgstr "IPv4 주소" + +msgid "IPv4 and IPv6" +msgstr "IPv4 와 IPv6" + +msgid "IPv4 assignment length" +msgstr "" + +msgid "IPv4 broadcast" +msgstr "" + +msgid "IPv4 gateway" +msgstr "" + +msgid "IPv4 netmask" +msgstr "" + +msgid "IPv4 only" +msgstr "" + +msgid "IPv4 prefix" +msgstr "" + +msgid "IPv4 prefix length" +msgstr "" + +msgid "IPv4-Address" +msgstr "IPv4-주소" + +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv6 Firewall" +msgstr "IPv6 방화벽" + +msgid "IPv6 Neighbours" +msgstr "IPv6 Neighbour 들" + +msgid "IPv6 Settings" +msgstr "IPv6 설정" + +msgid "IPv6 ULA-Prefix" +msgstr "" + +msgid "IPv6 WAN Status" +msgstr "IPv6 WAN 상태" + +msgid "IPv6 address" +msgstr "" + +msgid "IPv6 address delegated to the local tunnel endpoint (optional)" +msgstr "" + +msgid "IPv6 assignment hint" +msgstr "" + +msgid "IPv6 assignment length" +msgstr "" + +msgid "IPv6 gateway" +msgstr "" + +msgid "IPv6 only" +msgstr "" + +msgid "IPv6 prefix" +msgstr "" + +msgid "IPv6 prefix length" +msgstr "" + +msgid "IPv6 routed prefix" +msgstr "" + +msgid "IPv6-Address" +msgstr "IPv6-주소" + +msgid "IPv6-in-IPv4 (RFC4213)" +msgstr "" + +msgid "IPv6-over-IPv4 (6rd)" +msgstr "" + +msgid "IPv6-over-IPv4 (6to4)" +msgstr "" + +msgid "Identity" +msgstr "" + +msgid "If checked, 1DES is enaled" +msgstr "" + +msgid "If checked, encryption is disabled" +msgstr "" + +msgid "" +"If specified, mount the device by its UUID instead of a fixed device node" +msgstr "" + +msgid "" +"If specified, mount the device by the partition label instead of a fixed " +"device node" +msgstr "" + +msgid "If unchecked, no default route is configured" +msgstr "체크하지 않을 경우, 기본 route 가 설정되지 않습니다" + +msgid "If unchecked, the advertised DNS server addresses are ignored" +msgstr "체크하지 않을 경우, 사용하도록 권장된 DNS 주소는 무시됩니다" + +msgid "" +"If your physical memory is insufficient unused data can be temporarily " +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." +msgstr "" + +msgid "Ignore <code>/etc/hosts</code>" +msgstr "<code>/etc/hosts</code> 파일 무시" + +msgid "Ignore interface" +msgstr "인터페이스 무시" + +msgid "Ignore resolve file" +msgstr "resolve 파일 무시" + +msgid "Image" +msgstr "이미지" + +msgid "In" +msgstr "In" + +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 "" + +msgid "Inactivity timeout" +msgstr "" + +msgid "Inbound:" +msgstr "" + +msgid "Info" +msgstr "" + +msgid "Initscript" +msgstr "" + +msgid "Initscripts" +msgstr "Initscript 들" + +msgid "Install" +msgstr "설치" + +msgid "Install iputils-traceroute6 for IPv6 traceroute" +msgstr "" + +msgid "Install package %q" +msgstr "" + +msgid "Install protocol extensions..." +msgstr "" + +msgid "Installed packages" +msgstr "설치된 패키지" + +msgid "Interface" +msgstr "인터페이스" + +msgid "Interface Configuration" +msgstr "인터페이스 설정" + +msgid "Interface Overview" +msgstr "인터페이스 개요" + +msgid "Interface is reconnecting..." +msgstr "" + +msgid "Interface is shutting down..." +msgstr "" + +msgid "Interface name" +msgstr "인터페이스 이름" + +msgid "Interface not present or not connected yet." +msgstr "" + +msgid "Interface reconnected" +msgstr "" + +msgid "Interface shut down" +msgstr "" + +msgid "Interfaces" +msgstr "인터페이스" + +msgid "Internal" +msgstr "" + +msgid "Internal Server Error" +msgstr "" + +msgid "Invalid" +msgstr "" + +msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." +msgstr "" + +msgid "Invalid VLAN ID given! Only unique IDs are allowed" +msgstr "" + +msgid "Invalid username and/or password! Please try again." +msgstr "" + +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 "" + +msgid "Java Script required!" +msgstr "" + +msgid "Join Network" +msgstr "네트워크 연결" + +msgid "Join Network: Wireless Scan" +msgstr "네트워크 연결: 무선랜 스캔 결과" + +msgid "Joining Network: %q" +msgstr "네트워크 연결중: %q" + +msgid "Keep settings" +msgstr "설정 유지" + +msgid "Kernel Log" +msgstr "Kernel 로그" + +msgid "Kernel Version" +msgstr "Kernel 버전" + +msgid "Key" +msgstr "" + +msgid "Key #%d" +msgstr "" + +msgid "Kill" +msgstr "" + +msgid "L2TP" +msgstr "" + +msgid "L2TP Server" +msgstr "" + +msgid "LCP echo failure threshold" +msgstr "" + +msgid "LCP echo interval" +msgstr "" + +msgid "LLC" +msgstr "" + +msgid "Label" +msgstr "" + +msgid "Language" +msgstr "언어" + +msgid "Language and Style" +msgstr "언어와 스타일" + +msgid "Latency" +msgstr "" + +msgid "Leaf" +msgstr "" + +msgid "Lease time" +msgstr "임대 시간" + +msgid "Lease validity time" +msgstr "" + +msgid "Leasefile" +msgstr "" + +msgid "Leasetime" +msgstr "임대 시간" + +msgid "Leasetime remaining" +msgstr "남아있는 임대 시간" + +msgid "Leave empty to autodetect" +msgstr "" + +msgid "Leave empty to use the current WAN address" +msgstr "" + +msgid "Legend:" +msgstr "" + +msgid "Limit" +msgstr "제한" + +msgid "Limit DNS service to subnets interfaces on which we are serving DNS." +msgstr "" +"DNS 를 제공하기로한 subnet 인터페이스들에 대해서만 DNS 서비스를 제공합니다." + +msgid "Limit listening to these interfaces, and loopback." +msgstr "" + +msgid "Line Attenuation (LATN)" +msgstr "" + +msgid "Line Mode" +msgstr "" + +msgid "Line State" +msgstr "" + +msgid "Line Uptime" +msgstr "" + +msgid "Link On" +msgstr "" + +msgid "" +"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward " +"requests to" +msgstr "" + +msgid "List of SSH key files for auth" +msgstr "" + +msgid "List of domains to allow RFC1918 responses for" +msgstr "" + +msgid "List of hosts that supply bogus NX domain results" +msgstr "" + +msgid "Listen Interfaces" +msgstr "" + +msgid "Listen Port" +msgstr "" + +msgid "Listen only on the given interface or, if unspecified, on all" +msgstr "" +"지정한 인터페이스에만 listening 하며 미지정시 모든 인터페이스에 적용됩니다" + +msgid "Listening port for inbound DNS queries" +msgstr "" + +msgid "Load" +msgstr "부하" + +msgid "Load Average" +msgstr "부하 평균" + +msgid "Loading" +msgstr "" + +msgid "Local IP address to assign" +msgstr "" + +msgid "Local IPv4 address" +msgstr "" + +msgid "Local IPv6 address" +msgstr "" + +msgid "Local Service Only" +msgstr "" + +msgid "Local Startup" +msgstr "Local 시작 프로그램" + +msgid "Local Time" +msgstr "지역 시간" + +msgid "Local domain" +msgstr "" + +msgid "" +"Local domain specification. Names matching this domain are never forwarded " +"and are resolved from DHCP or hosts files only" +msgstr "" + +msgid "Local domain suffix appended to DHCP names and hosts file entries" +msgstr "" + +msgid "Local server" +msgstr "" + +msgid "" +"Localise hostname depending on the requesting subnet if multiple IPs are " +"available" +msgstr "" + +msgid "Localise queries" +msgstr "" + +msgid "Locked to channel %s used by: %s" +msgstr "" + +msgid "Log output level" +msgstr "Log output 레벨" + +msgid "Log queries" +msgstr "" + +msgid "Logging" +msgstr "" + +msgid "Login" +msgstr "로그인" + +msgid "Logout" +msgstr "로그아웃" + +msgid "Loss of Signal Seconds (LOSS)" +msgstr "" + +msgid "Lowest leased address as offset from the network address." +msgstr "임대되는 주소의 최소 시작점. (네트워크 주소로 부터의 offset)" + +msgid "MAC-Address" +msgstr "MAC-주소" + +msgid "MAC-Address Filter" +msgstr "MAC-주소 필터" + +msgid "MAC-Filter" +msgstr "MAC-필터" + +msgid "MAC-List" +msgstr "" + +msgid "MAP / LW4over6" +msgstr "" + +msgid "MB/s" +msgstr "" + +msgid "MD5" +msgstr "" + +msgid "MHz" +msgstr "" + +msgid "MTU" +msgstr "" + +msgid "" +"Make sure to clone the root filesystem using something like the commands " +"below:" +msgstr "" + +msgid "Manual" +msgstr "" + +msgid "Max. Attainable Data Rate (ATTNDR)" +msgstr "" + +msgid "Maximum Rate" +msgstr "" + +msgid "Maximum allowed number of active DHCP leases" +msgstr "Active DHCP lease 건의 최대 허용 숫자" + +msgid "Maximum allowed number of concurrent DNS queries" +msgstr "허용되는 최대 동시 DNS query 수" + +msgid "Maximum allowed size of EDNS.0 UDP packets" +msgstr "허용된 최대 EDNS.0 UDP 패킷 크기" + +msgid "Maximum amount of seconds to wait for the modem to become ready" +msgstr "" + +msgid "Maximum hold time" +msgstr "" + +msgid "" +"Maximum length of the name is 15 characters including the automatic protocol/" +"bridge prefix (br-, 6in4-, pppoe- etc.)" +msgstr "" + +msgid "Maximum number of leased addresses." +msgstr "임대될 수 있는 주소의 최대 숫자." + +msgid "Mbit/s" +msgstr "" + +msgid "Memory" +msgstr "메모리" + +msgid "Memory usage (%)" +msgstr "메모리 사용량 (%)" + +msgid "Metric" +msgstr "" + +msgid "Minimum Rate" +msgstr "" + +msgid "Minimum hold time" +msgstr "" + +msgid "Mirror monitor port" +msgstr "" + +msgid "Mirror source port" +msgstr "" + +msgid "Missing protocol extension for proto %q" +msgstr "" + +msgid "Mode" +msgstr "" + +msgid "Model" +msgstr "모델" + +msgid "Modem device" +msgstr "" + +msgid "Modem init timeout" +msgstr "" + +msgid "Monitor" +msgstr "" + +msgid "Mount Entry" +msgstr "" + +msgid "Mount Point" +msgstr "" + +msgid "Mount Points" +msgstr "" + +msgid "Mount Points - Mount Entry" +msgstr "" + +msgid "Mount Points - Swap Entry" +msgstr "" + +msgid "" +"Mount Points define at which point a memory device will be attached to the " +"filesystem" +msgstr "" + +msgid "Mount filesystems not specifically configured" +msgstr "" + +msgid "Mount options" +msgstr "" + +msgid "Mount point" +msgstr "" + +msgid "Mount swap not specifically configured" +msgstr "" + +msgid "Mounted file systems" +msgstr "" + +msgid "Move down" +msgstr "" + +msgid "Move up" +msgstr "" + +msgid "Multicast Rate" +msgstr "" + +msgid "Multicast address" +msgstr "" + +msgid "NAS ID" +msgstr "" + +msgid "NAT-T Mode" +msgstr "" + +msgid "NAT64 Prefix" +msgstr "" + +msgid "NDP-Proxy" +msgstr "" + +msgid "NT Domain" +msgstr "" + +msgid "NTP server candidates" +msgstr "NTP 서버 목록" + +msgid "NTP sync time-out" +msgstr "" + +msgid "Name" +msgstr "이름" + +msgid "Name of the new interface" +msgstr "" + +msgid "Name of the new network" +msgstr "" + +msgid "Navigation" +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "네트워크" + +msgid "Network Utilities" +msgstr "네트워크 유틸리티" + +msgid "Network boot image" +msgstr "네트워크 boot 이미지" + +msgid "Network without interfaces." +msgstr "" + +msgid "Next »" +msgstr "" + +msgid "No DHCP Server configured for this interface" +msgstr "" + +msgid "No NAT-T" +msgstr "" + +msgid "No chains in this table" +msgstr "이 table 에는 정의된 chain 이 없음" + +msgid "No files found" +msgstr "" + +msgid "No information available" +msgstr "이용 가능한 정보가 없습니다" + +msgid "No negative cache" +msgstr "" + +msgid "No network configured on this device" +msgstr "" + +msgid "No network name specified" +msgstr "" + +msgid "No package lists available" +msgstr "" + +msgid "No password set!" +msgstr "암호 설정을 해주세요!" + +msgid "No rules in this chain" +msgstr "" + +msgid "No zone assigned" +msgstr "" + +msgid "Noise" +msgstr "노이즈" + +msgid "Noise Margin (SNR)" +msgstr "" + +msgid "Noise:" +msgstr "" + +msgid "Non Pre-emtive CRC errors (CRC_P)" +msgstr "" + +msgid "Non-wildcard" +msgstr "" + +msgid "None" +msgstr "" + +msgid "Normal" +msgstr "" + +msgid "Not Found" +msgstr "" + +msgid "Not associated" +msgstr "" + +msgid "Not connected" +msgstr "연결되지 않음" + +msgid "Note: Configuration files will be erased." +msgstr "" + +msgid "Note: interface name length" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Nslookup" +msgstr "" + +msgid "OK" +msgstr "" + +msgid "OPKG-Configuration" +msgstr "OPKG-설정" + +msgid "Obfuscated Group Password" +msgstr "" + +msgid "Obfuscated Password" +msgstr "" + +msgid "Off-State Delay" +msgstr "" + +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 " +"<abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation " +"<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: " +"<samp>eth0.1</samp>)." +msgstr "" +"이 페이지에서는 네트워크 인터페이스를 설정할 수 있습니다. \"Bridge 인터페이스" +"\" 항목을 클릭하고, 공백으로 구분된 네트워크 인터페이스들의 이름을 적는 방식" +"으로 여러 인터페이스들을 bridge 할 수 있습니다. 또한 <abbr title=\"Virtual " +"Local Area Network\">VLAN</abbr> 표기법인 <samp>INTERFACE.VLANNR</samp> " +"(<abbr title=\"for example\">예</abbr>: <samp>eth0.1</samp>) 를 사용하실 수 " +"있습니다." + +msgid "On-State Delay" +msgstr "" + +msgid "One of hostname or mac address must be specified!" +msgstr "" + +msgid "One or more fields contain invalid values!" +msgstr "" + +msgid "One or more invalid/required values on tab" +msgstr "" + +msgid "One or more required fields have no value!" +msgstr "" + +msgid "Open list..." +msgstr "목록 열람..." + +msgid "OpenConnect (CISCO AnyConnect)" +msgstr "" + +msgid "Operating frequency" +msgstr "동작 주파수" + +msgid "Option changed" +msgstr "변경된 option" + +msgid "Option removed" +msgstr "삭제된 option" + +msgid "Optional, specify to override default server (tic.sixxs.net)" +msgstr "" + +msgid "Optional, use when the SIXXS account has more than one tunnel" +msgstr "" + +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + +msgid "Options" +msgstr "" + +msgid "Other:" +msgstr "" + +msgid "Out" +msgstr "" + +msgid "Outbound:" +msgstr "" + +msgid "Outdoor Channels" +msgstr "" + +msgid "Output Interface" +msgstr "" + +msgid "Override MAC address" +msgstr "MAC 주소 덮어쓰기" + +msgid "Override MTU" +msgstr "MTU 덮어쓰기" + +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + +msgid "Override default interface name" +msgstr "기본 인터페이스 이름을 덮어씁니다" + +msgid "Override the gateway in DHCP responses" +msgstr "" + +msgid "" +"Override the netmask sent to clients. Normally it is calculated from the " +"subnet that is served." +msgstr "" +"Client 에 전달될 netmask 를 덮어 쓸 수 있습니다. 보통 해당 값은 제공되는 " +"subnet 에 따라 자동 계산됩니다." + +msgid "Override the table used for internal routes" +msgstr "" + +msgid "Overview" +msgstr "개요" + +msgid "Owner" +msgstr "" + +msgid "PAP/CHAP password" +msgstr "" + +msgid "PAP/CHAP username" +msgstr "" + +msgid "PID" +msgstr "" + +msgid "PIN" +msgstr "" + +msgid "PPP" +msgstr "" + +msgid "PPPoA Encapsulation" +msgstr "" + +msgid "PPPoATM" +msgstr "" + +msgid "PPPoE" +msgstr "" + +msgid "PPPoSSH" +msgstr "" + +msgid "PPtP" +msgstr "" + +msgid "PSID offset" +msgstr "" + +msgid "PSID-bits length" +msgstr "" + +msgid "PTM/EFM (Packet Transfer Mode)" +msgstr "" + +msgid "Package libiwinfo required!" +msgstr "" + +msgid "Package lists are older than 24 hours" +msgstr "" + +msgid "Package name" +msgstr "패키지 이름" + +msgid "Packets" +msgstr "" + +msgid "Part of zone %q" +msgstr "" + +msgid "Password" +msgstr "암호" + +msgid "Password authentication" +msgstr "암호 인증" + +msgid "Password of Private Key" +msgstr "" + +msgid "Password of inner Private Key" +msgstr "" + +msgid "Password successfully changed!" +msgstr "" + +msgid "Path to CA-Certificate" +msgstr "" + +msgid "Path to Client-Certificate" +msgstr "" + +msgid "Path to Private Key" +msgstr "" + +msgid "Path to executable which handles the button event" +msgstr "" + +msgid "Path to inner CA-Certificate" +msgstr "" + +msgid "Path to inner Client-Certificate" +msgstr "" + +msgid "Path to inner Private Key" +msgstr "" + +msgid "Peak:" +msgstr "최고치:" + +msgid "Peer IP address to assign" +msgstr "" + +msgid "Peers" +msgstr "" + +msgid "Perfect Forward Secrecy" +msgstr "" + +msgid "Perform reboot" +msgstr "재부팅하기" + +msgid "Perform reset" +msgstr "Reset 하기" + +msgid "Persistent Keep Alive" +msgstr "" + +msgid "Phy Rate:" +msgstr "" + +msgid "Physical Settings" +msgstr "Physical 설정" + +msgid "Ping" +msgstr "" + +msgid "Pkts." +msgstr "Pkts." + +msgid "Please enter your username and password." +msgstr "사용자이름과 암호를 입력해 주세요." + +msgid "Policy" +msgstr "" + +msgid "Port" +msgstr "포트" + +msgid "Port status:" +msgstr "포트 상태:" + +msgid "Power Management Mode" +msgstr "" + +msgid "Pre-emtive CRC errors (CRCP_P)" +msgstr "" + +msgid "Preshared Key" +msgstr "" + +msgid "" +"Presume peer to be dead after given amount of LCP echo failures, use 0 to " +"ignore failures" +msgstr "" + +msgid "Prevent listening on these interfaces." +msgstr "" + +msgid "Prevents client-to-client communication" +msgstr "" + +msgid "Prism2/2.5/3 802.11b Wireless Controller" +msgstr "" + +msgid "Private Key" +msgstr "" + +msgid "Proceed" +msgstr "" + +msgid "Processes" +msgstr "프로세스" + +msgid "Profile" +msgstr "" + +msgid "Prot." +msgstr "Prot." + +msgid "Protocol" +msgstr "프로토콜" + +msgid "Protocol family" +msgstr "" + +msgid "Protocol of the new interface" +msgstr "" + +msgid "Protocol support is not installed" +msgstr "" + +msgid "Provide NTP server" +msgstr "" + +msgid "Provide new network" +msgstr "새로운 네트워크를 추가합니다" + +msgid "Pseudo Ad-Hoc (ahdemo)" +msgstr "" + +msgid "Public Key" +msgstr "" + +msgid "Public prefix routed to this device for distribution to clients." +msgstr "" + +msgid "QMI Cellular" +msgstr "" + +msgid "Quality" +msgstr "" + +msgid "RFC3947 NAT-T mode" +msgstr "" + +msgid "RTS/CTS Threshold" +msgstr "" + +msgid "RX" +msgstr "" + +msgid "RX Rate" +msgstr "" + +msgid "RaLink 802.11%s Wireless Controller" +msgstr "" + +msgid "Radius-Accounting-Port" +msgstr "" + +msgid "Radius-Accounting-Secret" +msgstr "" + +msgid "Radius-Accounting-Server" +msgstr "" + +msgid "Radius-Authentication-Port" +msgstr "" + +msgid "Radius-Authentication-Secret" +msgstr "" + +msgid "Radius-Authentication-Server" +msgstr "" + +msgid "" +"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host " +"Configuration Protocol\">DHCP</abbr>-Server" +msgstr "" +"<code>/etc/ethers</code> 파일을 읽어 <abbr title=\"Dynamic Host " +"Configuration Protocol\">DHCP</abbr>-서버를 설정합니다" + +msgid "" +"Really delete this interface? The deletion cannot be undone!\\nYou might " +"lose access to this device if you are connected via this interface." +msgstr "" + +msgid "" +"Really delete this wireless network? The deletion cannot be undone!\\nYou " +"might lose access to this device if you are connected via this network." +msgstr "" + +msgid "Really reset all changes?" +msgstr "" + +msgid "" +"Really shut down network?\\nYou might lose access to this device if you are " +"connected via this interface." +msgstr "" +"정말로 네트워크를 shutdown 하시겠습니까?\\n이 인터페이스를 통해 연결하였다면 " +"접속이 끊어질 수 있습니다." + +msgid "" +"Really shutdown interface \"%s\" ?\\nYou might lose access to this device if " +"you are connected via this interface." +msgstr "" + +msgid "Really switch protocol?" +msgstr "정말 프로토콜 변경을 원하세요?" + +msgid "Realtime Connections" +msgstr "실시간 연결수" + +msgid "Realtime Graphs" +msgstr "실시간 그래프" + +msgid "Realtime Load" +msgstr "실시간 부하" + +msgid "Realtime Traffic" +msgstr "실시간 트래픽" + +msgid "Realtime Wireless" +msgstr "" + +msgid "Rebind protection" +msgstr "" + +msgid "Reboot" +msgstr "재부팅" + +msgid "Rebooting..." +msgstr "" + +msgid "Reboots the operating system of your device" +msgstr "장치의 운영체제를 재부팅합니다" + +msgid "Receive" +msgstr "" + +msgid "Receiver Antenna" +msgstr "" + +msgid "Reconnect this interface" +msgstr "이 인터페이스를 재연결합니다" + +msgid "Reconnecting interface" +msgstr "인터페이스 재연결중입니다" + +msgid "References" +msgstr "" + +msgid "Regulatory Domain" +msgstr "" + +msgid "Relay" +msgstr "" + +msgid "Relay Bridge" +msgstr "" + +msgid "Relay between networks" +msgstr "" + +msgid "Relay bridge" +msgstr "" + +msgid "Remote IPv4 address" +msgstr "" + +msgid "Remote IPv4 address or FQDN" +msgstr "" + +msgid "Remove" +msgstr "제거" + +msgid "Repeat scan" +msgstr "" + +msgid "Replace entry" +msgstr "" + +msgid "Replace wireless configuration" +msgstr "" + +msgid "Request IPv6-address" +msgstr "" + +msgid "Request IPv6-prefix of length" +msgstr "" + +msgid "Require TLS" +msgstr "" + +msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" +msgstr "특정 ISP 들에 요구됨. 예: Charter (DOCSIS 3 기반)" + +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + +msgid "" +"Requires upstream supports DNSSEC; verify unsigned domain responses really " +"come from unsigned domains" +msgstr "" + +msgid "Reset" +msgstr "초기화" + +msgid "Reset Counters" +msgstr "Counter 초기화" + +msgid "Reset to defaults" +msgstr "초기값으로 reset" + +msgid "Resolv and Hosts Files" +msgstr "Resolv 와 Hosts 파일" + +msgid "Resolve file" +msgstr "Resolve 파일" + +msgid "Restart" +msgstr "재시작" + +msgid "Restart Firewall" +msgstr "방화벽 재시작" + +msgid "Restore backup" +msgstr "백업 복구" + +msgid "Reveal/hide password" +msgstr "암호 보이기/숨기기" + +msgid "Revert" +msgstr "변경 취소" + +msgid "Root" +msgstr "" + +msgid "Root directory for files served via TFTP" +msgstr "TFTP 를 통해 제공되는 파일들의 root 디렉토리" + +msgid "Root preparation" +msgstr "" + +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + +msgid "Routed IPv6 prefix for downstream interfaces" +msgstr "" + +msgid "Router Advertisement-Service" +msgstr "" + +msgid "Router Password" +msgstr "라우터 암호" + +msgid "Routes" +msgstr "Route 경로" + +msgid "" +"Routes specify over which interface and gateway a certain host or network " +"can be reached." +msgstr "" +"Route 경로는 특정 호스트 혹은 네트워크가 사용해야 할 인터페이스와 gateway 정" +"보를 나타냅니다." + +msgid "Run a filesystem check before mounting the device" +msgstr "" + +msgid "Run filesystem check" +msgstr "" + +msgid "SHA256" +msgstr "" + +msgid "" +"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " +"use 6in4 instead" +msgstr "" + +msgid "SIXXS-handle[/Tunnel-ID]" +msgstr "" + +msgid "SNR" +msgstr "" + +msgid "SSH Access" +msgstr "" + +msgid "SSH server address" +msgstr "" + +msgid "SSH server port" +msgstr "" + +msgid "SSH username" +msgstr "" + +msgid "SSH-Keys" +msgstr "" + +msgid "SSID" +msgstr "SSID" + +msgid "Save" +msgstr "저장" + +msgid "Save & Apply" +msgstr "저장 & 적용" + +msgid "Save & Apply" +msgstr "저장 & 적용" + +msgid "Scan" +msgstr "Scan 하기" + +msgid "Scheduled Tasks" +msgstr "작업 관리" + +msgid "Section added" +msgstr "추가된 section" + +msgid "Section removed" +msgstr "삭제된 section" + +msgid "See \"mount\" manpage for details" +msgstr "" + +msgid "" +"Send LCP echo requests at the given interval in seconds, only effective in " +"conjunction with failure threshold" +msgstr "" + +msgid "Separate Clients" +msgstr "" + +msgid "Separate WDS" +msgstr "" + +msgid "Server Settings" +msgstr "서버 설정" + +msgid "Server password" +msgstr "" + +msgid "" +"Server password, enter the specific password of the tunnel when the username " +"contains the tunnel ID" +msgstr "" + +msgid "Server username" +msgstr "" + +msgid "Service Name" +msgstr "" + +msgid "Service Type" +msgstr "" + +msgid "Services" +msgstr "서비스" + +msgid "Set up Time Synchronization" +msgstr "" + +msgid "Setup DHCP Server" +msgstr "" + +msgid "Severely Errored Seconds (SES)" +msgstr "" + +msgid "Short GI" +msgstr "" + +msgid "Show current backup file list" +msgstr "현재 백업 파일 목록 보기" + +msgid "Shutdown this interface" +msgstr "이 인터페이스를 정지합니다" + +msgid "Shutdown this network" +msgstr "이 네트워크를 shutdown 합니다" + +msgid "Signal" +msgstr "신호" + +msgid "Signal Attenuation (SATN)" +msgstr "" + +msgid "Signal:" +msgstr "" + +msgid "Size" +msgstr "Size" + +msgid "Size (.ipk)" +msgstr "크기 (.ipk)" + +msgid "Skip" +msgstr "" + +msgid "Skip to content" +msgstr "" + +msgid "Skip to navigation" +msgstr "" + +msgid "Slot time" +msgstr "" + +msgid "Software" +msgstr "소프트웨어" + +msgid "Software VLAN" +msgstr "" + +msgid "Some fields are invalid, cannot save values!" +msgstr "" + +msgid "Sorry, the object you requested was not found." +msgstr "" + +msgid "Sorry, the server encountered an unexpected error." +msgstr "" + +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 "" + +msgid "Sort" +msgstr "순서" + +msgid "Source" +msgstr "" + +msgid "Source routing" +msgstr "" + +msgid "Specifies the button state to handle" +msgstr "" + +msgid "Specifies the directory the device is attached to" +msgstr "" + +msgid "Specifies the listening port of this <em>Dropbear</em> instance" +msgstr "<em>Dropbear</em> instance 의 listening 포트를 지정합니다" + +msgid "" +"Specifies the maximum amount of failed ARP requests until hosts are presumed " +"to be dead" +msgstr "" + +msgid "" +"Specifies the maximum amount of seconds after which hosts are presumed to be " +"dead" +msgstr "" + +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + +msgid "Specify the secret encryption key here." +msgstr "" + +msgid "Start" +msgstr "시작" + +msgid "Start priority" +msgstr "시작 우선순위" + +msgid "Startup" +msgstr "시작 프로그램" + +msgid "Static IPv4 Routes" +msgstr "Static IPv4 Route 경로" + +msgid "Static IPv6 Routes" +msgstr "Static IPv6 Route 경로" + +msgid "Static Leases" +msgstr "Static Lease 들" + +msgid "Static Routes" +msgstr "Static Route 경로" + +msgid "Static WDS" +msgstr "" + +msgid "Static address" +msgstr "" + +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 인터페이스 설정에도 사용됩니다." + +msgid "Status" +msgstr "상태" + +msgid "Stop" +msgstr "정지" + +msgid "Strict order" +msgstr "Strict order" + +msgid "Submit" +msgstr "제출하기" + +msgid "Suppress logging" +msgstr "" + +msgid "Suppress logging of the routine operation of these protocols" +msgstr "" + +msgid "Swap" +msgstr "" + +msgid "Swap Entry" +msgstr "" + +msgid "Switch" +msgstr "스위치" + +msgid "Switch %q" +msgstr "스위치 %q" + +msgid "Switch %q (%s)" +msgstr "스위치 %q (%s)" + +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "스위치 VLAN" + +msgid "Switch protocol" +msgstr "프로토콜 변경" + +msgid "Sync with browser" +msgstr "브라우저 시간대로 동기화" + +msgid "Synchronizing..." +msgstr "" + +msgid "System" +msgstr "시스템" + +msgid "System Log" +msgstr "시스템 로그" + +msgid "System Properties" +msgstr "시스템 등록 정보" + +msgid "System log buffer size" +msgstr "System log 버퍼 크기" + +msgid "TCP:" +msgstr "" + +msgid "TFTP Settings" +msgstr "TFTP 설정" + +msgid "TFTP server root" +msgstr "TFTP 서버 root" + +msgid "TX" +msgstr "TX" + +msgid "TX Rate" +msgstr "" + +msgid "Table" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Target network" +msgstr "" + +msgid "Terminate" +msgstr "" + +msgid "" +"The <em>Device Configuration</em> 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 <em>Interface Configuration</em>." +msgstr "" +"<em>장치 설정<em> 섹션은 channel, transmit power 혹은 antenna 선택과 같은 물" +"리적인 설정 내용을 다룹니다. 이 설정은 (만약 radio 하드웨어가 multi-SSID 지" +"원이 가능하다면) 정의된 모든 무선 네트워크에 공통적으로 적용됩니다. 암호화 혹" +"은 operation mode 와 같은 각 네트워크 설정들은 <em>인터페이스 설정</em>에서 " +"다루어집니다." + +msgid "" +"The <em>libiwinfo-lua</em> package is not installed. You must install this " +"component for working wireless configuration!" +msgstr "" + +msgid "" +"The HE.net endpoint update configuration changed, you must now use the plain " +"username instead of the user ID!" +msgstr "" + +msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" +"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" +msgstr "" + +msgid "" +"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</" +"code> and <code>_</code>" +msgstr "" + +msgid "The configuration file could not be loaded due to the following error:" +msgstr "" + +msgid "" +"The device file of the memory or partition (<abbr title=\"for example\">e.g." +"</abbr> <code>/dev/sda1</code>)" +msgstr "" + +msgid "" +"The filesystem that was used to format the memory (<abbr title=\"for example" +"\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</abbr></" +"samp>)" +msgstr "" + +msgid "" +"The flash image was uploaded. Below is the checksum and file size listed, " +"compare them with the original file to ensure data integrity.<br /> Click " +"\"Proceed\" below to start the flash procedure." +msgstr "" + +msgid "The following changes have been committed" +msgstr "" + +msgid "The following changes have been reverted" +msgstr "다음의 변경 사항들이 취소되었습니다" + +msgid "The following rules are currently active on this system." +msgstr "다음의 rule 들이 현재 이 시스템에 적용 중입니다." + +msgid "The given network name is not unique" +msgstr "" + +msgid "" +"The hardware is not multi-SSID capable and the existing configuration will " +"be replaced if you proceed." +msgstr "" + +msgid "" +"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " +"addresses." +msgstr "" + +msgid "The length of the IPv6 prefix in bits" +msgstr "" + +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + +msgid "" +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"communicate directly with each other. <abbr title=\"Virtual Local Area " +"Network\">VLAN</abbr>s 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 "" +"이 장치의 네트워크 포트들은 컴퓨터끼리 직접 통신을 할 수 있도록 여러 <abbr " +"title=\"Virtual Local Area Network\">VLAN</abbr> 으로 구성될 수 있습니다. " +"<abbr title=\"Virtual Local Area Network\">VLAN</abbr>은 종종 다른 네트워크 " +"segment 들을 분리하는데 사용되기도 합니다. 한 개의 uplink 포트가 인터넷에 연" +"결되어 있고 나머지 포트들은 local 네트워크로 연결되는 구성에 자주 사용됩니다." + +msgid "The selected protocol needs a device assigned" +msgstr "" + +msgid "The submitted security token is invalid or already expired!" +msgstr "" + +msgid "" +"The system is erasing the configuration partition now and will reboot itself " +"when finished." +msgstr "" + +msgid "" +"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " +"few minutes before you try to reconnect. It might be necessary to renew the " +"address of your computer to reach the device again, depending on your " +"settings." +msgstr "" + +msgid "" +"The tunnel end-point is behind NAT, defaults to disabled and only applies to " +"AYIYA" +msgstr "" + +msgid "" +"The uploaded image file does not contain a supported format. Make sure that " +"you choose the generic image format for your platform." +msgstr "" + +msgid "There are no active leases." +msgstr "" + +msgid "There are no pending changes to apply!" +msgstr "" + +msgid "There are no pending changes to revert!" +msgstr "" + +msgid "There are no pending changes!" +msgstr "" + +msgid "" +"There is no device assigned yet, please attach a network device in the " +"\"Physical Settings\" tab" +msgstr "" + +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 암호를 설정해 주세요." + +msgid "This IPv4 address of the relay" +msgstr "" + +msgid "" +"This file may contain lines like 'server=/domain/1.2.3.4' or " +"'server=1.2.3.4' fordomain-specific or full upstream <abbr title=\"Domain " +"Name System\">DNS</abbr> servers." +msgstr "" + +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/ 하위의 수정된 파일이나 특정 다른 설정들은 자동적" +"으로 변경 사항이 보존됩니다." + +msgid "" +"This is either the \"Update Key\" configured for the tunnel or the account " +"password if no update key has been configured" +msgstr "" + +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' 앞에) 부팅 절차가 " +"끝날 때 실행하고자 하는 명령들을 삽입하세요." + +msgid "" +"This is the local endpoint address assigned by the tunnel broker, it usually " +"ends with <code>:2</code>" +msgstr "" + +msgid "" +"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" +"abbr> in the local network" +msgstr "" + +msgid "This is the plain username for logging into the account" +msgstr "" + +msgid "" +"This is the prefix routed to you by the tunnel broker for use by clients" +msgstr "" + +msgid "This is the system crontab in which scheduled tasks can be defined." +msgstr "아래는 예정된 작업들이 정의된 시스템 crontab 내용입니다." + +msgid "" +"This is usually the address of the nearest PoP operated by the tunnel broker" +msgstr "" + +msgid "" +"This list gives an overview over currently running system processes and " +"their status." +msgstr "" +"이 목록은 현재 실행중인 시스템 프로세스와 해당 상태에 대한 개요를 보여줍니다." + +msgid "This page allows the configuration of custom button actions" +msgstr "" + +msgid "This page gives an overview over currently active network connections." +msgstr "이 페이지는 현재 active 상태인 네트워크 연결을 보여줍니다." + +msgid "This section contains no values yet" +msgstr "이 section 은 아직 입력된 값이 없습니다" + +msgid "Time Synchronization" +msgstr "시간 동기화" + +msgid "Time Synchronization is not configured yet." +msgstr "시간 동기화가 아직 설정되지 않았습니다." + +msgid "Timezone" +msgstr "시간대" + +msgid "" +"To restore configuration files, you can upload a previously generated backup " +"archive here." +msgstr "" +"설정 파일을 복구하고자 한다면 이전에 백업하신 아카이브 파일을 여기로 업로드" +"할 수 있습니다." + +msgid "Tone" +msgstr "" + +msgid "Total Available" +msgstr "총 이용 가능한 양" + +msgid "Traceroute" +msgstr "" + +msgid "Traffic" +msgstr "트래픽" + +msgid "Transfer" +msgstr "전송량" + +msgid "Transmission Rate" +msgstr "" + +msgid "Transmit" +msgstr "" + +msgid "Transmit Power" +msgstr "" + +msgid "Transmitter Antenna" +msgstr "" + +msgid "Trigger" +msgstr "" + +msgid "Trigger Mode" +msgstr "" + +msgid "Tunnel ID" +msgstr "" + +msgid "Tunnel Interface" +msgstr "" + +msgid "Tunnel Link" +msgstr "" + +msgid "Tunnel broker protocol" +msgstr "" + +msgid "Tunnel setup server" +msgstr "" + +msgid "Tunnel type" +msgstr "" + +msgid "Turbo Mode" +msgstr "" + +msgid "Tx-Power" +msgstr "" + +msgid "Type" +msgstr "유형" + +msgid "UDP:" +msgstr "" + +msgid "UMTS only" +msgstr "" + +msgid "UMTS/GPRS/EV-DO" +msgstr "" + +msgid "USB Device" +msgstr "" + +msgid "UUID" +msgstr "" + +msgid "Unable to dispatch" +msgstr "" + +msgid "Unavailable Seconds (UAS)" +msgstr "" + +msgid "Unknown" +msgstr "알수없음" + +msgid "Unknown Error, password not changed!" +msgstr "" + +msgid "Unmanaged" +msgstr "" + +msgid "Unmount" +msgstr "" + +msgid "Unsaved Changes" +msgstr "적용 안된 변경 사항" + +msgid "Unsupported protocol type." +msgstr "" + +msgid "Update lists" +msgstr "" + +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 이미지 필요)" + +msgid "Upload archive..." +msgstr "아카이브 업로드..." + +msgid "Uploaded File" +msgstr "Uploaded File" + +msgid "Uptime" +msgstr "가동 시간" + +msgid "Use <code>/etc/ethers</code>" +msgstr "<code>/etc/ethers</code> 사용" + +msgid "Use DHCP gateway" +msgstr "" + +msgid "Use DNS servers advertised by peer" +msgstr "Peer 가 권장한 DNS 서버 사용" + +msgid "Use ISO/IEC 3166 alpha2 country codes." +msgstr "" + +msgid "Use MTU on tunnel interface" +msgstr "" + +msgid "Use TTL on tunnel interface" +msgstr "" + +msgid "Use as external overlay (/overlay)" +msgstr "" + +msgid "Use as root filesystem (/)" +msgstr "" + +msgid "Use broadcast flag" +msgstr "Broadcast flag 사용" + +msgid "Use builtin IPv6-management" +msgstr "자체 내장 IPv6-관리 기능 사용" + +msgid "Use custom DNS servers" +msgstr "임의의 DNS 서버 사용" + +msgid "Use default gateway" +msgstr "Default gateway 사용" + +msgid "Use gateway metric" +msgstr "Gateway metric 사용" + +msgid "Use routing table" +msgstr "Routing table 사용" + +msgid "" +"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" +"em> indentifies the host, the <em>IPv4-Address</em> specifies to the fixed " +"address to use and the <em>Hostname</em> is assigned as symbolic name to the " +"requesting host. The optional <em>Lease time</em> can be used to set non-" +"standard host-specific lease time, e.g. 12h, 3d or infinite." +msgstr "" +"새로운 항목을 추가하기 위해서는 <em>추가</em> 버튼을 사용하세요. <em>MAC-주소" +"</em>는 host 를 나타내며, <em>IPv4-주소</em>는 사용할 고정 주소를 나타내고, " +"요청하는 host 에 대해 <em>hostname</em> 이 symbolic name 으로 부여됩니다. 선" +"택 사항인 <em>임대 시간</em>은 해당 host 에만 해당되는 시각을 설정하는데 사용" +"될 수 있습니다. 예를 들어 12h, 3d 혹은 infinite 값들이 가능합니다." + +msgid "Used" +msgstr "" + +msgid "Used Key Slot" +msgstr "" + +msgid "User certificate (PEM encoded)" +msgstr "" + +msgid "User key (PEM encoded)" +msgstr "" + +msgid "Username" +msgstr "사용자이름" + +msgid "VC-Mux" +msgstr "" + +msgid "VDSL" +msgstr "" + +msgid "VLANs on %q" +msgstr "" + +msgid "VLANs on %q (%s)" +msgstr "VLAN 설정: %q (%s)" + +msgid "VPN Local address" +msgstr "" + +msgid "VPN Local port" +msgstr "" + +msgid "VPN Server" +msgstr "" + +msgid "VPN Server port" +msgstr "" + +msgid "VPN Server's certificate SHA1 hash" +msgstr "" + +msgid "VPNC (CISCO 3000 (and others) VPN)" +msgstr "" + +msgid "Vendor" +msgstr "" + +msgid "Vendor Class to send when requesting DHCP" +msgstr "DHCP 요청시 전송할 Vendor Class" + +msgid "Verbose" +msgstr "" + +msgid "Verbose logging by aiccu daemon" +msgstr "" + +msgid "Verify" +msgstr "" + +msgid "Version" +msgstr "버전" + +msgid "WDS" +msgstr "WDS" + +msgid "WEP Open System" +msgstr "" + +msgid "WEP Shared Key" +msgstr "" + +msgid "WEP passphrase" +msgstr "" + +msgid "WMM Mode" +msgstr "WMM Mode" + +msgid "WPA passphrase" +msgstr "" + +msgid "" +"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " +"and ad-hoc mode) to be installed." +msgstr "" + +msgid "" +"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)" +msgstr "" + +msgid "Waiting for changes to be applied..." +msgstr "변경 사항이 적용되기를 기다리는 중입니다..." + +msgid "Waiting for command to complete..." +msgstr "실행한 명령이 끝나기를 기다리는 중입니다..." + +msgid "Waiting for device..." +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "Warning: There are unsaved changes that will get lost on reboot!" +msgstr "" + +msgid "Whether to create an IPv6 default route over the tunnel" +msgstr "" + +msgid "Whether to route only packets from delegated prefixes" +msgstr "" + +msgid "Width" +msgstr "" + +msgid "WireGuard VPN" +msgstr "" + +msgid "Wireless" +msgstr "무선" + +msgid "Wireless Adapter" +msgstr "" + +msgid "Wireless Network" +msgstr "무선랜 네트워크" + +msgid "Wireless Overview" +msgstr "무선랜 개요" + +msgid "Wireless Security" +msgstr "무선랜 보안" + +msgid "Wireless is disabled or not associated" +msgstr "무선이 비활성화되어 있거나 연결되어 있지 않습니다" + +msgid "Wireless is restarting..." +msgstr "무선랜이 재시작중입니다..." + +msgid "Wireless network is disabled" +msgstr "무선 네트워크가 꺼져 있음" + +msgid "Wireless network is enabled" +msgstr "무선 네트워크가 켜져 있음" + +msgid "Wireless restarted" +msgstr "무선랜이 재시작되었습니다" + +msgid "Wireless shut down" +msgstr "무선랜이 shutdown 되었습니다" + +msgid "Write received DNS requests to syslog" +msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다" + +msgid "Write system log to file" +msgstr "System log 출력 파일 경로" + +msgid "XR Support" +msgstr "" + +msgid "" +"You can enable or disable installed init scripts here. Changes will applied " +"after a device reboot.<br /><strong>Warning: If you disable essential init " +"scripts like \"network\", your device might become inaccessible!</strong>" +msgstr "" +"이 메뉴에서 설치된 init script 를 활성화/비활성화 할 수 있습니다. 변경 사항" +"은 장치가 재부팅 될 때 적용되게 됩니다.<br /><strong>경고: 만약 \"network\" " +"와 같은 중요 init script 를 비활성화 할 경우, 장치에 접속을 못하실 수 있습니" +"다!</strong>" + +msgid "" +"You must enable Java Script in your browser or LuCI will not work properly." +msgstr "" + +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 "" + +msgid "any" +msgstr "" + +msgid "auto" +msgstr "" + +msgid "automatic" +msgstr "" + +msgid "baseT" +msgstr "" + +msgid "bridged" +msgstr "" + +msgid "create:" +msgstr "" + +msgid "creates a bridge over specified interface(s)" +msgstr "지정한 인터페이스(들)로 구성된 bridge 를 생성합니다" + +msgid "dB" +msgstr "" + +msgid "dBm" +msgstr "" + +msgid "disable" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "expired" +msgstr "만료됨" + +msgid "" +"file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" +"abbr>-leases will be stored" +msgstr "" +"할당된 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>-lease " +"정보가 저장되는 파일" + +msgid "forward" +msgstr "" + +msgid "full-duplex" +msgstr "" + +msgid "half-duplex" +msgstr "" + +msgid "help" +msgstr "" + +msgid "hidden" +msgstr "" + +msgid "hybrid mode" +msgstr "" + +msgid "if target is a network" +msgstr "Target 이 네트워크일 경우" + +msgid "input" +msgstr "" + +msgid "kB" +msgstr "" + +msgid "kB/s" +msgstr "" + +msgid "kbit/s" +msgstr "" + +msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" +msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파일" + +msgid "minimum 1280, maximum 1480" +msgstr "" + +msgid "navigation Navigation" +msgstr "" + +msgid "no" +msgstr "" + +msgid "no link" +msgstr "link 없음" + +msgid "none" +msgstr "" + +msgid "not present" +msgstr "" + +msgid "off" +msgstr "" + +msgid "on" +msgstr "" + +msgid "open" +msgstr "" + +msgid "overlay" +msgstr "" + +msgid "relay mode" +msgstr "" + +msgid "routed" +msgstr "" + +msgid "server mode" +msgstr "" + +msgid "skiplink1 Skip to navigation" +msgstr "" + +msgid "skiplink2 Skip to content" +msgstr "" + +msgid "stateful-only" +msgstr "" + +msgid "stateless" +msgstr "" + +msgid "stateless + stateful" +msgstr "" + +msgid "tagged" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "unlimited" +msgstr "" + +msgid "unspecified" +msgstr "" + +msgid "unspecified -or- create:" +msgstr "unspecified -혹은- create:" + +msgid "untagged" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "« Back" +msgstr "" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 0bb60faf5e..971afd4fe4 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -13,6 +13,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "" @@ -265,6 +271,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -273,9 +282,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" - msgid "Annex" msgstr "" @@ -383,6 +389,9 @@ msgstr "" msgid "Authentication" msgstr "Authentifizierung" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Pengesahan" @@ -476,9 +485,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -517,9 +532,6 @@ msgstr "Butang" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "Penggunaan CPU (%)" @@ -550,6 +562,9 @@ msgstr "" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Jumlah disemak " @@ -871,6 +886,9 @@ msgstr "Domain diperlukan" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -937,6 +955,9 @@ msgstr "Mengaktifkan <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -967,6 +988,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -988,6 +1012,12 @@ msgstr "" msgid "Encryption" msgstr "Enkripsi" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1025,6 +1055,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1141,6 +1174,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1198,6 +1236,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Kawalan" @@ -1297,6 +1338,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "Konfigurasi IPv6" @@ -1504,10 +1548,10 @@ msgstr "" msgid "Join Network" msgstr "Gabung Rangkaian" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1623,6 +1667,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1720,6 +1767,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2050,6 +2100,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Pilihan" @@ -2074,6 +2154,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2190,6 +2276,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2199,6 +2288,9 @@ msgstr "Lakukan reboot" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2220,12 +2312,6 @@ msgstr "Dasar" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2235,12 +2321,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2249,6 +2338,9 @@ msgstr "Mencegah komunikasi sesama Pelanggan" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Teruskan" @@ -2282,9 +2374,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2413,6 +2511,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Menghapuskan" @@ -2437,6 +2538,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2481,6 +2594,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2506,6 +2625,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2644,6 +2766,9 @@ msgstr "Slot masa" msgid "Software" msgstr "Perisian" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2655,8 +2780,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2688,6 +2813,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2757,6 +2895,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2825,6 +2970,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2884,6 +3033,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3137,8 +3289,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3221,9 +3373,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3319,6 +3468,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3355,6 +3507,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Sokongan XR" diff --git a/modules/luci-base/po/no/base.po b/modules/luci-base/po/no/base.po index 033237d0f6..400876dbb3 100644 --- a/modules/luci-base/po/no/base.po +++ b/modules/luci-base/po/no/base.po @@ -8,6 +8,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d minutters vindu, %d sekunds intervall)" @@ -35,6 +38,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "1 minutts belastning:" @@ -274,6 +280,9 @@ 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" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -282,9 +291,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -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 "Annex" msgstr "" @@ -392,6 +398,9 @@ msgstr "" msgid "Authentication" msgstr "Godkjenning" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritativ" @@ -488,9 +497,15 @@ msgstr "" "konfigurasjonsfiler som er merket av opkg, essensielle enhets filer og andre " "filer valgt av bruker." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitrate" @@ -529,9 +544,6 @@ msgstr "Knapper" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "CPU forbruk (%)" @@ -562,6 +574,9 @@ msgstr "Kontroller" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Kontrollsum" @@ -900,6 +915,9 @@ msgstr "Domene kreves" msgid "Domain whitelist" msgstr "Domene hviteliste" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -972,6 +990,9 @@ msgstr "Aktiver <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Aktiver HE,net dynamisk endepunkt oppdatering" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Aktiver IPv6 på PPP lenke" @@ -1002,6 +1023,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Aktiver dette monteringspunktet" @@ -1023,6 +1047,12 @@ msgstr "Innkapsling modus" msgid "Encryption" msgstr "Kryptering" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Sletter..." @@ -1061,6 +1091,9 @@ msgstr "Ekstern systemlogg server" msgid "External system log server port" msgstr "Ekstern systemlogg server port" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1178,6 +1211,11 @@ msgstr "Ledig" msgid "Free space" msgstr "Ledig plass" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1235,6 +1273,9 @@ msgstr "HE.net passord" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Behandler" @@ -1336,6 +1377,9 @@ msgstr "IPv4 prefikslengde" msgid "IPv4-Address" msgstr "IPv4-Adresse" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1541,12 +1585,12 @@ msgstr "Java Script kreves!" msgid "Join Network" msgstr "Koble til nettverket" -msgid "Join Network: Settings" -msgstr "Koble til nettverk: Innstilling" - msgid "Join Network: Wireless Scan" msgstr "Koble til nettverk: Trådløs Skanning" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Behold innstillinger" @@ -1662,6 +1706,9 @@ msgstr "Liste over verter som returneren falske NX domene resultater" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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" @@ -1765,6 +1812,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2094,6 +2144,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Alternativer" @@ -2118,6 +2198,12 @@ msgstr "Overstyr MAC adresse" msgid "Override MTU" msgstr "Overstyr MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2236,6 +2322,9 @@ msgstr "Maksimalt:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2245,6 +2334,9 @@ msgstr "Omstart nå" msgid "Perform reset" msgstr "Foreta nullstilling" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Phy Hastighet:" @@ -2266,12 +2358,6 @@ msgstr "Policy" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "Port %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "Port %d er utagget i flere VLANs!" - msgid "Port status:" msgstr "Port status:" @@ -2281,6 +2367,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2288,7 +2377,7 @@ msgstr "" "Annta at peer er uten forbindelse om angitt LCP ekko feiler, bruk verdi 0 " "for å overse feil" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2297,6 +2386,9 @@ msgstr "Hindrer klient-til-klient kommunikasjon" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b Trådløs Kontroller" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Fortsett" @@ -2330,9 +2422,15 @@ msgstr "Lag nytt nettverk" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Kvalitet" @@ -2474,6 +2572,9 @@ msgstr "Relay bro" msgid "Remote IPv4 address" msgstr "Ekstern IPv4 adresse" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Avinstaller" @@ -2498,6 +2599,18 @@ msgstr "" 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" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2542,6 +2655,12 @@ msgstr "Rot katalog for filer gitt fra TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2567,6 +2686,9 @@ msgstr "Kjør filsystem sjekk før montering av enheten" msgid "Run filesystem check" msgstr "Kjør filsystem sjekk" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2708,6 +2830,9 @@ msgstr "Slot tid" msgid "Software" msgstr "Programvare" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Noen felt er ugyldige, kan ikke lagre verdier!" @@ -2717,15 +2842,14 @@ msgstr "Beklager, objektet du spurte om ble ikke funnet." msgid "Sorry, the server encountered an unexpected error." msgstr "Beklager, det oppstod en uventet feil på serveren." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 OpenWrt wiki for installering av firmare på " -"forskjellige enheter." +"flashes manuelt. Viser til wiki for installering av firmare på forskjellige " +"enheter." msgid "Sort" msgstr "Sortering" @@ -2756,6 +2880,19 @@ msgid "" "dead" msgstr "Angir maksimalt antall sekunder før verter ansees som frakoblet" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Angi krypteringsnøkkelen her." @@ -2828,6 +2965,13 @@ msgstr "Svitsj %q" msgid "Switch %q (%s)" msgstr "Svitsj %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Svitsj protokoll" @@ -2904,6 +3048,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "IPv6 prefikset tilordnet mot leverandør, ender som regel med <code>::</code>" @@ -2971,6 +3119,9 @@ msgstr "Lengden IPv4 prefikset i bits, resten brukt i IPv6-adresser." msgid "The length of the IPv6 prefix in bits" msgstr "Lengden på IPv6 prefikset i bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3243,12 +3394,12 @@ msgstr "Oppdater lister" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 OpenWrt kompatibel firmware er nødvendig)" +"konfigurasjon. (en kompatibel firmware er nødvendig)" msgid "Upload archive..." msgstr "Last opp arkiv..." @@ -3334,9 +3485,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "VLAN grensesnitt" - msgid "VLANs on %q" msgstr "VLANs på %q" @@ -3432,6 +3580,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Trådløs" @@ -3468,6 +3619,9 @@ msgstr "Trådløst er slått av" msgid "Write received DNS requests to syslog" msgstr "Skriv mottatte DNS forespørsler til syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "XR Støtte" @@ -3649,3 +3803,21 @@ msgstr "ja" msgid "« Back" msgstr "« Tilbake" + +#~ 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/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 49ede9c663..e77a51548a 100644 --- a/modules/luci-base/po/pl/base.po +++ b/modules/luci-base/po/pl/base.po @@ -14,6 +14,9 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(okno %d minut, interwał %d sekund)" @@ -41,6 +44,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Obciążenie 1 min.:" @@ -289,6 +295,9 @@ msgid "" msgstr "" "Pozwól na ruch wychodzący (odpowiedzi) z podsieci 127.0.0.0/8, np. usługi RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -297,10 +306,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" -"Zostanie utworzona dodatkowa sieć jeśli zostawisz tą opcję niezaznaczoną." - msgid "Annex" msgstr "" @@ -408,6 +413,9 @@ msgstr "" msgid "Authentication" msgstr "Uwierzytelnianie" +msgid "Authentication Type" +msgstr "" + # Nawet M$ tego nie tłumaczy;) msgid "Authoritative" msgstr "Autorytatywny" @@ -506,9 +514,15 @@ msgstr "" "Zawiera ona zmienione pliki konfiguracyjne oznaczone przez opkg, podstawowe " "pliki systemowe, oraz pliki oznaczone do kopiowania przez użytkownika." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Przepływność" @@ -548,9 +562,6 @@ msgstr "Przyciski" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Użycie CPU (%)" @@ -581,6 +592,9 @@ msgstr "Sprawdź" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Suma kontrolna" @@ -925,6 +939,9 @@ msgstr "Wymagana domena" msgid "Domain whitelist" msgstr "Whitelist domen (Dozwolone domeny)" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -1000,6 +1017,9 @@ msgstr "Włącz <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Włącz dynamiczną aktualizację punktu końcowego sieci HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Włącz negocjację IPv6 na łączu PPP" @@ -1030,6 +1050,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Włącz ten punkt montowania" @@ -1054,6 +1077,12 @@ msgstr "Sposób Enkapsulacji" msgid "Encryption" msgstr "Szyfrowanie" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Usuwanie..." @@ -1093,6 +1122,9 @@ msgstr "Zewnętrzny serwer dla loga systemowego" msgid "External system log server port" msgstr "Port zewnętrznego serwera dla loga systemowego" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1211,6 +1243,11 @@ msgstr "Wolna" msgid "Free space" msgstr "Wolna przestrzeń" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1270,6 +1307,9 @@ msgstr "Hasło HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Uchwyt" @@ -1374,6 +1414,9 @@ msgstr "Długość prefiksu IPv4" msgid "IPv4-Address" msgstr "Adres IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1587,12 +1630,12 @@ msgstr "Java Script jest wymagany!" msgid "Join Network" msgstr "Połącz z siecią" -msgid "Join Network: Settings" -msgstr "Przyłącz do sieci: Ustawienia" - msgid "Join Network: Wireless Scan" msgstr "Przyłącz do sieci: Skanuj sieci WiFi" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Zachowaj ustawienia" @@ -1708,6 +1751,9 @@ msgstr "Lista hostów które dostarczają zafałszowane wyniki NX domain" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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" @@ -1812,6 +1858,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2140,6 +2189,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Opcje" @@ -2164,6 +2243,12 @@ msgstr "Nadpisz adres MAC" msgid "Override MTU" msgstr "Nadpisz MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2284,6 +2369,9 @@ msgstr "Szczyt:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2293,6 +2381,9 @@ msgstr "Wykonaj restart" msgid "Perform reset" msgstr "Wykonaj reset" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Szybkość Phy:" @@ -2314,12 +2405,6 @@ msgstr "Zasada" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "Port %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "Port %d jest nietagowany w wielu VLAN`ach!" - msgid "Port status:" msgstr "Status portu:" @@ -2329,6 +2414,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2336,7 +2424,7 @@ msgstr "" "Zakładaj że klient jest martwy po danej ilości błedów odpowiedzi echa LCP, " "wpisz 0 aby zignorować błędy" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2345,6 +2433,9 @@ msgstr "Zapobiegaj komunikacji klientów pomiędzy sobą" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Kontroler bezprzewodowy Prism2/2.5/3 802.11b" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Wykonaj" @@ -2379,9 +2470,15 @@ msgstr "Utwórz nową sieć" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Jakość" @@ -2524,6 +2621,9 @@ msgstr "Most przekaźnikowy" msgid "Remote IPv4 address" msgstr "Zdalny adres IPv4" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Usuń" @@ -2548,6 +2648,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Wymagany dla niektórych dostawców internetu, np. Charter z DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2592,6 +2704,12 @@ msgstr "Katalog Root`a dla plików udostępnianych przez TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2618,6 +2736,9 @@ msgstr "" msgid "Run filesystem check" msgstr "Sprawdź czy system plików nie zawiera błędów" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2760,6 +2881,9 @@ msgstr "Szczelina czasowa" msgid "Software" msgstr "Oprogramowanie" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Wartości pewnych pól są niewłaściwe, nie mogę ich zachować!" @@ -2769,15 +2893,14 @@ msgstr "Przepraszamy, ale żądany obiekt nie został znaleziony." msgid "Sorry, the server encountered an unexpected error." msgstr "Przepraszamy, ale serwer napotkał nieoczekiwany błąd." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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ę OpenWrt wiki, aby uzyskać instrukcję dla " -"danego urządzenia." +"być wgrany ręcznie. Sprawdź stronę wiki, aby uzyskać instrukcję dla danego " +"urządzenia." msgid "Sort" msgstr "Posortuj" @@ -2810,6 +2933,19 @@ msgid "" msgstr "" "Określa maksymalny czas w sekundach przed założeniem, że host jest martwy" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Określ tajny klucz szyfrowania." @@ -2883,6 +3019,13 @@ msgstr "Przełącznik %q" msgid "Switch %q (%s)" msgstr "Przełącznik %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Protokół przełącznika" @@ -2960,6 +3103,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "Prefiks IPv6 przypisany do dostawcy, zazwyczaj kończy się <code>::</code>" @@ -3030,6 +3177,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "Długość prefiksu IPv6 w bitach" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3307,12 +3457,12 @@ msgstr "Aktualizuj listy" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" "Prześlij zgodny z funkcją sysupgrade obraz tutaj, aby zastąpić aktualnie " "działające firmware. Zaznacz opcję \"Zachowaj ustawienia\", aby zachować " -"bieżącą konfigurację (wymaga zgodnego obrazu firmware OpenWrt)." +"bieżącą konfigurację (wymaga zgodnego obrazu firmware)." msgid "Upload archive..." msgstr "Załaduj archiwum..." @@ -3399,9 +3549,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interfejs VLAN" - msgid "VLANs on %q" msgstr "Sieci VLAN na %q" @@ -3498,6 +3645,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Sieć bezprzewodowa" @@ -3534,6 +3684,9 @@ msgstr "Wyłączanie sieci bezprzewodowej" msgid "Write received DNS requests to syslog" msgstr "Zapisz otrzymane żądania DNS do syslog'a" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Wsparcie XR" @@ -3716,3 +3869,22 @@ msgstr "tak" msgid "« Back" msgstr "« Wróć" + +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "" +#~ "Zostanie utworzona dodatkowa sieć jeśli zostawisz tą opcję niezaznaczoną." + +#~ msgid "Join Network: Settings" +#~ msgstr "Przyłącz do sieci: Ustawienia" + +#~ msgid "CPU" +#~ msgstr "CPU" + +#~ msgid "Port %d" +#~ msgstr "Port %d" + +#~ msgid "Port %d is untagged in multiple VLANs!" +#~ msgstr "Port %d jest nietagowany w wielu VLAN`ach!" + +#~ msgid "VLAN Interface" +#~ msgstr "Interfejs VLAN" diff --git a/modules/luci-base/po/pt-br/base.po b/modules/luci-base/po/pt-br/base.po index 209a8625c7..e33bcb20e7 100644 --- a/modules/luci-base/po/pt-br/base.po +++ b/modules/luci-base/po/pt-br/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(janela de %d minutos, intervalo de %d segundos)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Carga 1 Minuto:" @@ -289,6 +295,9 @@ msgstr "" "Permite respostas que apontem para 127.0.0.0/8 de servidores externos, por " "exemplo, para os serviços RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -297,9 +306,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Uma rede adicional será criada se você deixar isto desmarcado." - msgid "Annex" msgstr "" @@ -407,6 +413,9 @@ msgstr "" msgid "Authentication" msgstr "Autenticação" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritário" @@ -503,9 +512,15 @@ msgstr "" "de configuração alterados marcados pelo opkg, arquivos base essenciais e " "padrões para a cópia de segurança definidos pelo usuário." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Taxa de bits" @@ -544,9 +559,6 @@ msgstr "Botões" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Uso da CPU (%)" @@ -577,6 +589,9 @@ msgstr "Verificar" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Soma de verificação" @@ -920,6 +935,9 @@ msgstr "Requerer domínio" msgid "Domain whitelist" msgstr "Lista branca de domínios" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -995,6 +1013,9 @@ msgstr "Ativar <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Ativar a atualização de ponto final dinâmico HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Ativar a negociação de IPv6 no enlace PPP" @@ -1025,6 +1046,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Ativar esta montagem" @@ -1046,6 +1070,12 @@ msgstr "Modo de encapsulamento" msgid "Encryption" msgstr "Cifragem" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Apagando..." @@ -1086,6 +1116,9 @@ msgstr "Servidor externo de registros do sistema (syslog)" msgid "External system log server port" msgstr "Porta do servidor externo de registro do sistema (syslog)" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1202,6 +1235,11 @@ msgstr "Livre" msgid "Free space" msgstr "Espaço livre" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1259,6 +1297,9 @@ msgstr "Senha HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + # Não sei que contexto isto está sendo usado msgid "Handler" msgstr "Responsável" @@ -1365,6 +1406,9 @@ msgstr "Tamanho do prefixo IPv4" msgid "IPv4-Address" msgstr "Endereço IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1582,12 +1626,12 @@ msgstr "É necessário Java Script!" msgid "Join Network" msgstr "Conectar à Rede" -msgid "Join Network: Settings" -msgstr "Conectar à Rede: Configurações" - msgid "Join Network: Wireless Scan" msgstr "Conectar à Rede: Busca por Rede Sem Fio" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Manter configurações" @@ -1707,6 +1751,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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" @@ -1813,6 +1860,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2146,6 +2196,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Opções" @@ -2170,6 +2250,12 @@ msgstr "Sobrescrever o endereço MAC" msgid "Override MTU" msgstr "Sobrescrever o MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2289,6 +2375,9 @@ msgstr "Pico:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2298,6 +2387,9 @@ msgstr "Reiniciar o sistema" msgid "Perform reset" msgstr "Zerar configuração" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Taxa física:" @@ -2319,12 +2411,6 @@ msgstr "Política" msgid "Port" msgstr "Porta" -msgid "Port %d" -msgstr "Porta %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "Porta %d está sem etiqueta para mútliplas VLANs!" - msgid "Port status:" msgstr "Status da porta" @@ -2334,6 +2420,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2341,7 +2430,7 @@ msgstr "" "Assumir que o parceiro está morto depois de uma data quantidade de falhas de " "echo do LCP. Use 0 para ignorar as falhas" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2350,6 +2439,9 @@ msgstr "Impede a comunicação de cliente para cliente" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b Wireless Controlador" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Proceder" @@ -2383,9 +2475,15 @@ msgstr "Prover nova rede" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ad-Hoc falso (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Qualidade" @@ -2529,6 +2627,9 @@ msgstr "Ponte por retransmissão" msgid "Remote IPv4 address" msgstr "Endereço IPv4 remoto" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Remover" @@ -2553,6 +2654,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Requerido para alguns provedores de internet, ex. Charter com DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2597,6 +2710,12 @@ msgstr "Diretório raiz para arquivos disponibilizados pelo TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2623,6 +2742,9 @@ msgstr "" msgid "Run filesystem check" msgstr "Execute a verificação do sistema de arquivos " +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2764,6 +2886,9 @@ msgstr "Intervalo de tempo" msgid "Software" msgstr "Software" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Alguns campos estão inválidos e os valores não podem ser salvos!" @@ -2773,15 +2898,14 @@ msgstr "Desculpe o objeto solicitado não foi encontrado" msgid "Sorry, the server encountered an unexpected error." msgstr "Desculpe, o servidor encontrou um erro inesperado." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"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 do OpenWrt " -"para instruções específicas da instalação deste dispositivo." +"firmware deve ser gravada manualmente. Por favor, consulte a wiki para " +"instruções específicas da instalação deste dispositivo." msgid "Sort" msgstr "Ordenar" @@ -2815,6 +2939,19 @@ msgstr "" "Especifica a quantidade máxima de segundos antes de considerar que um " "equipamento está morto" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Especifique a chave de cifragem secreta aqui." @@ -2888,6 +3025,13 @@ msgstr "Switch %q" msgid "Switch %q (%s)" msgstr "Switch %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Trocar o protocolo" @@ -2964,6 +3108,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "O prefixo IPv6 atribuído pelo provedor, geralmente termina com<code>::</code>" @@ -3033,6 +3181,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "O comprimento do prefixo IPv6 em bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3309,12 +3460,12 @@ msgstr "Atualizar listas" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"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 OpenWrt compatível)." +"atuais (requer uma imagem compatível)." msgid "Upload archive..." msgstr "Enviar arquivo..." @@ -3401,9 +3552,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interface VLAN" - msgid "VLANs on %q" msgstr "VLANs em %q" @@ -3499,6 +3647,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Rede sem fio" @@ -3535,6 +3686,9 @@ msgstr "Rede sem fio desligada" msgid "Write received DNS requests to syslog" msgstr "Escreva as requisições DNS para o servidor de registro (syslog)" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Suporte a XR" @@ -3720,3 +3874,21 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" + +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "Uma rede adicional será criada se você deixar isto desmarcado." + +#~ msgid "Join Network: Settings" +#~ msgstr "Conectar à Rede: Configurações" + +#~ msgid "CPU" +#~ msgstr "CPU" + +#~ msgid "Port %d" +#~ msgstr "Porta %d" + +#~ msgid "Port %d is untagged in multiple VLANs!" +#~ msgstr "Porta %d está sem etiqueta para mútliplas VLANs!" + +#~ msgid "VLAN Interface" +#~ msgstr "Interface VLAN" diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index f20a95dc19..86e9e1b9d5 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -13,6 +13,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(janela de %d minutos, intervalo de %d segundos)" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Carga de 1 Minuto:" @@ -287,6 +293,9 @@ msgid "" msgstr "" "Permitir respostas a montante na gama 127.0.0.1/8, p.e. para serviços RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -295,9 +304,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Uma rede adicional será criada se deixar isto desmarcado." - msgid "Annex" msgstr "" @@ -405,6 +411,9 @@ msgstr "" msgid "Authentication" msgstr "Autenticação" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritário" @@ -501,9 +510,15 @@ msgstr "" "configuração alterados e marcados pelo opkg, ficheiros base essenciais e " "padrões de backup definidos pelo utilizador." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Taxa de bits" @@ -542,9 +557,6 @@ msgstr "Botões" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "Uso da CPU (%)" @@ -575,6 +587,9 @@ msgstr "Verificar" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Checksum" @@ -915,6 +930,9 @@ msgstr "Requerer domínio" msgid "Domain whitelist" msgstr "Lista Branca do Dominio" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -988,6 +1006,9 @@ msgstr "Ativar <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Ativar a atualização dinâmica de ponto final HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Ativar a negociação IPv6 no link PPP" @@ -1018,6 +1039,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Ativar este mount" @@ -1039,6 +1063,12 @@ msgstr "Modo de encapsulamento" msgid "Encryption" msgstr "Encriptação" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "A apagar..." @@ -1079,6 +1109,9 @@ msgstr "Servidor externo de logs de sistema" msgid "External system log server port" msgstr "Porta do Servidor externo de logs de sistema" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1195,6 +1228,11 @@ msgstr "Livre" msgid "Free space" msgstr "Espaço livre" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1253,6 +1291,9 @@ msgstr "Password HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Handler" @@ -1357,6 +1398,9 @@ msgstr "Comprimento do prefixo IPv4" msgid "IPv4-Address" msgstr "Endereço-IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1565,12 +1609,12 @@ msgstr "É necessário Javascript!" msgid "Join Network" msgstr "Associar Rede" -msgid "Join Network: Settings" -msgstr "Associar Rede: Definições" - msgid "Join Network: Wireless Scan" msgstr "Associar Rede: Procurar Redes Wireless" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Manter definições" @@ -1686,6 +1730,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + 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" @@ -1789,6 +1836,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2118,6 +2168,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Opções" @@ -2142,6 +2222,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2258,6 +2344,9 @@ msgstr "Pico:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2267,6 +2356,9 @@ msgstr "Executar reinicialização" msgid "Perform reset" msgstr "Executar reset" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2288,12 +2380,6 @@ msgstr "Política" msgid "Port" msgstr "Porta" -msgid "Port %d" -msgstr "Porta %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "Estado da porta:" @@ -2303,12 +2389,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2317,6 +2406,9 @@ msgstr "Impede a comunicação cliente-a-cliente" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Controlador Wireless Prism2/2.5/3 802.11b" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Proceder" @@ -2350,9 +2442,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Qualidade" @@ -2493,6 +2591,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "Endereço IPv4 remoto" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Remover" @@ -2517,6 +2618,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Necessário para certos ISPs, p.ex. Charter with DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2561,6 +2674,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2587,6 +2706,9 @@ msgstr "" msgid "Run filesystem check" msgstr "Correr uma verificação do sistema de ficheiros" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2726,6 +2848,9 @@ msgstr "" msgid "Software" msgstr "Software" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Alguns campos são inválidos, não é possível gravar valores!" @@ -2737,8 +2862,8 @@ msgstr "Lamento, o servidor encontrou um erro inesperado." msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2769,6 +2894,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2838,6 +2976,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2907,6 +3052,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "O prefixo IPv6 atribuído ao provider, habitualmente termina com <code>::</" @@ -2976,6 +3125,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "O comprimento do prefixo IPv6 em bits" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3243,8 +3395,8 @@ msgstr "Actualizar listas" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3327,9 +3479,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interface VLAN" - msgid "VLANs on %q" msgstr "VLANs em %q" @@ -3425,6 +3574,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Rede Wireless" @@ -3461,6 +3613,9 @@ msgstr "Desligar wireless" msgid "Write received DNS requests to syslog" msgstr "Escrever os pedidos de DNS para o syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Suporte XR" @@ -3645,3 +3800,18 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" + +#~ 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/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index b114568179..4763d63352 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -12,6 +12,9 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d fereastra minute, %d interval secunde)" @@ -39,6 +42,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Incarcarea in ultimul minut" @@ -273,6 +279,9 @@ msgid "" msgstr "" "Permite raspuns upstream in plaja 127.0.0.0/8, e.g. pentru serviciile RBL" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -281,10 +290,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -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 "Annex" msgstr "" @@ -392,6 +397,9 @@ msgstr "" msgid "Authentication" msgstr "Autentificare" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Autoritare" @@ -485,9 +493,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Bitrate" @@ -526,9 +540,6 @@ msgstr "Butoane" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "Procesor" - msgid "CPU usage (%)" msgstr "Utilizarea procesorului (%)" @@ -559,6 +570,9 @@ msgstr "Verificare" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Suma de verificare" @@ -879,6 +893,9 @@ msgstr "Domeniul necesar" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -944,6 +961,9 @@ msgstr "Activeaza <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -974,6 +994,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -995,6 +1018,12 @@ msgstr "Modul de incapsulare" msgid "Encryption" msgstr "Criptare" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Stergere..." @@ -1032,6 +1061,9 @@ msgstr "Server de log-uri extern" msgid "External system log server port" msgstr "Portul serverului de log-uri extern" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1149,6 +1181,11 @@ msgstr "Liber" msgid "Free space" msgstr "Spatiu liber" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1206,6 +1243,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1305,6 +1345,9 @@ msgstr "" msgid "IPv4-Address" msgstr "Adresa IPv4" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1506,10 +1549,10 @@ msgstr "Ai nevoie de Java Script !" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1625,6 +1668,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1722,6 +1768,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2043,6 +2092,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Optiuni" @@ -2067,6 +2146,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2183,6 +2268,9 @@ msgstr "Maxim:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2192,6 +2280,9 @@ msgstr "Restarteaza" msgid "Perform reset" msgstr "Reseteaza" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Rata phy:" @@ -2213,12 +2304,6 @@ msgstr "" msgid "Port" msgstr "Port" -msgid "Port %d" -msgstr "Port %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "Stare port:" @@ -2228,12 +2313,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2242,6 +2330,9 @@ msgstr "" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Continua" @@ -2275,9 +2366,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Calitate" @@ -2407,6 +2504,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Elimina" @@ -2431,6 +2531,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2475,6 +2587,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2498,6 +2616,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2637,6 +2758,9 @@ msgstr "" msgid "Software" msgstr "Software" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2648,8 +2772,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2680,6 +2804,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2749,6 +2886,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2816,6 +2960,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2869,6 +3017,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3111,8 +3262,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3195,9 +3346,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Interfata VLAN" - msgid "VLANs on %q" msgstr "VLANuri pe %q" @@ -3293,6 +3441,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Wireless" @@ -3329,6 +3480,9 @@ msgstr "Wireless-ul oprit" msgid "Write received DNS requests to syslog" msgstr "Scrie cererile DNS primite in syslog" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Suport XR" @@ -3502,3 +3656,16 @@ msgstr "da" msgid "« Back" msgstr "« Inapoi" + +#~ 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/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index 4ad8bfb1c4..8394b3c6fd 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -15,6 +15,9 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" "X-Poedit-SourceCharset: UTF-8\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d минутное окно, %d секундный интервал)" @@ -42,6 +45,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Загрузка за 1 минуту:" @@ -286,6 +292,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "Разрешить ответы в диапазоне 127.0.0.0/8, например, для RBL-сервисов" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -294,9 +303,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Если вы не выберите эту опцию, то будет создана дополнительная сеть." - msgid "Annex" msgstr "" @@ -404,6 +410,9 @@ msgstr "" msgid "Authentication" msgstr "Аутентификация" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Авторитетный" @@ -501,9 +510,15 @@ msgstr "" "базовых файлов, а также шаблонов резервного копирования, определённых " "пользователем." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Скорость" @@ -542,9 +557,6 @@ msgstr "Кнопки" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "ЦП" - msgid "CPU usage (%)" msgstr "Загрузка ЦП (%)" @@ -575,6 +587,9 @@ msgstr "Проверить" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Контрольная сумма" @@ -913,6 +928,9 @@ msgstr "Требуется домен" msgid "Domain whitelist" msgstr "Белый список доменов" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -989,6 +1007,9 @@ msgstr "Включить <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Включить динамическое обновление оконечной точки HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Включить IPv6-согласование на PPP-соединении" @@ -1019,6 +1040,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Включить эту точку монтирования" @@ -1040,6 +1064,12 @@ msgstr "Режим инкапсуляции" msgid "Encryption" msgstr "Шифрование" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Стирание..." @@ -1080,6 +1110,9 @@ msgstr "Сервер системного журнала" msgid "External system log server port" msgstr "Порт сервера системного журнала" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1197,6 +1230,11 @@ msgstr "Свободно" msgid "Free space" msgstr "Свободное место" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "ГГц" @@ -1254,6 +1292,9 @@ msgstr "Пароль HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Обработчик" @@ -1356,6 +1397,9 @@ msgstr "Длина префикса IPv4" msgid "IPv4-Address" msgstr "IPv4-адрес" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1569,12 +1613,12 @@ msgstr "Требуется Java Script!" msgid "Join Network" msgstr "Подключение к сети" -msgid "Join Network: Settings" -msgstr "Подключение к сети: настройки" - msgid "Join Network: Wireless Scan" msgstr "Подключение к сети: сканирование" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Сохранить настройки" @@ -1690,6 +1734,9 @@ msgstr "Список хостов, поставляющих поддельные msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Слушать только на данном интерфейсе или, если не определено, на всех" @@ -1794,6 +1841,9 @@ msgstr "" msgid "MB/s" msgstr "МБ/с" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "МГц" @@ -2124,6 +2174,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Опции" @@ -2148,6 +2228,12 @@ msgstr "Назначить MAC-адрес" msgid "Override MTU" msgstr "Назначить MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2266,6 +2352,9 @@ msgstr "Пиковая:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2275,6 +2364,9 @@ msgstr "Выполнить перезагрузку" msgid "Perform reset" msgstr "Выполнить сброс" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Скорость:" @@ -2296,12 +2388,6 @@ msgstr "Политика" msgid "Port" msgstr "Порт" -msgid "Port %d" -msgstr "Порт %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "Порт %d нетегирован в нескольких VLANах!" - msgid "Port status:" msgstr "Состояние порта:" @@ -2311,6 +2397,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2318,7 +2407,7 @@ msgstr "" "Предполагать, что узел недоступен после указанного количества ошибок " "получения эхо-пакета LCP, введите 0 для игнорирования ошибок" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2327,6 +2416,9 @@ msgstr "Не позволяет клиентам обмениваться дру msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Беспроводной 802.11b контроллер Prism2/2.5/3" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Продолжить" @@ -2360,9 +2452,15 @@ msgstr "Предоставлять новую сеть" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Псевдо Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Качество" @@ -2504,6 +2602,9 @@ msgstr "Мост-ретранслятор" msgid "Remote IPv4 address" msgstr "Удалённый IPv4-адрес" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Удалить" @@ -2528,6 +2629,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Требуется для некоторых интернет-провайдеров" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2572,6 +2685,12 @@ msgstr "Корневая директория для TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2597,6 +2716,9 @@ msgstr "Проверять файловую систему перед монти msgid "Run filesystem check" msgstr "Проверять файловую систему" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2738,6 +2860,9 @@ msgstr "Время слота" msgid "Software" msgstr "Программное обеспечение" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Некоторые значения полей недопустимы, невозможно сохранить информацию!" @@ -2747,15 +2872,14 @@ msgstr "Извините, запрошенный объект не был най msgid "Sorry, the server encountered an unexpected error." msgstr "Извините, сервер столкнулся с неожиданной ошибкой." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" "К сожалению, автоматическое обновление не поддерживается, новая прошивка " -"должна быть установлена вручную. Обратитесь к вики OpenWrt для получения " -"конкретных инструкций для вашего устройства." +"должна быть установлена вручную. Обратитесь к вики для получения конкретных " +"инструкций для вашего устройства." msgid "Sort" msgstr "Сортировка" @@ -2788,6 +2912,19 @@ msgid "" msgstr "" "Максимальное количество секунд, после которого узлы считаются отключенными" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Укажите закрытый ключ." @@ -2860,6 +2997,13 @@ msgstr "Коммутатор %q" msgid "Switch %q (%s)" msgstr "Коммутатор %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Изменить протокол" @@ -2936,6 +3080,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "Назначенный провайдеру префикс IPv6, обычно заканчивается на <code>::</code>" @@ -3003,6 +3151,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "Длина префикса IPv6 в битах" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3278,12 +3429,12 @@ msgstr "Обновить списки" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" "Загрузите sysupgrade-совместимый образ, чтобы заменить текущую прошивку. " "Установите флажок \"Сохранить настройки\", чтобы сохранить текущую " -"конфигурацию (требуется совместимый с OpenWrt образ прошивки)." +"конфигурацию (требуется совместимый образ прошивки)." msgid "Upload archive..." msgstr "Загрузить архив..." @@ -3369,9 +3520,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "Интерфейс VLAN" - msgid "VLANs on %q" msgstr "VLANы на %q" @@ -3468,6 +3616,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Wi-Fi" @@ -3504,6 +3655,9 @@ msgstr "Выключение беспроводной сети" msgid "Write received DNS requests to syslog" msgstr "Записывать полученные DNS-запросы в системный журнал" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Поддержка XR" @@ -3687,3 +3841,22 @@ msgstr "да" msgid "« Back" msgstr "« Назад" + +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "" +#~ "Если вы не выберите эту опцию, то будет создана дополнительная сеть." + +#~ msgid "Join Network: Settings" +#~ msgstr "Подключение к сети: настройки" + +#~ msgid "CPU" +#~ msgstr "ЦП" + +#~ msgid "Port %d" +#~ msgstr "Порт %d" + +#~ msgid "Port %d is untagged in multiple VLANs!" +#~ msgstr "Порт %d нетегирован в нескольких VLANах!" + +#~ msgid "VLAN Interface" +#~ msgstr "Интерфейс VLAN" diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index a8466d4c9a..694608a2b0 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -8,6 +8,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "" @@ -35,6 +38,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "" @@ -259,6 +265,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -267,9 +276,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" - msgid "Annex" msgstr "" @@ -377,6 +383,9 @@ msgstr "" msgid "Authentication" msgstr "" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "" @@ -470,9 +479,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -511,9 +526,6 @@ msgstr "" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "" @@ -544,6 +556,9 @@ msgstr "" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "" @@ -859,6 +874,9 @@ msgstr "" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -924,6 +942,9 @@ msgstr "" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -954,6 +975,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -975,6 +999,12 @@ msgstr "" msgid "Encryption" msgstr "" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1012,6 +1042,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1128,6 +1161,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1185,6 +1223,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1282,6 +1323,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "" @@ -1480,10 +1524,10 @@ msgstr "" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1599,6 +1643,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1696,6 +1743,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2017,6 +2067,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "" @@ -2041,6 +2121,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2157,6 +2243,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2166,6 +2255,9 @@ msgstr "" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2187,12 +2279,6 @@ msgstr "" msgid "Port" msgstr "" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2202,12 +2288,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2216,6 +2305,9 @@ msgstr "" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "" @@ -2249,9 +2341,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2379,6 +2477,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "" @@ -2403,6 +2504,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2447,6 +2560,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2470,6 +2589,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2608,6 +2730,9 @@ msgstr "" msgid "Software" msgstr "" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2619,8 +2744,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2651,6 +2776,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2720,6 +2858,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2787,6 +2932,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2840,6 +2989,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3080,8 +3232,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3164,9 +3316,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3260,6 +3409,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3296,6 +3448,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index 84421632d8..fac272abe6 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -11,6 +11,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "" @@ -38,6 +41,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Belastning senaste minuten:" @@ -265,6 +271,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -273,9 +282,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" - msgid "Annex" msgstr "" @@ -383,6 +389,9 @@ msgstr "" msgid "Authentication" msgstr "" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "" @@ -476,9 +485,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -517,9 +532,6 @@ msgstr "" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "" @@ -550,6 +562,9 @@ msgstr "" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "" @@ -865,6 +880,9 @@ msgstr "" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -930,6 +948,9 @@ msgstr "" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -960,6 +981,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -981,6 +1005,12 @@ msgstr "" msgid "Encryption" msgstr "" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1018,6 +1048,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1134,6 +1167,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1191,6 +1229,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1288,6 +1329,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "" @@ -1486,10 +1530,10 @@ msgstr "" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1605,6 +1649,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1702,6 +1749,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2023,6 +2073,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "" @@ -2047,6 +2127,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2163,6 +2249,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2172,6 +2261,9 @@ msgstr "" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2193,12 +2285,6 @@ msgstr "" msgid "Port" msgstr "" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2208,12 +2294,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2222,6 +2311,9 @@ msgstr "" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "" @@ -2255,9 +2347,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2385,6 +2483,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "" @@ -2409,6 +2510,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2453,6 +2566,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2476,6 +2595,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2614,6 +2736,9 @@ msgstr "" msgid "Software" msgstr "" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2625,8 +2750,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2657,6 +2782,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2726,6 +2864,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2793,6 +2938,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2846,6 +2995,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3086,8 +3238,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3170,9 +3322,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3266,6 +3415,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3302,6 +3454,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "" diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index 35181ee222..42eb60b25a 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -1,6 +1,9 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "" @@ -28,6 +31,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "" @@ -252,6 +258,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -260,9 +269,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" - msgid "Annex" msgstr "" @@ -370,6 +376,9 @@ msgstr "" msgid "Authentication" msgstr "" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "" @@ -463,9 +472,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -504,9 +519,6 @@ msgstr "" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "" @@ -537,6 +549,9 @@ msgstr "" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "" @@ -852,6 +867,9 @@ msgstr "" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -917,6 +935,9 @@ msgstr "" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -947,6 +968,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -968,6 +992,12 @@ msgstr "" msgid "Encryption" msgstr "" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1005,6 +1035,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1121,6 +1154,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1178,6 +1216,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1275,6 +1316,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "" @@ -1473,10 +1517,10 @@ msgstr "" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1592,6 +1636,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1689,6 +1736,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2010,6 +2060,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "" @@ -2034,6 +2114,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2150,6 +2236,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2159,6 +2248,9 @@ msgstr "" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2180,12 +2272,6 @@ msgstr "" msgid "Port" msgstr "" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2195,12 +2281,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2209,6 +2298,9 @@ msgstr "" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "" @@ -2242,9 +2334,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2372,6 +2470,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "" @@ -2396,6 +2497,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2440,6 +2553,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2463,6 +2582,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2601,6 +2723,9 @@ msgstr "" msgid "Software" msgstr "" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2612,8 +2737,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2644,6 +2769,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2713,6 +2851,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2780,6 +2925,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2833,6 +2982,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3073,8 +3225,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3157,9 +3309,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3253,6 +3402,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3289,6 +3441,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index ca993564c1..5a3d2f5121 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -11,6 +11,9 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d dakika gösteriliyor, %d saniye aralıklı)" @@ -38,6 +41,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "1 Dakikalık Yük:" @@ -272,6 +278,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -280,9 +289,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" - msgid "Annex" msgstr "" @@ -390,6 +396,9 @@ msgstr "" msgid "Authentication" msgstr "Kimlik doğrulama" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Yetkilendirme" @@ -483,9 +492,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -524,9 +539,6 @@ msgstr "" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "" @@ -557,6 +569,9 @@ msgstr "" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "" @@ -872,6 +887,9 @@ msgstr "" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -937,6 +955,9 @@ msgstr "" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -967,6 +988,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -988,6 +1012,12 @@ msgstr "" msgid "Encryption" msgstr "" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1025,6 +1055,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1141,6 +1174,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1198,6 +1236,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1295,6 +1336,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "" @@ -1493,10 +1537,10 @@ msgstr "" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1612,6 +1656,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1709,6 +1756,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2030,6 +2080,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "" @@ -2054,6 +2134,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2170,6 +2256,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2179,6 +2268,9 @@ msgstr "" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2200,12 +2292,6 @@ msgstr "" msgid "Port" msgstr "" -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2215,12 +2301,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2229,6 +2318,9 @@ msgstr "" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "" @@ -2262,9 +2354,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2392,6 +2490,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "" @@ -2416,6 +2517,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2460,6 +2573,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2483,6 +2602,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2621,6 +2743,9 @@ msgstr "" msgid "Software" msgstr "" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2632,8 +2757,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2664,6 +2789,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2733,6 +2871,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2800,6 +2945,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2853,6 +3002,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3093,8 +3245,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3177,9 +3329,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3273,6 +3422,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3309,6 +3461,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 194f67c78e..cb790520cf 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -12,6 +12,9 @@ msgstr "" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d-хвилинне вікно, %d-секундний інтервал)" @@ -39,6 +42,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "Навантаження за 1 хвилину:" @@ -296,6 +302,9 @@ msgstr "" "Дозволити відповіді від клієнта на сервер у діапазоні 127.0.0.0/8, " "наприклад, для RBL-послуг" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -304,9 +313,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "Якщо ви залишите це невибраним, буде створена додаткова мережа." - msgid "Annex" msgstr "" @@ -414,6 +420,9 @@ msgstr "" msgid "Authentication" msgstr "Автентифікація" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Надійний" @@ -510,9 +519,15 @@ msgstr "" "складається із позначених opkg змінених файлів конфігурації, невідокремних " "базових файлів, та файлів за користувацькими шаблонами резервного копіювання." +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "Швидкість передачі даних" @@ -551,9 +566,6 @@ msgstr "Кнопки" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "ЦП" - msgid "CPU usage (%)" msgstr "Завантаження ЦП, %" @@ -584,6 +596,9 @@ msgstr "Перевірити" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Контрольна сума" @@ -924,6 +939,9 @@ msgstr "Потрібен домен" msgid "Domain whitelist" msgstr "\"Білий список\" доменів" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -998,6 +1016,9 @@ msgstr "Увімкнути <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "Увімкнути динамічне оновлення кінцевої точки HE.net" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "Увімкнути узгодження IPv6 для PPP-з'єднань" @@ -1028,6 +1049,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "Увімкнути це монтування" @@ -1050,6 +1074,12 @@ msgstr "Режим інкапсуляції" msgid "Encryption" msgstr "Шифрування" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "Видалення..." @@ -1088,6 +1118,9 @@ msgstr "Зовнішній сервер системного журналу" msgid "External system log server port" msgstr "Порт зовнішнього сервера системного журналу" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1204,6 +1237,11 @@ msgstr "Вільно" msgid "Free space" msgstr "Вільне місце" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "ГГц" @@ -1261,6 +1299,9 @@ msgstr "Пароль HE.net" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "Обробник" @@ -1364,6 +1405,9 @@ msgstr "Довжина префікса IPv4" msgid "IPv4-Address" msgstr "IPv4-адреса" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1576,12 +1620,12 @@ msgstr "Потрібен Java Script!" msgid "Join Network" msgstr "Підключення до мережі" -msgid "Join Network: Settings" -msgstr "Підключення до мережі: Настройки" - msgid "Join Network: Wireless Scan" msgstr "Підключення до мережі: Сканування бездротових мереж" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "Зберегти настройки" @@ -1697,6 +1741,9 @@ msgstr "Список доменів, які підтримують резуль msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Прослуховувати тільки на цьому інтерфейсі, або на всіх (якщо <em>не " @@ -1803,6 +1850,9 @@ msgstr "" msgid "MB/s" msgstr "MБ/с" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "МГц" @@ -2132,6 +2182,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Опції" @@ -2156,6 +2236,12 @@ msgstr "Перевизначити MAC-адресу" msgid "Override MTU" msgstr "Перевизначити MTU" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2277,6 +2363,9 @@ msgstr "Пік:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2286,6 +2375,9 @@ msgstr "Виконати перезавантаження" msgid "Perform reset" msgstr "Відновити" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "Фізична швидкість:" @@ -2307,12 +2399,6 @@ msgstr "Політика" msgid "Port" msgstr "Порт" -msgid "Port %d" -msgstr "Порт %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "Порт %d нетегований у кількох VLAN-ах!" - msgid "Port status:" msgstr "Статус порту:" @@ -2322,6 +2408,9 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" @@ -2329,7 +2418,7 @@ msgstr "" "Вважати вузол недоступним після визначеної кількості невдач отримання ехо-" "пакета LCP, використовуйте 0, щоб ігнорувати невдачі" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2338,6 +2427,9 @@ msgstr "Запобігає зв'язкам клієнт-клієнт" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Бездротовий 802.11b контролер Prism2/2.5/3" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Продовжити" @@ -2371,9 +2463,15 @@ msgstr "Постачити нову мережу" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Псевдо Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "Якість" @@ -2517,6 +2615,9 @@ msgstr "Міст-ретранслятор" msgid "Remote IPv4 address" msgstr "Віддалена адреса IPv4" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Видалити" @@ -2541,6 +2642,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Потрібно для деяких провайдерів, наприклад, Charter із DOCSIS 3" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2585,6 +2698,12 @@ msgstr "Кореневий каталог для файлів TFTP" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2610,6 +2729,9 @@ msgstr "Виконати перевірку файлової системи пе msgid "Run filesystem check" msgstr "Виконати перевірку файлової системи" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2751,6 +2873,9 @@ msgstr "Час слота" msgid "Software" msgstr "Програмне забезпечення" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "Деякі поля є неприпустимими, неможливо зберегти значення!" @@ -2760,15 +2885,14 @@ msgstr "На жаль, об'єкт, який ви просили, не знай msgid "Sorry, the server encountered an unexpected error." msgstr "На жаль, на сервері сталася неочікувана помилка." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" "На жаль, автоматичне оновлення системи не підтримується. Новий образ " -"прошивки повинен бути залитий вручну. Зверніться до OpenWrt Wiki за " -"інструкцією з інсталяції для конкретного пристрою." +"прошивки повинен бути залитий вручну. Зверніться до Wiki за інструкцією з " +"інсталяції для конкретного пристрою." msgid "Sort" msgstr "Сортування" @@ -2802,6 +2926,19 @@ msgstr "" "Визначає максимальний час (секунди), після якого вважається, що вузли " "\"мертві\"" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "Вкажіть тут секретний ключ шифрування." @@ -2875,6 +3012,13 @@ msgstr "Комутатор %q" msgid "Switch %q (%s)" msgstr "Комутатор %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "Протокол комутатора" @@ -2951,6 +3095,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "Призначений провайдеру IPv6-префікс, зазвичай закінчується на <code>::</code>" @@ -3016,6 +3164,9 @@ msgstr "Довжина IPv4-префікса в бітах, решта вико msgid "The length of the IPv6 prefix in bits" msgstr "Довжина IPv6-префікса в бітах" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3294,12 +3445,12 @@ msgstr "Оновити списки..." msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" "Відвантажити sysupgrade-сумісний образ, щоб замінити поточну прошивку. Для " "збереження поточної конфігурації встановіть прапорець \"Зберегти настройки" -"\" (потрібен OpenWrt-сумісний образ прошивки)." +"\" (потрібен сумісний образ прошивки)." msgid "Upload archive..." msgstr "Відвантажити архів..." @@ -3385,9 +3536,6 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "VLAN-інтерфейс" - msgid "VLANs on %q" msgstr "VLAN на %q" @@ -3483,6 +3631,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "Бездротові мережі" @@ -3519,6 +3670,9 @@ msgstr "Бездротова мережа припинила роботу" msgid "Write received DNS requests to syslog" msgstr "Записувати отримані DNS-запити до системного журналу" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Підтримка XR" @@ -3702,3 +3856,21 @@ msgstr "так" msgid "« Back" msgstr "« Назад" + +#~ msgid "An additional network will be created if you leave this unchecked." +#~ msgstr "Якщо ви залишите це невибраним, буде створена додаткова мережа." + +#~ msgid "Join Network: Settings" +#~ msgstr "Підключення до мережі: Настройки" + +#~ msgid "CPU" +#~ msgstr "ЦП" + +#~ msgid "Port %d" +#~ msgstr "Порт %d" + +#~ msgid "Port %d is untagged in multiple VLANs!" +#~ msgstr "Порт %d нетегований у кількох VLAN-ах!" + +#~ msgid "VLAN Interface" +#~ msgstr "VLAN-інтерфейс" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index dbebe177f2..178bf30ac3 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -12,6 +12,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "" @@ -40,6 +43,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "" @@ -266,6 +272,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -274,9 +283,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "" - msgid "Annex" msgstr "" @@ -384,6 +390,9 @@ msgstr "" msgid "Authentication" msgstr "Xác thực" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "Authoritative" @@ -477,9 +486,15 @@ msgid "" "defined backup patterns." msgstr "" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "" @@ -518,9 +533,6 @@ msgstr "" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "" - msgid "CPU usage (%)" msgstr "CPU usage (%)" @@ -551,6 +563,9 @@ msgstr "" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "Checksum" @@ -872,6 +887,9 @@ msgstr "Domain yêu cầu" msgid "Domain whitelist" msgstr "" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -942,6 +960,9 @@ msgstr "Kích hoạt <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "" @@ -972,6 +993,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "" @@ -993,6 +1017,12 @@ msgstr "" msgid "Encryption" msgstr "Encryption" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "" @@ -1030,6 +1060,9 @@ msgstr "" msgid "External system log server port" msgstr "" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1146,6 +1179,11 @@ msgstr "" msgid "Free space" msgstr "" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "" @@ -1203,6 +1241,9 @@ msgstr "" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "" @@ -1302,6 +1343,9 @@ msgstr "" msgid "IPv4-Address" msgstr "" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6" @@ -1508,10 +1552,10 @@ msgstr "" msgid "Join Network" msgstr "" -msgid "Join Network: Settings" +msgid "Join Network: Wireless Scan" msgstr "" -msgid "Join Network: Wireless Scan" +msgid "Joining Network: %q" msgstr "" msgid "Keep settings" @@ -1627,6 +1671,9 @@ msgstr "" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -1724,6 +1771,9 @@ msgstr "" msgid "MB/s" msgstr "" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "" @@ -2053,6 +2103,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "Lựa chọn " @@ -2077,6 +2157,12 @@ msgstr "" msgid "Override MTU" msgstr "" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2193,6 +2279,9 @@ msgstr "" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2202,6 +2291,9 @@ msgstr "Tiến hành reboot" msgid "Perform reset" msgstr "" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "" @@ -2223,12 +2315,6 @@ msgstr "Chính sách" msgid "Port" msgstr "Cửa " -msgid "Port %d" -msgstr "" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "" - msgid "Port status:" msgstr "" @@ -2238,12 +2324,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2252,6 +2341,9 @@ msgstr "Ngăn chặn giao tiếp giữa client-và-client" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "Proceed" @@ -2285,9 +2377,15 @@ msgstr "" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "" @@ -2417,6 +2515,9 @@ msgstr "" msgid "Remote IPv4 address" msgstr "" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "Loại bỏ" @@ -2441,6 +2542,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2485,6 +2598,12 @@ msgstr "" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2510,6 +2629,9 @@ msgstr "" msgid "Run filesystem check" msgstr "" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2648,6 +2770,9 @@ msgstr "" msgid "Software" msgstr "Phần mềm" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "" @@ -2659,8 +2784,8 @@ msgstr "" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" msgid "Sort" @@ -2691,6 +2816,19 @@ msgid "" "dead" msgstr "" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "" @@ -2760,6 +2898,13 @@ msgstr "" msgid "Switch %q (%s)" msgstr "" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "" @@ -2827,6 +2972,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" @@ -2884,6 +3033,9 @@ msgstr "" msgid "The length of the IPv6 prefix in bits" msgstr "" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3135,8 +3287,8 @@ msgstr "" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" msgid "Upload archive..." @@ -3219,9 +3371,6 @@ msgstr "" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "" - msgid "VLANs on %q" msgstr "" @@ -3315,6 +3464,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "" @@ -3351,6 +3503,9 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "Hỗ trợ XR" diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po index 5d5d558af6..db02643dea 100644 --- a/modules/luci-base/po/zh-cn/base.po +++ b/modules/luci-base/po/zh-cn/base.po @@ -3,18 +3,21 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-12-21 23:08+0200\n" -"PO-Revision-Date: 2015-12-20 13:14+0800\n" -"Last-Translator: GuoGuo <gch981213@gmail.com>\n" +"PO-Revision-Date: 2017-01-07 21:46+0800\n" +"Last-Translator: Hsing-Wang Liao <kuoruan@gmail.com>\n" "Language: zh_CN\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 1.8.5\n" +"X-Generator: Poedit 1.8.11\n" "Language-Team: \n" +msgid "%s is untagged in multiple VLANs!" +msgstr "%s 在多个 VLAN 中未标记" + msgid "(%d minute window, %d second interval)" -msgstr "(%d分钟信息,%d秒刷新)" +msgstr "(%d 分钟信息,%d 秒刷新)" msgid "(%s available)" msgstr "(%s 可用)" @@ -40,6 +43,9 @@ msgstr "-- 根据设备匹配 --" msgid "-- match by label --" msgstr "-- 根据标签匹配 --" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "1分钟负载:" @@ -47,91 +53,89 @@ msgid "15 Minute Load:" msgstr "15分钟负载:" msgid "464XLAT (CLAT)" -msgstr "" +msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "5分钟负载:" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" +msgstr "<abbr title=\"基本服务集标识符\">BSSID</abbr>" msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" -msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 查询端口" +msgstr "<abbr title=\"域名服务系统\">DNS</abbr> 查询端口" msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" -msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 服务器端口" +msgstr "<abbr title=\"域名服务系统\">DNS</abbr> 服务器端口" msgid "" "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " "order of the resolvfile" -msgstr "将会按照指定的顺序查询<abbr title=\"Domain Name System\">DNS</abbr>" +msgstr "将会按照指定的顺序查询<abbr title=\"域名服务系统\">DNS</abbr>" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "<abbr title=\"扩展服务集标识符\">ESSID</abbr>" msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" -msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-地址" +msgstr "<abbr title=\"互联网协议第4版\">IPv4</abbr>-地址" msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway" -msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-网关" +msgstr "<abbr title=\"互联网协议第4版\">IPv4</abbr>-网关" msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask" -msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-子网掩码" +msgstr "<abbr title=\"互联网协议第4版\">IPv4</abbr>-子网掩码" msgid "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network " "(CIDR)" msgstr "" -"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-地址或超网() (<abbr " -"title=\"无类别域间路由\">CIDR</abbr>)" +"<abbr title=\"互联网协议第6版\">IPv6</abbr>-地址或超网(<abbr title=\"无类别域" +"间路由\">CIDR</abbr>)" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-网关" +msgstr "<abbr title=\"互联网协议第6版\">IPv6</abbr>-网关" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" -msgstr "" -"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-后缀(十六进制)" +msgstr "<abbr title=\"互联网协议第6版\">IPv6</abbr>-后缀(十六进制)" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" -msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>配置" +msgstr "<abbr title=\"发光二极管\">LED</abbr>配置" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>名称" +msgstr "<abbr title=\"发光二极管\">LED</abbr>名称" msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" -msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-地址" +msgstr "<abbr title=\"介质访问控制\">MAC</abbr>-地址" msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" -msgstr "" -"最大<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>分配数量" +msgstr "最大<abbr title=\"动态主机配置协议\">DHCP</abbr>分配数量" msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" -msgstr "最大<abbr title=\"DNS扩展名\">EDNS0</abbr>数据包大小" +msgstr "最大<abbr title=\"DNS扩展名机制\">EDNS0</abbr>数据包大小" msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" -msgstr "<abbr title=\"maximal\">最大</abbr>并发查询数" +msgstr "最大并发查询数" msgid "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>" msgstr "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>" msgid "A43C + J43 + A43" -msgstr "" +msgstr "A43C + J43 + A43" msgid "A43C + J43 + A43 + V43" -msgstr "" +msgstr "A43C + J43 + A43 + V43" msgid "ADSL" msgstr "ADSL" msgid "AICCU (SIXXS)" -msgstr "" +msgstr "AICCU (SIXXS)" msgid "ANSI T1.413" -msgstr "" +msgstr "ANSI T1.413" msgid "APN" msgstr "APN" @@ -143,7 +147,7 @@ msgid "ARP retry threshold" msgstr "ARP重试阈值" msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" +msgstr "ATM(异步传输模式)" msgid "ATM Bridges" msgstr "ATM桥接" @@ -166,10 +170,10 @@ msgid "ATM device number" msgstr "ATM设备号码" msgid "ATU-C System Vendor ID" -msgstr "" +msgstr "ATU-C系统供应商ID" msgid "AYIYA" -msgstr "" +msgstr "AYIYA" msgid "Access Concentrator" msgstr "接入集中器" @@ -187,10 +191,10 @@ msgid "Activate this network" msgstr "激活此网络" msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" -msgstr "活动的<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-链路" +msgstr "活动的<abbr title=\"互联网协议第4版\">IPv4</abbr>-链路" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" -msgstr "活动的<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-链路" +msgstr "活动的<abbr title=\"互联网协议第6版\">IPv6</abbr>-链路" msgid "Active Connections" msgstr "活动连接" @@ -217,7 +221,7 @@ msgid "Additional Hosts files" msgstr "额外的HOSTS文件" msgid "Additional servers file" -msgstr "" +msgstr "额外的SERVERS文件" msgid "Address" msgstr "地址" @@ -232,7 +236,7 @@ msgid "Advanced Settings" msgstr "高级设置" msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" +msgstr "总发射功率(ACTATP)" msgid "Alert" msgstr "警戒" @@ -240,13 +244,13 @@ msgstr "警戒" msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address" -msgstr "" +msgstr "从最低可用地址开始顺序分配IP地址" msgid "Allocate IP sequentially" -msgstr "" +msgstr "顺序分配IP" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" -msgstr "允许<abbr title=\"Secure Shell\">SSH</abbr>密码验证" +msgstr "允许<abbr title=\"安全外壳协议\">SSH</abbr>密码验证" msgid "Allow all except listed" msgstr "仅允许列表外" @@ -261,7 +265,7 @@ msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "允许远程主机连接到本地SSH转发端口" msgid "Allow root logins with password" -msgstr "root权限登录" +msgstr "允许root用户凭密码登录" msgid "Allow the <em>root</em> user to login with password" msgstr "允许<em>root</em>用户凭密码登录" @@ -270,66 +274,66 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "允许127.0.0.0/8回环范围内的上行响应,例如:RBL服务" +msgid "Allowed IPs" +msgstr "允许的IP" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" msgstr "" "也请查看SIXXS上的<a href=\"https://www.sixxs.net/faq/connectivity/?" -"faq=comparison\">Tunneling Comparison</a> " +"faq=comparison\">隧道对比</a>" msgid "Always announce default router" msgstr "总是广播默认路由" -msgid "An additional network will be created if you leave this unchecked." -msgstr "取消选中将会另外创建一个新网络,而不会覆盖当前网络设置" - msgid "Annex" -msgstr "" +msgstr "Annex" msgid "Annex A + L + M (all)" -msgstr "" +msgstr "Annex A + L + M (全部)" msgid "Annex A G.992.1" -msgstr "" +msgstr "Annex A G.992.1" msgid "Annex A G.992.2" -msgstr "" +msgstr "Annex A G.992.2" msgid "Annex A G.992.3" -msgstr "" +msgstr "Annex A G.992.3" msgid "Annex A G.992.5" -msgstr "" +msgstr "Annex A G.992.5" msgid "Annex B (all)" -msgstr "" +msgstr "Annex B (全部)" msgid "Annex B G.992.1" -msgstr "" +msgstr "Annex B G.992.1" msgid "Annex B G.992.3" -msgstr "" +msgstr "Annex B G.992.3" msgid "Annex B G.992.5" -msgstr "" +msgstr "Annex B G.992.5" msgid "Annex J (all)" -msgstr "" +msgstr "Annex J (全部)" msgid "Annex L G.992.3 POTS 1" -msgstr "" +msgstr "Annex L G.992.3 POTS 1" msgid "Annex M (all)" -msgstr "" +msgstr "Annex M (全部)" msgid "Annex M G.992.3" -msgstr "" +msgstr "Annex M G.992.3" msgid "Annex M G.992.5" -msgstr "" +msgstr "Annex M G.992.5" msgid "Announce as default router even if no public prefix is available." -msgstr "即使没有可用的公共前缀也广播默认路由" +msgstr "即使没有可用的公共前缀也广播默认路由。" msgid "Announced DNS domains" msgstr "广播的DNS域名" @@ -338,7 +342,7 @@ msgid "Announced DNS servers" msgstr "广播的DNS服务器" msgid "Anonymous Identity" -msgstr "" +msgstr "匿名身份" msgid "Anonymous Mount" msgstr "自动挂载未配置的磁盘分区" @@ -373,7 +377,7 @@ msgstr "分配接口..." msgid "" "Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" +msgstr "指定此接口使用的十六进制子ID前缀部分" msgid "Associated Stations" msgstr "已连接站点" @@ -382,7 +386,7 @@ msgid "Atheros 802.11%s Wireless Controller" msgstr "Qualcomm/Atheros 802.11%s 无线网卡" msgid "Auth Group" -msgstr "" +msgstr "认证组" msgid "AuthGroup" msgstr "认证组" @@ -390,6 +394,9 @@ msgstr "认证组" msgid "Authentication" msgstr "认证" +msgid "Authentication Type" +msgstr "认证类型" + msgid "Authoritative" msgstr "授权的唯一DHCP服务器" @@ -409,10 +416,10 @@ msgid "Automatically check filesystem for errors before mounting" msgstr "在挂载前自动检查文件系统错误" msgid "Automatically mount filesystems on hotplug" -msgstr "通过hotplug自动挂载磁盘" +msgstr "通过Hotplug自动挂载磁盘" msgid "Automatically mount swap on hotplug" -msgstr "通过hotplug自动挂载Swap分区" +msgstr "通过Hotplug自动挂载Swap分区" msgid "Automount Filesystem" msgstr "自动挂载磁盘" @@ -430,13 +437,13 @@ msgid "Average:" msgstr "平均:" msgid "B43 + B43C" -msgstr "" +msgstr "B43 + B43C" msgid "B43 + B43C + V43" -msgstr "" +msgstr "B43 + B43C + V43" msgid "BR / DMR / AFTR" -msgstr "" +msgstr "BR / DMR / AFTR" msgid "BSSID" msgstr "BSSID" @@ -485,8 +492,14 @@ msgstr "" "下面是待备份的文件清单。包含了更改的配置文件、必要的基础文件和用户自定义的需" "备份文件。" +msgid "Bind interface" +msgstr "绑定接口" + msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "" +msgstr "仅绑定到特定接口,而不是全部地址。" + +msgid "Bind the tunnel to this interface (optional)." +msgstr "将隧道绑定到此接口(可选)。" msgid "Bitrate" msgstr "传输速率" @@ -524,10 +537,7 @@ msgid "Buttons" msgstr "按键" msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "CA证书.如果留空的话证书将在第一次连接时被保存." - -msgid "CPU" -msgstr "CPU" +msgstr "CA证书,如果留空的话证书将在第一次连接时被保存。" msgid "CPU usage (%)" msgstr "CPU使用率(%)" @@ -559,6 +569,9 @@ msgstr "检查" msgid "Check fileystems before mount" msgstr "在挂载前检查文件系统" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "校验值" @@ -578,7 +591,7 @@ msgid "Cipher" msgstr "算法" msgid "Cisco UDP encapsulation" -msgstr "" +msgstr "Cisco UDP封装" msgid "" "Click \"Generate archive\" to download a tar archive of the current " @@ -684,7 +697,7 @@ msgstr "自定义的软件源" msgid "" "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" "\">LED</abbr>s if possible." -msgstr "自定义<abbr title=\"Light Emitting Diode\">LED</abbr>的活动状态。" +msgstr "自定义<abbr title=\"发光二极管\">LED</abbr>的活动状态。" msgid "DHCP Leases" msgstr "DHCP分配" @@ -720,34 +733,34 @@ msgid "DNS forwardings" msgstr "DNS转发" msgid "DNS-Label / FQDN" -msgstr "" +msgstr "DNS-Label / FQDN" msgid "DNSSEC" -msgstr "" +msgstr "DNSSEC" msgid "DNSSEC check unsigned" -msgstr "" +msgstr "DNSSEC未签名检查" msgid "DPD Idle Timeout" -msgstr "" +msgstr "DPD空闲超时" msgid "DS-Lite AFTR address" -msgstr "" +msgstr "DS-Lite AFTR地址" msgid "DSL" -msgstr "" +msgstr "DSL" msgid "DSL Status" -msgstr "" +msgstr "DSL状态" msgid "DSL line mode" -msgstr "" +msgstr "DSL线路模式" msgid "DUID" -msgstr "DUID(DHCP唯一标识符)" +msgstr "DUID (DHCP唯一标识符)" msgid "Data Rate" -msgstr "" +msgstr "数据速率" msgid "Debug" msgstr "调试" @@ -759,7 +772,7 @@ msgid "Default gateway" msgstr "默认网关" msgid "Default is stateless + stateful" -msgstr "" +msgstr "默认是无状态 + 有状态" msgid "Default route" msgstr "默认路由" @@ -820,17 +833,16 @@ msgstr "禁用" msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." -msgstr "" -"禁用本接口的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>。" +msgstr "禁用本接口的<abbr title=\"动态主机配置协议\">DHCP</abbr>。" msgid "Disable DNS setup" msgstr "停用DNS设定" msgid "Disable Encryption" -msgstr "" +msgstr "禁用加密" msgid "Disable HW-Beacon timer" -msgstr "停用 HW-Beacon 计时器" +msgstr "停用HW-Beacon计时器" msgid "Disabled" msgstr "禁用" @@ -878,6 +890,9 @@ msgstr "忽略空域名解析" msgid "Domain whitelist" msgstr "域名白名单" +msgid "Don't Fragment" +msgstr "禁止碎片" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -896,14 +911,14 @@ msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" msgstr "" -"Dropbear提供了集成的<abbr title=\"Secure Copy\">SCP</abbr>服务器和基于<abbr " -"title=\"Secure Shell\">SSH</abbr>的shell访问" +"Dropbear提供了集成的<abbr title=\"安全复制\">SCP</abbr>服务器和基于<abbr " +"title=\"安全外壳协议\">SSH</abbr>的Shell访问" msgid "Dual-Stack Lite (RFC6333)" -msgstr "" +msgstr "Dual-Stack Lite (RFC6333)" msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" -msgstr "动态<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" +msgstr "动态<abbr title=\"动态主机配置协议\">DHCP</abbr>" msgid "Dynamic tunnel" msgstr "动态隧道" @@ -914,10 +929,10 @@ msgid "" msgstr "动态分配DHCP地址。如果禁用,则只能为静态租用表中的客户端提供网络服务。" msgid "EA-bits length" -msgstr "" +msgstr "EA位长度" msgid "EAP-Method" -msgstr "EAP-Method" +msgstr "EAP类型" msgid "Edit" msgstr "修改" @@ -940,11 +955,14 @@ msgid "Enable" msgstr "启用" msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" -msgstr "开启<abbr title=\"Spanning Tree Protocol\">STP</abbr>" +msgstr "开启<abbr title=\"生成树协议\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "启用HE.net动态终端更新" +msgid "Enable IPv6 negotiation" +msgstr "启用IPv6协商" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "在PPP链路上启用IPv6协商" @@ -955,7 +973,7 @@ msgid "Enable NTP client" msgstr "启用NTP客户端" msgid "Enable Single DES" -msgstr "" +msgstr "启用单个DES" msgid "Enable TFTP server" msgstr "启用TFTP服务器" @@ -964,7 +982,7 @@ msgid "Enable VLAN functionality" msgstr "启用VLAN" msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "启用WPS按键配置.要求使用WPA(2)-PSK" +msgstr "启用WPS按键配置,要求使用WPA(2)-PSK" msgid "Enable learning and aging" msgstr "启用智能交换学习" @@ -975,6 +993,9 @@ msgstr "启用流入数据包镜像" msgid "Enable mirroring of outgoing packets" msgstr "启用流出数据包镜像" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "启用封装数据包的DF(禁止碎片)标志。" + msgid "Enable this mount" msgstr "启用挂载点" @@ -996,6 +1017,12 @@ msgstr "封装模式" msgid "Encryption" msgstr "加密" +msgid "Endpoint Host" +msgstr "端点主机" + +msgid "Endpoint Port" +msgstr "端点端口" + msgid "Erasing..." msgstr "擦除中..." @@ -1003,7 +1030,7 @@ msgid "Error" msgstr "错误" msgid "Errored seconds (ES)" -msgstr "" +msgstr "错误秒数(ES)" msgid "Ethernet Adapter" msgstr "以太网适配器" @@ -1012,7 +1039,7 @@ msgid "Ethernet Switch" msgstr "以太网交换机" msgid "Exclude interfaces" -msgstr "" +msgstr "排除接口" msgid "Expand hosts" msgstr "扩展HOSTS文件中的主机后缀" @@ -1020,19 +1047,21 @@ msgstr "扩展HOSTS文件中的主机后缀" msgid "Expires" msgstr "到期时间" -#, fuzzy msgid "" "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." -msgstr "地址租期,最小2分钟(<code>2m</code>)。" +msgstr "租用地址的到期时间,最短2分钟(<code>2m</code>)。" msgid "External" -msgstr "" +msgstr "远程" msgid "External system log server" -msgstr "远程log服务器" +msgstr "远程日志服务器" msgid "External system log server port" -msgstr "远程log服务器端口" +msgstr "远程日志服务器端口" + +msgid "External system log server protocol" +msgstr "远程日志服务器协议" msgid "Extra SSH command options" msgstr "额外的SSH命令选项" @@ -1084,7 +1113,7 @@ msgid "Firewall Status" msgstr "防火墙状态" msgid "Firmware File" -msgstr "" +msgstr "固件文件" msgid "Firmware Version" msgstr "固件版本" @@ -1123,16 +1152,16 @@ msgid "Force TKIP and CCMP (AES)" msgstr "TKIP和CCMP(AES)混合加密" msgid "Force use of NAT-T" -msgstr "" +msgstr "强制使用NAT-T" msgid "Form token mismatch" -msgstr "" +msgstr "表单令牌不匹配" msgid "Forward DHCP traffic" msgstr "转发DHCP数据包" msgid "Forward Error Correction Seconds (FECS)" -msgstr "" +msgstr "前向纠错秒数(FECS)" msgid "Forward broadcast traffic" msgstr "转发广播数据包" @@ -1152,6 +1181,13 @@ msgstr "空闲数" msgid "Free space" msgstr "空闲空间" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" +"有关WireGuard接口和Peer的更多信息:<a href=\"http://wireguard.io\">wireguard." +"io</a>" + msgid "GHz" msgstr "GHz" @@ -1171,7 +1207,7 @@ msgid "General Setup" msgstr "基本设置" msgid "General options for opkg" -msgstr "opkg基础配置" +msgstr "Opkg基础配置" msgid "Generate Config" msgstr "生成配置" @@ -1198,7 +1234,7 @@ msgid "Go to relevant configuration page" msgstr "跳转到相关的配置页面" msgid "Group Password" -msgstr "" +msgstr "组密码" msgid "Guest" msgstr "访客" @@ -1209,6 +1245,9 @@ msgstr "HE.net密码" msgid "HE.net username" msgstr "HE.net用户名" +msgid "HT mode (802.11n)" +msgstr "HT模式(802.11n)" + msgid "Handler" msgstr "处理程序" @@ -1216,7 +1255,7 @@ msgid "Hang Up" msgstr "挂起" msgid "Header Error Code Errors (HEC)" -msgstr "" +msgstr "头错误代码错误(HEC)" msgid "Heartbeat" msgstr "心跳" @@ -1235,10 +1274,10 @@ msgid "Hermes 802.11b Wireless Controller" msgstr "Hermes 802.11b 无线网卡" msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -msgstr "隐藏<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "隐藏<abbr title=\"扩展服务集标识符\">ESSID</abbr>" msgid "Host" -msgstr "" +msgstr "主机" msgid "Host entries" msgstr "主机目录" @@ -1262,7 +1301,7 @@ msgid "Hybrid" msgstr "混合" msgid "IKE DH Group" -msgstr "" +msgstr "IKE DH组" msgid "IP address" msgstr "IP地址" @@ -1306,6 +1345,9 @@ msgstr "IPv4地址前缀长度" msgid "IPv4-Address" msgstr "IPv4-地址" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "IPv4-in-IPv4 (RFC2003)" + msgid "IPv6" msgstr "IPv6" @@ -1331,7 +1373,7 @@ msgid "IPv6 address delegated to the local tunnel endpoint (optional)" msgstr "绑定到本地隧道终点的IPv6地址(可选)" msgid "IPv6 assignment hint" -msgstr "" +msgstr "IPv6分配提示" msgid "IPv6 assignment length" msgstr "IPv6分配长度" @@ -1367,10 +1409,10 @@ msgid "Identity" msgstr "鉴权" msgid "If checked, 1DES is enaled" -msgstr "" +msgstr "选中以启用1DES" msgid "If checked, encryption is disabled" -msgstr "" +msgstr "选中以禁用加密" msgid "" "If specified, mount the device by its UUID instead of a fixed device node" @@ -1414,12 +1456,14 @@ 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 "" +"为了防止对系统的未授权访问,您的请求已被阻止。点击下面的 “继续 »” 来返回上一" +"页。" msgid "Inactivity timeout" msgstr "活动超时" msgid "Inbound:" -msgstr "入站:" +msgstr "入站:" msgid "Info" msgstr "信息" @@ -1434,10 +1478,10 @@ msgid "Install" msgstr "安装" msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "安装iputils-traceroute6以进行IPv6 traceroute" +msgstr "安装 iputils-traceroute6 以进行IPv6 traceroute" msgid "Install package %q" -msgstr "安装软件包%q" +msgstr "安装软件包 %q" msgid "Install protocol extensions..." msgstr "安装扩展协议..." @@ -1461,10 +1505,10 @@ msgid "Interface is shutting down..." msgstr "正在关闭接口..." msgid "Interface name" -msgstr "" +msgstr "接口名称" msgid "Interface not present or not connected yet." -msgstr "接口不存在或未连接" +msgstr "接口不存在或未连接。" msgid "Interface reconnected" msgstr "接口已重新连接" @@ -1476,7 +1520,7 @@ msgid "Interfaces" msgstr "接口" msgid "Internal" -msgstr "" +msgstr "内部" msgid "Internal Server Error" msgstr "内部服务器错误" @@ -1485,19 +1529,18 @@ msgid "Invalid" msgstr "无效" msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "无效的VLAN ID! 只有 %d 和 %d 之间的ID有效。" +msgstr "无效的VLAN ID!只有 %d 和 %d 之间的ID有效。" msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "无效的VLAN ID! 只允许唯一的ID。" +msgstr "无效的VLAN ID!只允许唯一的ID。" msgid "Invalid username and/or password! Please try again." -msgstr "无效的用户名和/或密码! 请重试。" +msgstr "无效的用户名和/或密码!请重试。" -#, 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 "将要刷新的固件与本路由器不兼容,请重新验证固件文件。" +msgstr "你尝试刷写的固件与本路由器不兼容,请重新验证固件文件。" msgid "Java Script required!" msgstr "需要Java Script!" @@ -1505,11 +1548,11 @@ msgstr "需要Java Script!" msgid "Join Network" msgstr "加入网络" -msgid "Join Network: Settings" -msgstr "加入网络:设置" - msgid "Join Network: Wireless Scan" -msgstr "加入网络:搜索无线" +msgstr "加入网络:搜索无线" + +msgid "Joining Network: %q" +msgstr "加入网络:%q" msgid "Keep settings" msgstr "保留配置" @@ -1554,13 +1597,13 @@ msgid "Language and Style" msgstr "语言和界面" msgid "Latency" -msgstr "" +msgstr "延迟" msgid "Leaf" -msgstr "叶子" +msgstr "叶状" msgid "Lease time" -msgstr "" +msgstr "租期" msgid "Lease validity time" msgstr "有效租期" @@ -1587,22 +1630,22 @@ msgid "Limit" msgstr "客户数" msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" +msgstr "将DNS服务限制到我们提供DNS的子网接口。" msgid "Limit listening to these interfaces, and loopback." -msgstr "" +msgstr "仅监听这些接口和环回接口。" msgid "Line Attenuation (LATN)" -msgstr "" +msgstr "线路衰减(LATN)" msgid "Line Mode" -msgstr "" +msgstr "线路模式" msgid "Line State" msgstr "线路状态" msgid "Line Uptime" -msgstr "" +msgstr "线路运行时间" msgid "Link On" msgstr "活动链接" @@ -1613,7 +1656,7 @@ msgid "" msgstr "将指定的域名DNS解析转发到指定的DNS服务器(按照示例填写)" msgid "List of SSH key files for auth" -msgstr "" +msgstr "用于认证的SSH密钥文件列表" msgid "List of domains to allow RFC1918 responses for" msgstr "允许RFC1918响应的域名列表" @@ -1622,7 +1665,10 @@ msgid "List of hosts that supply bogus NX domain results" msgstr "允许虚假空域名响应的服务器列表" msgid "Listen Interfaces" -msgstr "" +msgstr "监听接口" + +msgid "Listen Port" +msgstr "监听端口" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "监听指定的接口;未指定则监听全部" @@ -1640,7 +1686,7 @@ msgid "Loading" msgstr "加载中" msgid "Local IP address to assign" -msgstr "" +msgstr "要分配的本地IP地址" msgid "Local IPv4 address" msgstr "本地IPv4地址" @@ -1649,7 +1695,7 @@ msgid "Local IPv6 address" msgstr "本地IPv6地址" msgid "Local Service Only" -msgstr "" +msgstr "仅本地服务" msgid "Local Startup" msgstr "本地启动脚本" @@ -1660,11 +1706,10 @@ msgstr "本地时间" msgid "Local domain" msgstr "本地域名" -#, fuzzy msgid "" "Local domain specification. Names matching this domain are never forwarded " "and are resolved from DHCP or hosts files only" -msgstr "本地域名规则。从不转发和处理只源自DHCP或HOSTS文件的本地域名数据" +msgstr "本地域名规则。与此域匹配的名称从不转发,仅从DHCP或HOSTS文件解析" msgid "Local domain suffix appended to DHCP names and hosts file entries" msgstr "本地域名后缀将添加到DHCP和HOSTS文件条目" @@ -1681,7 +1726,7 @@ msgid "Localise queries" msgstr "本地化查询" msgid "Locked to channel %s used by: %s" -msgstr "信道道已被锁定为 %s,因为该信道被 %s 使用" +msgstr "信道道已被锁定为 %s,因为该信道被 %s 使用" msgid "Log output level" msgstr "日志记录等级" @@ -1699,7 +1744,7 @@ msgid "Logout" msgstr "退出" msgid "Loss of Signal Seconds (LOSS)" -msgstr "" +msgstr "信号丢失秒数(LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "网络地址的起始分配基址。" @@ -1717,11 +1762,14 @@ msgid "MAC-List" msgstr "MAC-列表" msgid "MAP / LW4over6" -msgstr "" +msgstr "MAP / LW4over6" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "MD5" + msgid "MHz" msgstr "MHz" @@ -1731,13 +1779,13 @@ msgstr "MTU" msgid "" "Make sure to clone the root filesystem using something like the commands " "below:" -msgstr "请确认你已经复制过整个根文件系统,例如使用以下命令:" +msgstr "请确认你已经复制过整个根文件系统,例如使用以下命令:" msgid "Manual" -msgstr "" +msgstr "手动" msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" +msgstr "最大可达数据速率(ATTNDR)" msgid "Maximum Rate" msgstr "最高速率" @@ -1749,7 +1797,7 @@ msgid "Maximum allowed number of concurrent DNS queries" msgstr "允许的最大并发DNS查询数" msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "允许的最大EDNS.0 UDP报文大小" +msgstr "允许的最大EDNS.0 UDP数据包大小" msgid "Maximum amount of seconds to wait for the modem to become ready" msgstr "调制解调器就绪的最大等待时间(秒)" @@ -1761,6 +1809,7 @@ msgid "" "Maximum length of the name is 15 characters including the automatic protocol/" "bridge prefix (br-, 6in4-, pppoe- etc.)" msgstr "" +"名称的最大长度为15个字符,包括自动协议/网桥前缀(br-, 6in4-, pppoe- 等等)" msgid "Maximum number of leased addresses." msgstr "最大地址分配数量。" @@ -1790,7 +1839,7 @@ msgid "Mirror source port" msgstr "数据包镜像源端口" msgid "Missing protocol extension for proto %q" -msgstr "缺少协议%q的协议扩展" +msgstr "缺少协议 %q 的协议扩展" msgid "Mode" msgstr "模式" @@ -1858,16 +1907,16 @@ msgid "NAS ID" msgstr "NAS ID" msgid "NAT-T Mode" -msgstr "" +msgstr "NAT-T模式" msgid "NAT64 Prefix" -msgstr "" +msgstr "NAT64前缀" msgid "NDP-Proxy" msgstr "NDP-代理" msgid "NT Domain" -msgstr "" +msgstr "NT域" msgid "NTP server candidates" msgstr "候选NTP服务器" @@ -1909,7 +1958,7 @@ msgid "No DHCP Server configured for this interface" msgstr "本接口未配置DHCP服务器" msgid "No NAT-T" -msgstr "" +msgstr "无NAT-T" msgid "No chains in this table" msgstr "本表中没有链" @@ -1945,16 +1994,16 @@ msgid "Noise" msgstr "噪声" msgid "Noise Margin (SNR)" -msgstr "" +msgstr "噪声容限(SNR)" msgid "Noise:" msgstr "噪声:" msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" +msgstr "非抢占CRC错误(CRC_P)" msgid "Non-wildcard" -msgstr "" +msgstr "非通配符" msgid "None" msgstr "无" @@ -1975,7 +2024,7 @@ msgid "Note: Configuration files will be erased." msgstr "注意:配置文件将被删除。" msgid "Note: interface name length" -msgstr "" +msgstr "注意:接口名称长度" msgid "Notice" msgstr "注意" @@ -1984,7 +2033,7 @@ msgid "Nslookup" msgstr "Nslookup" msgid "OK" -msgstr "OK" +msgstr "确认" msgid "OPKG-Configuration" msgstr "OPKG-配置" @@ -2017,7 +2066,7 @@ msgid "One or more fields contain invalid values!" msgstr "一个或多个选项值有误!" msgid "One or more invalid/required values on tab" -msgstr "" +msgstr "选项卡上存在一个或多个无效/必需值" msgid "One or more required fields have no value!" msgstr "一个或多个必选项值为空!" @@ -2026,7 +2075,7 @@ msgid "Open list..." msgstr "打开列表..." msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" +msgstr "开放连接(CISCO AnyConnect)" msgid "Operating frequency" msgstr "工作频率" @@ -2038,22 +2087,54 @@ msgid "Option removed" msgstr "移除的选项" msgid "Optional, specify to override default server (tic.sixxs.net)" -msgstr "可选,设置这个选项会覆盖默认设定的服务器(tic.sixxs.net)" +msgstr "可选,设置这个选项会覆盖默认设定的服务器(tic.sixxs.net)" msgid "Optional, use when the SIXXS account has more than one tunnel" -msgstr "可选,如果你的SIXXS账号拥有一个以上的隧道请设置此项." +msgstr "可选,如果你的SIXXS账号拥有一个以上的隧道请设置此项." + +msgid "Optional." +msgstr "可选" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "可选,为此Peer创建允许IP的路由。" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "可选,隧道接口的最大传输单元。" + +msgid "Optional. Port of peer." +msgstr "可选,Peer的端口。" + +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。" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "可选,用于传出和传入数据包的UDP端口。" msgid "Options" msgstr "选项" msgid "Other:" -msgstr "其余:" +msgstr "其余:" msgid "Out" msgstr "出口" msgid "Outbound:" -msgstr "出站:" +msgstr "出站:" msgid "Outdoor Channels" msgstr "户外频道" @@ -2065,18 +2146,24 @@ msgid "Override MAC address" msgstr "克隆MAC地址" msgid "Override MTU" -msgstr "设置MTU" +msgstr "更新MTU" + +msgid "Override TOS" +msgstr "更新TOS" + +msgid "Override TTL" +msgstr "更新TTL" msgid "Override default interface name" -msgstr "" +msgstr "更新默认接口名称" msgid "Override the gateway in DHCP responses" -msgstr "更新网关" +msgstr "更新DHCP响应网关" msgid "" "Override the netmask sent to clients. Normally it is calculated from the " "subnet that is served." -msgstr "更新子网掩码。" +msgstr "更新发送到客户端的子网掩码。" msgid "Override the table used for internal routes" msgstr "更新内部路由表" @@ -2112,22 +2199,22 @@ msgid "PPPoE" msgstr "PPPoE" msgid "PPPoSSH" -msgstr "" +msgstr "PPPoSSH" msgid "PPtP" msgstr "PPtP" msgid "PSID offset" -msgstr "" +msgstr "PSID偏移" msgid "PSID-bits length" -msgstr "" +msgstr "PSID位长度" msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" +msgstr "PTM/EFM(分组传输模式)" msgid "Package libiwinfo required!" -msgstr "需要libiwinfo软件包!" +msgstr "需要 libiwinfo 软件包!" msgid "Package lists are older than 24 hours" msgstr "软件包列表已超过24小时未更新" @@ -2151,7 +2238,7 @@ msgid "Password of Private Key" msgstr "私有密钥" msgid "Password of inner Private Key" -msgstr "" +msgstr "内部私钥的密码" msgid "Password successfully changed!" msgstr "密码修改成功!" @@ -2169,22 +2256,25 @@ msgid "Path to executable which handles the button event" msgstr "处理按键动作的可执行文件路径" msgid "Path to inner CA-Certificate" -msgstr "" +msgstr "内部CA证书的路径" msgid "Path to inner Client-Certificate" -msgstr "" +msgstr "内部客户端证书的路径" msgid "Path to inner Private Key" -msgstr "" +msgstr "内部私钥的路径" msgid "Peak:" msgstr "峰值:" msgid "Peer IP address to assign" -msgstr "" +msgstr "要分配的Peer IP地址" + +msgid "Peers" +msgstr "Peers" msgid "Perfect Forward Secrecy" -msgstr "" +msgstr "完全正向保密" msgid "Perform reboot" msgstr "执行重启" @@ -2192,6 +2282,9 @@ msgstr "执行重启" msgid "Perform reset" msgstr "执行复位" +msgid "Persistent Keep Alive" +msgstr "持续Keep-Alive" + msgid "Phy Rate:" msgstr "物理速率:" @@ -2213,28 +2306,25 @@ msgstr "策略" msgid "Port" msgstr "端口" -msgid "Port %d" -msgstr "端口 %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "端口 %d 在多个VLAN中均未关联!" - msgid "Port status:" msgstr "端口状态:" msgid "Power Management Mode" -msgstr "" +msgstr "电源管理模式" msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" +msgstr "抢占式CRC错误(CRCP_P)" + +msgid "Preshared Key" +msgstr "预共享密钥" msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "在指定数量的LCP响应故障后假定链路已断开,0为忽略故障" -msgid "Prevent listening on thise interfaces." -msgstr "" +msgid "Prevent listening on these interfaces." +msgstr "防止监听这些接口。" msgid "Prevents client-to-client communication" msgstr "禁止客户端间通信" @@ -2242,6 +2332,9 @@ msgstr "禁止客户端间通信" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b 无线网卡" +msgid "Private Key" +msgstr "私钥" + msgid "Proceed" msgstr "执行" @@ -2249,7 +2342,7 @@ msgid "Processes" msgstr "系统进程" msgid "Profile" -msgstr "" +msgstr "配置文件" msgid "Prot." msgstr "协议" @@ -2275,14 +2368,20 @@ msgstr "添加新网络" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "伪装Ad-Hoc(ahdemo)" +msgid "Public Key" +msgstr "公钥" + msgid "Public prefix routed to this device for distribution to clients." -msgstr "" +msgstr "分配到此设备的公共前缀,用以分发到客户端。" + +msgid "QMI Cellular" +msgstr "QMI蜂窝" msgid "Quality" msgstr "质量" msgid "RFC3947 NAT-T mode" -msgstr "" +msgstr "RFC3947 NAT-T模式" msgid "RTS/CTS Threshold" msgstr "RTS/CTS阈值" @@ -2325,33 +2424,31 @@ msgid "" "Really delete this interface? The deletion cannot be undone!\\nYou might " "lose access to this device if you are connected via this interface." msgstr "" -"确定要删除此接口?删除操作无法撤销!\\\n" -"删除此接口,可能导致无法再访问路由器!" +"确定要删除此接口?删除操作无法撤销!\\n删除此接口,可能导致无法再访问路由器!" msgid "" "Really delete this wireless network? The deletion cannot be undone!\\nYou " "might lose access to this device if you are connected via this network." msgstr "" -"确定要删除此无线网络?删除操作无法撤销!\\\n" -"删除此无线网络,可能导致无法再访问路由器!" +"确定要删除此无线网络?删除操作无法撤销!\\n删除此无线网络,可能导致无法再访问" +"路由器!" msgid "Really reset all changes?" msgstr "确定要放弃所有更改?" -#, fuzzy msgid "" "Really shut down network?\\nYou might lose access to this device if you are " "connected via this interface." msgstr "" -"确定要关闭此网络?\\\n" -"关闭此网络,可能导致无法再访问路由器!" +"确定要关闭此网络?\\n如果你正在使用此接口连接路由器,关闭此网络可能导致连接断" +"开!" msgid "" "Really shutdown interface \"%s\" ?\\nYou might lose access to this device if " "you are connected via this interface." msgstr "" -"确定要关闭接口\"%s\" ?\\\n" -"删除此网络,可能导致无法再访问路由器!" +"确定要关闭接口 \"%s\"?\\n如果你正在使用此接口连接路由器,关闭此网络可能导致" +"连接断开!" msgid "Really switch protocol?" msgstr "确定要切换协议?" @@ -2416,6 +2513,9 @@ msgstr "中继桥" msgid "Remote IPv4 address" msgstr "远程IPv4地址" +msgid "Remote IPv4 address or FQDN" +msgstr "远程IPv4地址或FQDN" + msgid "Remove" msgstr "移除" @@ -2438,12 +2538,26 @@ msgid "Require TLS" msgstr "必须使用TLS" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "某些ISP需要,例如:同轴线网络DOCSIS 3" +msgstr "某些ISP需要,例如:同轴线网络DOCSIS 3" + +msgid "Required. Base64-encoded private key for this interface." +msgstr "必须,此接口的Base64编码私钥。" + +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地址和通过隧" +"道的路由网络。" + +msgid "Required. Public key of peer." +msgstr "必须,Peer的公钥。" msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" -msgstr "" +msgstr "需要上级支持DNSSEC,验证未签名的域响应确实是来自未签名的域。" msgid "Reset" msgstr "复位" @@ -2484,11 +2598,17 @@ msgstr "TFTP服务器的根目录" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "路由允许的IP" + +msgid "Route type" +msgstr "路由类型" + msgid "Routed IPv6 prefix for downstream interfaces" -msgstr "" +msgstr "下行接口的路由IPv6前缀" msgid "Router Advertisement-Service" -msgstr "" +msgstr "路由器广告服务" msgid "Router Password" msgstr "主机密码" @@ -2507,16 +2627,19 @@ msgstr "挂载设备前运行文件系统检查" msgid "Run filesystem check" msgstr "文件系统检查" +msgid "SHA256" +msgstr "SHA256" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" -msgstr "" +msgstr "SIXXS仅支持TIC,对于使用IP协议41(RFC4213)的静态隧道,使用6in4" msgid "SIXXS-handle[/Tunnel-ID]" msgstr "" msgid "SNR" -msgstr "" +msgstr "SNR" msgid "SSH Access" msgstr "SSH访问" @@ -2558,7 +2681,7 @@ msgid "Section removed" msgstr "移除的区域" msgid "See \"mount\" manpage for details" -msgstr "详参\"mount\"联机帮助" +msgstr "详参 \"mount\" 联机帮助" msgid "" "Send LCP echo requests at the given interval in seconds, only effective in " @@ -2594,7 +2717,6 @@ msgstr "服务类型" msgid "Services" msgstr "服务" -#, fuzzy msgid "Set up Time Synchronization" msgstr "设置时间同步" @@ -2602,7 +2724,7 @@ msgid "Setup DHCP Server" msgstr "配置DHCP服务器" msgid "Severely Errored Seconds (SES)" -msgstr "" +msgstr "严重误码秒(SES)" msgid "Short GI" msgstr "" @@ -2620,7 +2742,7 @@ msgid "Signal" msgstr "信号" msgid "Signal Attenuation (SATN)" -msgstr "" +msgstr "信号衰减(SATN)" msgid "Signal:" msgstr "信号:" @@ -2629,7 +2751,7 @@ msgid "Size" msgstr "大小" msgid "Size (.ipk)" -msgstr "" +msgstr "大小(.ipk)" msgid "Skip" msgstr "跳过" @@ -2646,6 +2768,9 @@ msgstr "时隙" msgid "Software" msgstr "软件包" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "一些项目的值无效,无法保存!" @@ -2657,11 +2782,11 @@ msgstr "对不起,服务器遇到未知错误。" msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" -"抱歉,您的设备暂不支持sysupgrade升级,需手动更新固件。请参考OpenWrt Wiki中关" -"于此设备的固件更新说明。" +"抱歉,您的设备暂不支持Sysupgrade升级,需手动更新固件。请参考Wiki中关于此设备" +"的固件更新说明。" msgid "Sort" msgstr "排序" @@ -2691,6 +2816,19 @@ msgid "" "dead" msgstr "指定假设主机已丢失的最大时间(秒)" +msgid "Specify a TOS (Type of Service)." +msgstr "指定TOS(服务类型)。" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "为封装数据包设置TTL(生存时间),缺省值:64" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "设置MTU(最大传输单位),缺省值:1280 bytes" + msgid "Specify the secret encryption key here." msgstr "在此指定密钥。" @@ -2743,10 +2881,10 @@ msgid "Submit" msgstr "提交" msgid "Suppress logging" -msgstr "" +msgstr "不记录日志" msgid "Suppress logging of the routine operation of these protocols" -msgstr "" +msgstr "不记录这些协议的常规操作日志。" msgid "Swap" msgstr "交换区" @@ -2761,7 +2899,14 @@ msgid "Switch %q" msgstr "交换机 %q" msgid "Switch %q (%s)" -msgstr "交换机%q (%s)" +msgstr "交换机 %q (%s)" + +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "交换机 %q 具有未知的拓扑结构 - VLAN设置可能不正确。" + +msgid "Switch VLAN" +msgstr "VLAN交换机" msgid "Switch protocol" msgstr "切换协议" @@ -2806,7 +2951,7 @@ msgid "Target" msgstr "对象" msgid "Target network" -msgstr "" +msgstr "目标网络" msgid "Terminate" msgstr "关闭" @@ -2834,6 +2979,10 @@ msgid "" msgstr "HE.net客户端更新设置已经被改变,您现在必须使用用户名代替用户ID/" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "远程隧道端的IPv4地址或完整域名。" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "运营商特定的IPv6前缀,通常以<code>::</code>为结尾" @@ -2850,17 +2999,15 @@ msgstr "由于以下错误,配置文件无法被加载:" msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" -msgstr "" -"存储器或分区的设备节点,(<abbr title=\"for example\">例如</abbr> <code>/dev/" -"sda1</code>)" +msgstr "存储器或分区的设备节点,(例如:<code>/dev/sda1</code>)" msgid "" "The filesystem that was used to format the memory (<abbr title=\"for example" "\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</abbr></" "samp>)" msgstr "" -"用于格式化存储器的文件系统,(<abbr title=\"for example\">例如</abbr> " -"<samp><abbr title=\"Third Extended Filesystem\">ext4</abbr></samp>)" +"用于格式化存储器的文件系统,(例如:<samp><abbr title=\"第三代扩展文件系统" +"\">ext3</abbr></samp>)" msgid "" "The flash image was uploaded. Below is the checksum and file size listed, " @@ -2880,11 +3027,10 @@ msgstr "系统中的活跃连接。" msgid "The given network name is not unique" msgstr "给定的网络名重复" -#, fuzzy msgid "" "The hardware is not multi-SSID capable and the existing configuration will " "be replaced if you proceed." -msgstr "本机的硬件不支持多SSID,继续进行将会覆盖现有配置。" +msgstr "本机的硬件不支持多SSID,如果继续,现有配置将被替换。" msgid "" "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " @@ -2894,6 +3040,9 @@ msgstr "bit格式的IPv4前缀长度, 其余的用在IPv6地址." msgid "The length of the IPv6 prefix in bits" msgstr "bit格式的IPv6前缀长度" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "所创建隧道的本地IPv4地址(可选)。" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -2902,16 +3051,15 @@ msgid "" "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 "" -"本设备可以划分为多个<abbr title=\"Virtual Local Area Network\">VLAN</abbr>," -"并支持电脑间的直接通讯。<abbr title=\"Virtual Local Area Network\">VLAN</" -"abbr>也常用于分割不同网段。默认通常是一条上行端口连接ISP,其余端口为本地子" -"网。" +"本设备可以划分为多个<abbr title=\"虚拟局域网\">VLAN</abbr>,并支持电脑间的直" +"接通讯。<abbr title=\"虚拟局域网\">VLAN</abbr>也常用于分割不同网段。默认通常" +"是一条上行端口连接ISP,其余端口为本地子网。" msgid "The selected protocol needs a device assigned" msgstr "所选的协议需要分配设备" msgid "The submitted security token is invalid or already expired!" -msgstr "" +msgstr "提交的安全令牌无效或已过期!" msgid "" "The system is erasing the configuration partition now and will reboot itself " @@ -2930,7 +3078,7 @@ msgstr "" msgid "" "The tunnel end-point is behind NAT, defaults to disabled and only applies to " "AYIYA" -msgstr "" +msgstr "隧道端点在NAT之后,默认为禁用,仅适用于AYIYA" msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -2952,7 +3100,7 @@ msgstr "没有待生效的更改!" msgid "" "There is no device assigned yet, please attach a network device in the " "\"Physical Settings\" tab" -msgstr "尚未分配设备,请在\"物理设置\"选项卡中选择网络设备" +msgstr "尚未分配设备,请在“物理设置”选项卡中选择网络设备" msgid "" "There is no password set on this router. Please configure a root password to " @@ -2967,6 +3115,8 @@ msgid "" "'server=1.2.3.4' fordomain-specific or full upstream <abbr title=\"Domain " "Name System\">DNS</abbr> servers." msgstr "" +"此文件可能包含类似'server=/domain/1.2.3.4'或'server=1.2.3.4'的行,来解析特定" +"域名或指定上游<abbr title=\"域名服务系统\">DNS</abbr>服务器。" msgid "" "This is a list of shell glob patterns for matching files and directories to " @@ -2979,7 +3129,7 @@ msgstr "" msgid "" "This is either the \"Update Key\" configured for the tunnel or the account " "password if no update key has been configured" -msgstr "如果更新密钥没有设置的话,隧道的\"更新密钥\"或者账户密码必须填写." +msgstr "如果更新密钥没有设置的话,隧道的“更新密钥”或者账户密码必须填写。" msgid "" "This is the content of /etc/rc.local. Insert your own commands here (in " @@ -2994,19 +3144,17 @@ msgstr "隧道代理分配的本地终端地址,通常以<code>:2</code>结尾 msgid "" "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> in the local network" -msgstr "" -"这是内网中唯一的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" -"abbr>服务器" +msgstr "这是内网中唯一的<abbr title=\"动态主机配置协议\">DHCP</abbr>服务器" msgid "This is the plain username for logging into the account" msgstr "登录账户时填写的用户名" msgid "" "This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" +msgstr "这是隧道代理分配给你的路由前缀,供客户端使用" msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "自定义系统crontab中的计划任务。" +msgstr "自定义系统Crontab中的计划任务。" msgid "" "This is usually the address of the nearest PoP operated by the tunnel broker" @@ -3119,7 +3267,7 @@ msgid "Unable to dispatch" msgstr "无法调度" msgid "Unavailable Seconds (UAS)" -msgstr "" +msgstr "不可用秒数(UAS)" msgid "Unknown" msgstr "未知" @@ -3144,9 +3292,9 @@ msgstr "刷新列表" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." -msgstr "上传兼容的sysupgrade固件以刷新当前系统。" +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." +msgstr "上传兼容的Sysupgrade固件以刷新当前系统。" msgid "Upload archive..." msgstr "上传备份..." @@ -3176,7 +3324,7 @@ msgid "Use TTL on tunnel interface" msgstr "隧道接口的TTL" msgid "Use as external overlay (/overlay)" -msgstr "作为外部overlay使用(/overlay)" +msgstr "作为外部Overlay使用(/overlay)" msgid "Use as root filesystem (/)" msgstr "作为跟文件系统使用(/)" @@ -3185,7 +3333,7 @@ msgid "Use broadcast flag" msgstr "使用广播标签" msgid "Use builtin IPv6-management" -msgstr "" +msgstr "使用内置的IPv6管理" msgid "Use custom DNS servers" msgstr "使用自定义的DNS服务器" @@ -3228,22 +3376,19 @@ msgid "VC-Mux" msgstr "VC-Mux" msgid "VDSL" -msgstr "" - -msgid "VLAN Interface" -msgstr "VLAN接口" +msgstr "VDSL" msgid "VLANs on %q" -msgstr "%q上的VLAN" +msgstr "%q 上的VLAN" msgid "VLANs on %q (%s)" -msgstr "%q (%s)上的VLAN" +msgstr "%q (%s) 上的VLAN" msgid "VPN Local address" -msgstr "" +msgstr "VPN本地地址" msgid "VPN Local port" -msgstr "" +msgstr "VPN本地端口" msgid "VPN Server" msgstr "VPN服务器" @@ -3255,7 +3400,7 @@ msgid "VPN Server's certificate SHA1 hash" msgstr "VPN服务器证书的SHA1哈希值" msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" +msgstr "VPNC (CISCO 3000 和其他VPN)" msgid "Vendor" msgstr "" @@ -3264,10 +3409,10 @@ msgid "Vendor Class to send when requesting DHCP" msgstr "请求DHCP时发送的Vendor Class" msgid "Verbose" -msgstr "" +msgstr "详细" msgid "Verbose logging by aiccu daemon" -msgstr "" +msgstr "aiccu守护程序详细日志" msgid "Verify" msgstr "验证" @@ -3302,7 +3447,7 @@ msgstr "" msgid "" "Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)" -msgstr "在NTP同步之前等待时间.设置为0表示同步之前不等待(可选)" +msgstr "在NTP同步之前等待时间,设置为0表示同步之前不等待(可选)" msgid "Waiting for changes to be applied..." msgstr "正在应用更改..." @@ -3320,14 +3465,17 @@ msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "警告:有一些未保存的配置将在重启后丢失!" msgid "Whether to create an IPv6 default route over the tunnel" -msgstr "" +msgstr "是否通过隧道创建IPv6缺省路由" msgid "Whether to route only packets from delegated prefixes" -msgstr "" +msgstr "是否仅路由来自分发前缀的数据包" msgid "Width" msgstr "频宽" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "无线" @@ -3364,6 +3512,9 @@ msgstr "无线已关闭" msgid "Write received DNS requests to syslog" msgstr "将收到的DNS请求写入系统日志" +msgid "Write system log to file" +msgstr "将系统日志写入文件" + msgid "XR Support" msgstr "XR支持" @@ -3384,8 +3535,8 @@ msgid "" "upgrade it to at least version 7 or use another browser like Firefox, Opera " "or Safari." msgstr "" -"你的Internet Explorer已经老到无法正常显示这个页面了!请至少更新到IE7或者使用诸" -"如Firefox Opera Safari之类的浏览器." +"你的Internet Explorer已经老到无法正常显示这个页面了!请至少更新到IE7或者使用" +"诸如Firefox Opera Safari之类的浏览器。" msgid "any" msgstr "任意" @@ -3426,8 +3577,7 @@ msgstr "过期时间" msgid "" "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>-leases will be stored" -msgstr "" -"存放<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>租约的文件" +msgstr "存放<abbr title=\"动态主机配置协议\">DHCP</abbr>租约的文件" msgid "forward" msgstr "转发" @@ -3463,16 +3613,16 @@ msgid "kbit/s" msgstr "kbit/s" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" -msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr>解析文件" +msgstr "本地<abbr title=\"域名服务系统\">DNS</abbr>解析文件" msgid "minimum 1280, maximum 1480" -msgstr "最小值1280,最大值1480" +msgstr "最小值1280,最大值1480" msgid "navigation Navigation" -msgstr "" +msgstr "导航" msgid "no" -msgstr "no" +msgstr "" msgid "no link" msgstr "未连接" @@ -3481,7 +3631,7 @@ msgid "none" msgstr "无" msgid "not present" -msgstr "" +msgstr "不存在" msgid "off" msgstr "关" @@ -3493,7 +3643,7 @@ msgid "open" msgstr "开放式" msgid "overlay" -msgstr "" +msgstr "覆盖" msgid "relay mode" msgstr "中继模式" @@ -3505,19 +3655,19 @@ msgid "server mode" msgstr "服务器模式" msgid "skiplink1 Skip to navigation" -msgstr "" +msgstr "skiplink1 跳转到导航" msgid "skiplink2 Skip to content" -msgstr "" +msgstr "skiplink2 跳到内容" msgid "stateful-only" -msgstr "" +msgstr "有状态的" msgid "stateless" -msgstr "" +msgstr "无状态的" msgid "stateless + stateful" -msgstr "" +msgstr "有状态和无状态的" msgid "tagged" msgstr "关联" @@ -3532,7 +3682,7 @@ msgid "unspecified" msgstr "未指定" msgid "unspecified -or- create:" -msgstr "未指定 // 创建:" +msgstr "未指定或创建:" msgid "untagged" msgstr "不关联" @@ -3542,3 +3692,24 @@ msgstr "是" msgid "« Back" msgstr "« 后退" + +#~ msgid "An additional network will be created if you leave this checked." +#~ msgstr "如果选中此复选框,则会创建一个附加网络。" + +#~ 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 在多个VLAN中均未关联!" + +#~ msgid "VLAN Interface" +#~ msgstr "VLAN接口" diff --git a/modules/luci-base/po/zh-tw/base.po b/modules/luci-base/po/zh-tw/base.po index 4ed557fc6c..4acb190cce 100644 --- a/modules/luci-base/po/zh-tw/base.po +++ b/modules/luci-base/po/zh-tw/base.po @@ -11,6 +11,9 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.6\n" +msgid "%s is untagged in multiple VLANs!" +msgstr "" + msgid "(%d minute window, %d second interval)" msgstr "(%d 分鐘訊息, %d 秒更新)" @@ -38,6 +41,9 @@ msgstr "" msgid "-- match by label --" msgstr "" +msgid "-- match by uuid --" +msgstr "" + msgid "1 Minute Load:" msgstr "1分鐘負載" @@ -269,6 +275,9 @@ msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "允許127.0.0.0/8範圍內的上游回應,例如:RBL服務" +msgid "Allowed IPs" +msgstr "" + msgid "" "Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison" "\">Tunneling Comparison</a> on SIXXS" @@ -277,9 +286,6 @@ msgstr "" msgid "Always announce default router" msgstr "" -msgid "An additional network will be created if you leave this unchecked." -msgstr "取消選取將會另外建立一個新網路,而不會覆蓋目前的網路設定" - msgid "Annex" msgstr "" @@ -387,6 +393,9 @@ msgstr "" msgid "Authentication" msgstr "認證" +msgid "Authentication Type" +msgstr "" + msgid "Authoritative" msgstr "授權" @@ -482,9 +491,15 @@ msgstr "" "下面是待備份的檔案清單。包含了更改的設定檔案、必要的基本檔案和使用者自訂的備" "份檔案" +msgid "Bind interface" +msgstr "" + msgid "Bind only to specific interfaces rather than wildcard address." msgstr "" +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + msgid "Bitrate" msgstr "傳輸速率" @@ -523,9 +538,6 @@ msgstr "按鈕" msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" -msgid "CPU" -msgstr "CPU" - msgid "CPU usage (%)" msgstr "CPU 使用率 (%)" @@ -556,6 +568,9 @@ msgstr "檢查" msgid "Check fileystems before mount" msgstr "" +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + msgid "Checksum" msgstr "效驗碼" @@ -885,6 +900,9 @@ msgstr "網域必要的" msgid "Domain whitelist" msgstr "網域白名單" +msgid "Don't Fragment" +msgstr "" + msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" @@ -954,6 +972,9 @@ msgstr "啟用 <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable HE.net dynamic endpoint update" msgstr "啟用HE.net服務代管動態更新" +msgid "Enable IPv6 negotiation" +msgstr "" + msgid "Enable IPv6 negotiation on the PPP link" msgstr "啟用PPP連結上的IPv6交涉" @@ -984,6 +1005,9 @@ msgstr "" msgid "Enable mirroring of outgoing packets" msgstr "" +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + msgid "Enable this mount" msgstr "啟用掛載點" @@ -1005,6 +1029,12 @@ msgstr "封裝模式" msgid "Encryption" msgstr "加密" +msgid "Endpoint Host" +msgstr "" + +msgid "Endpoint Port" +msgstr "" + msgid "Erasing..." msgstr "刪除中..." @@ -1043,6 +1073,9 @@ msgstr "外部系統日誌伺服器" msgid "External system log server port" msgstr "外部系統日誌伺服器埠號" +msgid "External system log server protocol" +msgstr "" + msgid "Extra SSH command options" msgstr "" @@ -1159,6 +1192,11 @@ msgstr "空閒" msgid "Free space" msgstr "剩餘空間" +msgid "" +"Further information about WireGuard interfaces and peers at <a href=\"http://" +"wireguard.io\">wireguard.io</a>." +msgstr "" + msgid "GHz" msgstr "GHz" @@ -1216,6 +1254,9 @@ msgstr " HE.net密碼" msgid "HE.net username" msgstr "" +msgid "HT mode (802.11n)" +msgstr "" + msgid "Handler" msgstr "多執行緒" @@ -1313,6 +1354,9 @@ msgstr "IPv4前綴長度" msgid "IPv4-Address" msgstr "IPv4-位址" +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + msgid "IPv6" msgstr "IPv6版" @@ -1516,12 +1560,12 @@ msgstr "需要Java腳本" msgid "Join Network" msgstr "加入網路" -msgid "Join Network: Settings" -msgstr "加入網路的設定" - msgid "Join Network: Wireless Scan" msgstr "加入網路:無線網路掃描" +msgid "Joining Network: %q" +msgstr "" + msgid "Keep settings" msgstr "保持設定值" @@ -1635,6 +1679,9 @@ msgstr "列出供應偽裝NX網域成果的主機群" msgid "Listen Interfaces" msgstr "" +msgid "Listen Port" +msgstr "" + msgid "Listen only on the given interface or, if unspecified, on all" msgstr "只許在給予的介面上聆聽, 如果未指定, 全都允許" @@ -1733,6 +1780,9 @@ msgstr "" msgid "MB/s" msgstr "MB/s" +msgid "MD5" +msgstr "" + msgid "MHz" msgstr "MHz" @@ -2058,6 +2108,36 @@ msgstr "" msgid "Optional, use when the SIXXS account has more than one tunnel" msgstr "" +msgid "Optional." +msgstr "" + +msgid "" +"Optional. Adds in an additional layer of symmetric-key cryptography for post-" +"quantum resistance." +msgstr "" + +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +msgid "Optional. Port of peer." +msgstr "" + +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + msgid "Options" msgstr "選項" @@ -2082,6 +2162,12 @@ msgstr "覆蓋MAC位址" msgid "Override MTU" msgstr "覆蓋MTU數值" +msgid "Override TOS" +msgstr "" + +msgid "Override TTL" +msgstr "" + msgid "Override default interface name" msgstr "" @@ -2198,6 +2284,9 @@ msgstr "峰值:" msgid "Peer IP address to assign" msgstr "" +msgid "Peers" +msgstr "" + msgid "Perfect Forward Secrecy" msgstr "" @@ -2207,6 +2296,9 @@ msgstr "執行重開" msgid "Perform reset" msgstr "執行重置" +msgid "Persistent Keep Alive" +msgstr "" + msgid "Phy Rate:" msgstr "傳輸率:" @@ -2228,12 +2320,6 @@ msgstr "策略" msgid "Port" msgstr "埠" -msgid "Port %d" -msgstr "埠 %d" - -msgid "Port %d is untagged in multiple VLANs!" -msgstr "埠 %d 尚未標記在多個VLANs中!" - msgid "Port status:" msgstr "埠狀態:" @@ -2243,12 +2329,15 @@ msgstr "" msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" +msgid "Preshared Key" +msgstr "" + msgid "" "Presume peer to be dead after given amount of LCP echo failures, use 0 to " "ignore failures" msgstr "假若在給于多次的 LCP 呼叫失敗後終點將死, 使用0忽略失敗" -msgid "Prevent listening on thise interfaces." +msgid "Prevent listening on these interfaces." msgstr "" msgid "Prevents client-to-client communication" @@ -2257,6 +2346,9 @@ msgstr "防止用戶端對用戶端的通訊" msgid "Prism2/2.5/3 802.11b Wireless Controller" msgstr "Prism2/2.5/3 802.11b 無線控制器" +msgid "Private Key" +msgstr "" + msgid "Proceed" msgstr "前進" @@ -2290,9 +2382,15 @@ msgstr "提供新網路" msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "偽裝Ad-Hoc (ahdemo模式)" +msgid "Public Key" +msgstr "" + msgid "Public prefix routed to this device for distribution to clients." msgstr "" +msgid "QMI Cellular" +msgstr "" + msgid "Quality" msgstr "品質" @@ -2431,6 +2529,9 @@ msgstr "橋接延遲" msgid "Remote IPv4 address" msgstr "遠端IPv4位址" +msgid "Remote IPv4 address or FQDN" +msgstr "" + msgid "Remove" msgstr "移除" @@ -2455,6 +2556,18 @@ msgstr "" msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "對特定的ISP需要,例如.DOCSIS 3 加速有線電視寬頻網路" +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +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 "" + +msgid "Required. Public key of peer." +msgstr "" + msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" @@ -2499,6 +2612,12 @@ msgstr "透過TFTP存取根目錄檔案" msgid "Root preparation" msgstr "" +msgid "Route Allowed IPs" +msgstr "" + +msgid "Route type" +msgstr "" + msgid "Routed IPv6 prefix for downstream interfaces" msgstr "" @@ -2522,6 +2641,9 @@ msgstr "掛載這個設備前先跑系統檢查" msgid "Run filesystem check" msgstr "執行系統檢查" +msgid "SHA256" +msgstr "" + msgid "" "SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) " "use 6in4 instead" @@ -2661,6 +2783,9 @@ msgstr "插槽時間" msgid "Software" msgstr "軟體" +msgid "Software VLAN" +msgstr "" + msgid "Some fields are invalid, cannot save values!" msgstr "有些欄位失效, 無法儲存數值!" @@ -2670,14 +2795,13 @@ msgstr "抱歉, 你請求的這物件尚無發現." msgid "Sorry, the server encountered an unexpected error." msgstr "抱歉, 伺服器遭遇非預期的錯誤." -#, fuzzy msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the OpenWrt wiki for device specific " -"install instructions." +"flashed manually. Please refer to the wiki for device specific install " +"instructions." msgstr "" -"抱歉, 沒有sysupgrade支援出現, 新版韌體映像檔必須手動更新. 請回歸OpenWrt wiki" -"找尋特定設備安裝指引." +"抱歉, 沒有sysupgrade支援出現, 新版韌體映像檔必須手動更新. 請回歸wiki找尋特定" +"設備安裝指引." msgid "Sort" msgstr "分類" @@ -2707,6 +2831,19 @@ msgid "" "dead" msgstr "指定可請求的最大秒數直到駭客主機死亡為止" +msgid "Specify a TOS (Type of Service)." +msgstr "" + +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + msgid "Specify the secret encryption key here." msgstr "指定加密金鑰在此." @@ -2778,6 +2915,13 @@ msgstr "交換器 %q" msgid "Switch %q (%s)" msgstr "交換器 %q (%s)" +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +msgid "Switch VLAN" +msgstr "" + msgid "Switch protocol" msgstr "交換器協定" @@ -2852,6 +2996,10 @@ msgid "" msgstr "" msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "指定到這供應商的IPv6字首, 通常用 <code>::</code>結尾" @@ -2914,6 +3062,9 @@ msgstr "這IPv4開頭以位元計的長度, 剩餘部分將會延用在IPv6位 msgid "The length of the IPv6 prefix in bits" msgstr "這IPv6開頭以位元計的長度" +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + msgid "" "The network ports on this device can be combined to several <abbr title=" "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " @@ -3168,11 +3319,11 @@ msgstr "上傳清單" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires an " -"OpenWrt compatible firmware image)." +"Check \"Keep settings\" to retain the current configuration (requires a " +"compatible firmware image)." msgstr "" "上傳一個sysupgrade-相容的映像檔在這以便替代正執行中的韌體. 勾選\"保持設定\"以" -"保留目前設定值(必須要是OpenWrt相容性韌體映像檔)." +"保留目前設定值(必須要是OpenWrt/LEDE相容性韌體映像檔)." msgid "Upload archive..." msgstr "上傳壓縮檔..." @@ -3257,9 +3408,6 @@ msgstr "虛擬電路多工器VC-Mux" msgid "VDSL" msgstr "" -msgid "VLAN Interface" -msgstr "VLAN介面" - msgid "VLANs on %q" msgstr "VLAN 在 %q" @@ -3355,6 +3503,9 @@ msgstr "" msgid "Width" msgstr "" +msgid "WireGuard VPN" +msgstr "" + msgid "Wireless" msgstr "無線網路" @@ -3391,6 +3542,9 @@ msgstr "無線網路關閉" msgid "Write received DNS requests to syslog" msgstr "寫入已接收的DNS請求到系統日誌中" +msgid "Write system log to file" +msgstr "" + msgid "XR Support" msgstr "支援XR無線陣列" @@ -3568,3 +3722,21 @@ msgstr "是的" msgid "« Back" msgstr "« 倒退" + +#~ 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/modules/luci-base/root/etc/config/luci b/modules/luci-base/root/etc/config/luci index a443742f93..baa3ac5d1e 100644 --- a/modules/luci-base/root/etc/config/luci +++ b/modules/luci-base/root/etc/config/luci @@ -22,8 +22,3 @@ config internal ccache option enable 1 config internal themes - -config internal 'diag' - option ping 'dev.openwrt.org' - option route 'dev.openwrt.org' - option dns 'dev.openwrt.org' diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua index 24db1e4ff5..ad575e0d26 100644 --- a/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua +++ b/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua @@ -24,8 +24,10 @@ function index() entry({"admin", "status", "realtime", "bandwidth"}, template("admin_status/bandwidth"), _("Traffic"), 2).leaf = true entry({"admin", "status", "realtime", "bandwidth_status"}, call("action_bandwidth")).leaf = true - entry({"admin", "status", "realtime", "wireless"}, template("admin_status/wireless"), _("Wireless"), 3).leaf = true - entry({"admin", "status", "realtime", "wireless_status"}, call("action_wireless")).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 diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua index fd6dda1c80..5478afa3e6 100644 --- a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua +++ b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua @@ -52,6 +52,7 @@ function action_clock_status() luci.sys.call("date -s '%04d-%02d-%02d %02d:%02d:%02d'" %{ date.year, date.month, date.day, date.hour, date.min, date.sec }) + luci.sys.call("/etc/init.d/sysfixtime restart") end end @@ -185,6 +186,10 @@ local function image_checksum(image) return (luci.sys.exec("md5sum %q" % image):match("^([^%s]+)")) end +local function image_sha256_checksum(image) + return (luci.sys.exec("sha256sum %q" % image):match("^([^%s]+)")) +end + local function supports_sysupgrade() return nixio.fs.access("/lib/upgrade/platform.sh") end @@ -268,6 +273,7 @@ function action_sysupgrade() if image_supported(image_tmp) then luci.template.render("admin_system/upgrade", { checksum = image_checksum(image_tmp), + sha256ch = image_sha256_checksum(image_tmp), storage = storage_size(), size = (fs.stat(image_tmp, "size") or 0), keep = (not not http.formvalue("keep")) diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/dhcp.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/dhcp.lua index aaf045ca2c..10636a491a 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/dhcp.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/dhcp.lua @@ -251,7 +251,7 @@ o:depends("nonwildcard", true) o = s:taboption("general", DynamicList, "notinterface", translate("Exclude interfaces"), - translate("Prevent listening on thise interfaces.")) + translate("Prevent listening on these interfaces.")) o.optional = true o:depends("nonwildcard", true) diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/routes.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/routes.lua index ac02b156e9..1970f36a28 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/routes.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/routes.lua @@ -34,13 +34,27 @@ 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 @@ -62,12 +76,26 @@ if fs.access("/proc/net/ipv6_route") then 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 diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/vlan.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/vlan.lua index ce3c3ef325..902767c903 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/vlan.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/vlan.lua @@ -5,8 +5,13 @@ m = Map("network", translate("Switch"), translate("The network ports on this device can be combined to several <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can communicate directly with each other. <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s 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 nw = require "luci.model.network" local switches = { } +nw.init(m.uci) + +local topologies = nw:get_switch_topologies() or {} + m.uci:foreach("network", "switch", function(x) local sid = x['.name'] @@ -19,12 +24,26 @@ m.uci:foreach("network", "switch", local min_vid = 0 local max_vid = 16 local num_vlans = 16 - local cpu_port = tonumber(fs.readfile("/proc/switch/eth0/cpuport") or 5) - local num_ports = cpu_port + 1 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 %q help 2>/dev/null" % switch_name) if swc then @@ -45,12 +64,7 @@ m.uci:foreach("network", "switch", elseif line:match("cpu @") then switch_title = line:match("^switch%d: %w+%((.-)%)") - num_ports, cpu_port, num_vlans = - line:match("ports: (%d+) %(cpu @ (%d+)%), vlans: (%d+)") - - num_ports = tonumber(num_ports) or 6 - num_vlans = tonumber(num_vlans) or 16 - cpu_port = tonumber(cpu_port) or 5 + 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 @@ -113,14 +127,10 @@ m.uci:foreach("network", "switch", mp:depends("enable_mirror_tx", "1") mp:depends("enable_mirror_rx", "1") - local pt - for pt = 0, num_ports - 1 do - local name - - name = (pt == cpu_port) and translate("CPU") or translatef("Port %d", pt) - - sp:value(pt, name) - mp:value(pt, name) + local _, pt + for _, pt in ipairs(topo.ports) do + sp:value(pt.num, pt.label) + mp:value(pt.num, pt.label) end end @@ -211,9 +221,9 @@ m.uci:foreach("network", "switch", if value == "u" then if not untagged[self.option] then untagged[self.option] = true - elseif min_vid > 0 or tonumber(self.option) ~= cpu_port then -- enable multiple untagged cpu ports due to weird broadcom default setup + else return nil, - translatef("Port %d is untagged in multiple VLANs!", tonumber(self.option) + 1) + translatef("%s is untagged in multiple VLANs!", self.title) end end return value @@ -276,20 +286,16 @@ m.uci:foreach("network", "switch", or m:get(section, "vlan") end - -- Build per-port off/untagged/tagged choice lists. - local pt - for pt = 0, num_ports - 1 do - local title - if pt == cpu_port then - title = translate("CPU") - else - title = translatef("Port %d", pt) - end - - local po = s:option(ListValue, tostring(pt), title) + local _, pt + for _, pt in ipairs(topo.ports) do + local po = s:option(ListValue, tostring(pt.num), pt.label, '<div id="portstatus-%s-%d"></div>' %{ switch_name, pt.num }) po:value("", translate("off")) - po:value("u", translate("untagged")) + + if not pt.tagged then + po:value("u", translate("untagged")) + end + po:value("t", translate("tagged")) po.cfgvalue = portvalue @@ -299,6 +305,7 @@ m.uci:foreach("network", "switch", 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 ) diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua index 09763e8f14..2dff4ddc81 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -313,6 +313,36 @@ if hwtype == "broadcom" then %{ 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", "") diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua index 96b8b4d740..8277deb2f6 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua @@ -16,7 +16,7 @@ if not iw then return end -m = SimpleForm("network", translate("Join Network: Settings")) +m = SimpleForm("network", translatef("Joining Network: %q", http.formvalue("join"))) m.cancel = translate("Back to scan results") m.reset = false @@ -44,9 +44,9 @@ m.hidden = { if iw and iw.mbssid_support then replace = m:field(Flag, "replace", translate("Replace wireless configuration"), - translate("An additional network will be created if you leave this unchecked.")) + translate("Check this option to delete the existing networks from this radio.")) - function replace.cfgvalue() return "1" end + 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 " .. diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua index f5751673fd..a85872afad 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/fstab/mount.lua @@ -56,6 +56,8 @@ mount:taboption("general", Flag, "enabled", translate("Enable this mount")).rmem o = mount:taboption("general", Value, "uuid", translate("UUID"), translate("If specified, mount the device by its UUID instead of a fixed device node")) +o:value("", translate("-- match by uuid --")) + for i, d in ipairs(devices) do if d.uuid and d.size then o:value(d.uuid, "%s (%s, %d MB)" %{ d.uuid, d.dev, d.size }) @@ -64,12 +66,12 @@ for i, d in ipairs(devices) do end end -o:value("", translate("-- match by label --")) - o = mount:taboption("general", Value, "label", translate("Label"), translate("If specified, mount the device by the partition label instead of a fixed device node")) +o:value("", translate("-- match by label --")) + o:depends("uuid", "") for i, d in ipairs(devices) do @@ -80,12 +82,12 @@ for i, d in ipairs(devices) do end end -o:value("", translate("-- match by device --")) - o = mount:taboption("general", Value, "device", translate("Device"), translate("The device file of the memory or partition (<abbr title=\"for example\">e.g.</abbr> <code>/dev/sda1</code>)")) +o:value("", translate("-- match by device --")) + o:depends({ uuid = "", label = "" }) for i, d in ipairs(devices) do diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_network/lease_status.htm b/modules/luci-mod-admin-full/luasrc/view/admin_network/lease_status.htm index f7787dd1ea..b4baedff28 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_network/lease_status.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_network/lease_status.htm @@ -27,14 +27,12 @@ { var timestr; - if (st[0][i].expires <= 0) - { + if (st[0][i].expires === false) + timestr = '<em><%:unlimited%></em>'; + else if (st[0][i].expires <= 0) timestr = '<em><%:expired%></em>'; - } else - { timestr = String.format('%t', st[0][i].expires); - } var tr = tb.insertRow(-1); tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1); @@ -69,14 +67,12 @@ { var timestr; - if (st[1][i].expires <= 0) - { + if (st[1][i].expires === false) + timestr = '<em><%:unlimited%></em>'; + else if (st[1][i].expires <= 0) timestr = '<em><%:expired%></em>'; - } else - { timestr = String.format('%t', st[1][i].expires); - } var tr = tb6.insertRow(-1); tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1); diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_network/switch_status.htm b/modules/luci-mod-admin-full/luasrc/view/admin_network/switch_status.htm index 53c35ae59c..96fbffdb02 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_network/switch_status.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_network/switch_status.htm @@ -15,7 +15,10 @@ for (var j = 0; j < ports.length; j++) { - var th = th0.parentNode.parentNode.childNodes[j+1]; + var th = document.getElementById('portstatus-' + switches[i] + '-' + j); + + if (!th) + continue; if (ports[j].link) { diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm b/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm index 8c3e01e603..8976e30cba 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm @@ -341,7 +341,9 @@ { var timestr; - if (info.leases[i].expires <= 0) + if (info.leases[i].expires === false) + timestr = '<em><%:unlimited%></em>'; + else if (info.leases[i].expires <= 0) timestr = '<em><%:expired%></em>'; else timestr = String.format('%t', info.leases[i].expires); @@ -379,7 +381,9 @@ { var timestr; - if (info.leases6[i].expires <= 0) + if (info.leases6[i].expires === false) + timestr = '<em><%:unlimited%></em>'; + else if (info.leases6[i].expires <= 0) timestr = '<em><%:expired%></em>'; else timestr = String.format('%t', info.leases6[i].expires); @@ -471,7 +475,7 @@ '<strong><%:Bitrate%>:</strong> %s <%:Mbit/s%><br />', icon, net.signal, net.noise, net.quality, - net.link, net.ssid, + net.link, net.ssid || '?', net.mode, net.channel, net.frequency, net.bitrate || '?' @@ -482,7 +486,7 @@ s += String.format( '<strong><%:BSSID%>:</strong> %s<br />' + '<strong><%:Encryption%>:</strong> %s', - net.bssid, + net.bssid || '?', net.encryption ); } diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_system/flashops.htm b/modules/luci-mod-admin-full/luasrc/view/admin_system/flashops.htm index 82a1fdbc9c..3e3f65d919 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_system/flashops.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_system/flashops.htm @@ -63,7 +63,7 @@ <% if upgrade_avail then %> <form method="post" action="<%=url('admin/system/flashops/sysupgrade')%>" enctype="multipart/form-data"> <input type="hidden" name="token" value="<%=token%>" /> - <div class="cbi-section-descr"><%:Upload a sysupgrade-compatible image here to replace the running firmware. Check "Keep settings" to retain the current configuration (requires an OpenWrt compatible firmware image).%></div> + <div class="cbi-section-descr"><%:Upload a sysupgrade-compatible image here to replace the running firmware. Check "Keep settings" to retain the current configuration (requires a compatible firmware image).%></div> <div class="cbi-section-node"> <div class="cbi-value"> <label class="cbi-value-title" for="keep"><%:Keep settings%>:</label> @@ -84,7 +84,7 @@ <% end %> </form> <% else %> - <div class="cbi-section-descr"><%:Sorry, there is no sysupgrade support present; a new firmware image must be flashed manually. Please refer to the OpenWrt wiki for device specific install instructions.%></div> + <div class="cbi-section-descr"><%: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.%></div> <% end %> </fieldset> diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm b/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm index 5ca0398e13..7175248dbb 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm @@ -24,7 +24,9 @@ <fieldset class="cbi-section"> <ul> - <li><%:Checksum%>: <code><%=checksum%></code></li> + <li><%:Checksum%><br /> + <%:MD5%>: <code><%=checksum%></code><br /> + <%:SHA256%>: <code><%=sha256ch%></code></li> <li><%:Size%>: <% local w = require "luci.tools.webadmin" write(w.byte_format(size)) diff --git a/modules/luci-mod-admin-full/root/etc/uci-defaults/50_luci-mod-admin-full b/modules/luci-mod-admin-full/root/etc/uci-defaults/50_luci-mod-admin-full new file mode 100755 index 0000000000..372eb15122 --- /dev/null +++ b/modules/luci-mod-admin-full/root/etc/uci-defaults/50_luci-mod-admin-full @@ -0,0 +1,22 @@ +#!/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:-$LEDE_DEVICE_MANUFACTURER_URL}}" + host="${host#*://}" + host="${host%%/*}" + fi + + uci -q batch <<-EOF >/dev/null + set luci.diag=internal + set luci.diag.dns='${host:-openwrt.org}' + set luci.diag.ping='${host:-openwrt.org}' + set luci.diag.route='${host:-openwrt.org}' + commit luci + EOF +fi + +exit 0 diff --git a/modules/luci-mod-admin-mini/luasrc/view/mini/index.htm b/modules/luci-mod-admin-mini/luasrc/view/mini/index.htm index 5818a567fc..621e3cbe89 100644 --- a/modules/luci-mod-admin-mini/luasrc/view/mini/index.htm +++ b/modules/luci-mod-admin-mini/luasrc/view/mini/index.htm @@ -9,5 +9,5 @@ <p><%_<abbr title="Lua Configuration Interface">LuCI</abbr> is a free, flexible, and user friendly graphical interface for configuring OpenWrt.%><br /> <%:On the following pages you can adjust all important settings of this device.%></p> <p><%:As we always want to improve this interface we are looking forward to your feedback and suggestions.%></p> -<p><%:And now have fun with your OpenWrt device!%></p> +<p><%:And now have fun with your device!%></p> <p><em><strong><a href="<%=controller%>/about"><%_The <abbr title="Lua Configuration Interface">LuCI</abbr> Team%></a></strong></em></p> diff --git a/modules/luci-mod-admin-mini/luasrc/view/mini/upgrade.htm b/modules/luci-mod-admin-mini/luasrc/view/mini/upgrade.htm index ecd1e8a7a8..ef3e2e8d12 100644 --- a/modules/luci-mod-admin-mini/luasrc/view/mini/upgrade.htm +++ b/modules/luci-mod-admin-mini/luasrc/view/mini/upgrade.htm @@ -13,7 +13,7 @@ <% if supported then %> <form method="post" action="<%=REQUEST_URI%>" enctype="multipart/form-data"> <p> - <%:Upload an OpenWrt image file to reflash the device.%> + <%:Upload a sysupgrade-compatible image file to reflash the device.%> <% if bad_image then %> <br /><br /> <div class="error"><%:The uploaded image file does not @@ -38,7 +38,7 @@ </form> <% else %> <div class="error"><%_ Sorry. - OpenWrt does not support a system upgrade on this platform.<br /> + A system upgrade is not supported on this platform.<br /> You need to manually flash your device. %></div> <% end %> <% elseif step == 2 then %> diff --git a/modules/luci-mod-failsafe/luasrc/view/failsafe/flashops.htm b/modules/luci-mod-failsafe/luasrc/view/failsafe/flashops.htm index 3c8d11bb75..d6e9ad7426 100644 --- a/modules/luci-mod-failsafe/luasrc/view/failsafe/flashops.htm +++ b/modules/luci-mod-failsafe/luasrc/view/failsafe/flashops.htm @@ -27,7 +27,7 @@ <% end %> </form> <% else %> - <div class="cbi-section-descr"><%:Sorry, there is no sysupgrade support present; a new firmware image must be flashed manually. Please refer to the OpenWrt wiki for device specific install instructions.%></div> + <div class="cbi-section-descr"><%: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.%></div> <% end %> </fieldset> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm index 83e1ee5792..f087472d31 100644 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm +++ b/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm @@ -38,9 +38,11 @@ <input type="hidden" name="confirm" value="1" /> <input type="checkbox" class="cbi-input-checkbox" name="keepcfg" value="1" checked="checked" id="cb_keepcfg" /> + <label for="cb_keepcfg"></label> <label for="cb_keepcfg"><%:Keep configuration%></label><br /> <input type="checkbox" class="cbi-input-checkbox" name="verify" value="1" checked="checked" id="cb_verify" /> + <label for="cb_verify"></label> <label for="cb_verify"><%:Verify downloaded images%></label><br /><br /> <input type="submit" class="cbi-button cbi-button-apply" value="<%:Confirm Upgrade%>" /> |