diff options
Diffstat (limited to 'modules')
106 files changed, 12767 insertions, 23505 deletions
diff --git a/modules/luci-base/Makefile b/modules/luci-base/Makefile index 9bc8ec17a1..d94804529c 100644 --- a/modules/luci-base/Makefile +++ b/modules/luci-base/Makefile @@ -14,13 +14,17 @@ LUCI_BASENAME:=base LUCI_TITLE:=LuCI core libraries LUCI_DEPENDS:=+lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc +liblucihttp-lua - -PKG_SOURCE:=v1.0.0.tar.gz -PKG_SOURCE_URL:=https://github.com/jirutka/luasrcdiet/archive/ -PKG_HASH:=48162e63e77d009f5848f18a5cabffbdfc867d0e5e73c6d407f6af5d6880151b +LUCI_LUASRCDIET_VERSION:=1.0.0 + +PKG_SOURCE_URL:=https://github.com/jirutka/luasrcdiet.git +PKG_SOURCE_VERSION:=f138fc9359821d9201cd6b57cfa2fcbed5b9af97 +PKG_SOURCE_SUBDIR:=luasrcdiet-$(LUCI_LUASRCDIET_VERSION) +PKG_SOURCE_PROTO:=git +PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz +PKG_MIRROR_HASH:=a5c9d098549fbef618e6022b701e66c8c6fb16c910e63219adad3a4e71341f72 PKG_LICENSE:=MIT -HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/luasrcdiet-1.0.0 +HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_SOURCE_SUBDIR) include $(INCLUDE_DIR)/host-build.mk diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js index 6feb9fb351..67ddc6af36 100644 --- a/modules/luci-base/htdocs/luci-static/resources/cbi.js +++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js @@ -443,10 +443,10 @@ var CBIValidatorPrototype = { m6 = this.value.match((bracket == 1) ? /^\[(.+)\]:(\d+)$/ : /^([^\[\]]+):(\d+)$/); if (m4) - return this.assert(this.apply('ip4addr', m4[0], [true]) && this.apply('port', m4[1]), + return this.assert(this.apply('ip4addr', m4[1], [true]) && this.apply('port', m4[2]), _('valid address:port')); - return this.assert(m6 && this.apply('ip6addr', m6[0], [true]) && this.apply('port', m6[1]), + return this.assert(m6 && this.apply('ip6addr', m6[1], [true]) && this.apply('port', m6[2]), _('valid address:port')); }, @@ -808,9 +808,8 @@ function cbi_init() { node.getAttribute('data-type')); } - document.querySelectorAll('.cbi-dropdown').forEach(function(s) { - cbi_dropdown_init(s); - }); + document.querySelectorAll('.cbi-dropdown').forEach(cbi_dropdown_init); + document.querySelectorAll('[data-browser]').forEach(cbi_browser_init); document.querySelectorAll('.cbi-tooltip:not(:empty)').forEach(function(s) { s.parentNode.classList.add('cbi-tooltip-container'); @@ -872,30 +871,26 @@ function cbi_combobox_init(id, values, def, man) { } function cbi_filebrowser(id, defpath) { - var field = document.getElementById(id); + var field = L.dom.elem(id) ? id : document.getElementById(id); var browser = window.open( - cbi_strings.path.browser + ( field.value || defpath || '' ) + '?field=' + id, + cbi_strings.path.browser + (field.value || defpath || '') + '?field=' + field.id, "luci_filebrowser", "width=300,height=400,left=100,top=200,scrollbars=yes" ); browser.focus(); } -function cbi_browser_init(id, resource, defpath) +function cbi_browser_init(field) { - function cbi_browser_btnclick(e) { - cbi_filebrowser(id, defpath); - return false; - } - - var field = document.getElementById(id); - - var btn = document.createElement('img'); - btn.className = 'cbi-image-button'; - btn.src = (resource || cbi_strings.path.resource) + '/cbi/folder.gif'; - field.parentNode.insertBefore(btn, field.nextSibling); - - btn.addEventListener('click', cbi_browser_btnclick); + field.parentNode.insertBefore( + E('img', { + 'src': L.resource('cbi/folder.gif'), + 'class': 'cbi-image-button', + 'click': function(ev) { + cbi_filebrowser(field, field.getAttribute('data-browser')); + ev.preventDefault(); + } + }), field.nextSibling); } CBIDynamicList = { diff --git a/modules/luci-base/luasrc/cbi/datatypes.lua b/modules/luci-base/luasrc/cbi/datatypes.lua index b4206e98df..33d018d2d0 100644 --- a/modules/luci-base/luasrc/cbi/datatypes.lua +++ b/modules/luci-base/luasrc/cbi/datatypes.lua @@ -132,6 +132,10 @@ function ip6prefix(val) return ( val and val >= 0 and val <= 128 ) end +function cidr(val) + return cidr4(val) or cidr6(val) +end + function cidr4(val) local ip, mask = val:match("^([^/]+)/([^/]+)$") diff --git a/modules/luci-base/luasrc/dispatcher.lua b/modules/luci-base/luasrc/dispatcher.lua index d85cb58243..626a46dfd2 100644 --- a/modules/luci-base/luasrc/dispatcher.lua +++ b/modules/luci-base/luasrc/dispatcher.lua @@ -328,7 +328,7 @@ function dispatch(request) assert(media, "No valid theme found") end - local function _ifattr(cond, key, val) + local function _ifattr(cond, key, val, noescape) if cond then local env = getfenv(3) local scope = (type(env.self) == "table") and env.self @@ -339,13 +339,16 @@ function dispatch(request) val = util.serialize_json(val) end end - return string.format( - ' %s="%s"', tostring(key), - util.pcdata(tostring( val - or (type(env[key]) ~= "function" and env[key]) - or (scope and type(scope[key]) ~= "function" and scope[key]) - or "" )) - ) + + val = tostring(val or + (type(env[key]) ~= "function" and env[key]) or + (scope and type(scope[key]) ~= "function" and scope[key]) or "") + + if noescape ~= true then + val = util.pcdata(val) + end + + return string.format(' %s="%s"', tostring(key), val) else return '' end diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua index 49e1657aae..a36a23f321 100644 --- a/modules/luci-base/luasrc/model/network.lua +++ b/modules/luci-base/luasrc/model/network.lua @@ -622,6 +622,12 @@ function del_network(self, n) _uci:delete("wireless", s['.name'], "network") end end) + + local ok, fw = pcall(require, "luci.model.firewall") + if ok then + fw.init() + fw:del_network(n) + end end return r end @@ -1159,6 +1165,10 @@ function protocol.is_dynamic(self) return (self:_ubus("dynamic") == true) end +function protocol.is_auto(self) + return (self:_get("auto") ~= "0") +end + function protocol.is_alias(self) local ifn, parent = nil, nil diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua index c6f4477dff..39fd4a3c89 100644 --- a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua +++ b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua @@ -16,14 +16,12 @@ TZ = { { 'Africa/Brazzaville', 'WAT-1' }, { 'Africa/Bujumbura', 'CAT-2' }, { 'Africa/Cairo', 'EET-2' }, - { 'Africa/Casablanca', '<+01>-1' }, { 'Africa/Ceuta', 'CET-1CEST,M3.5.0,M10.5.0/3' }, { 'Africa/Conakry', 'GMT0' }, { 'Africa/Dakar', 'GMT0' }, { 'Africa/Dar es Salaam', 'EAT-3' }, { 'Africa/Djibouti', 'EAT-3' }, { 'Africa/Douala', 'WAT-1' }, - { 'Africa/El Aaiun', '<+01>-1' }, { 'Africa/Freetown', 'GMT0' }, { 'Africa/Gaborone', 'CAT-2' }, { 'Africa/Harare', 'CAT-2' }, @@ -51,7 +49,7 @@ TZ = { { 'Africa/Nouakchott', 'GMT0' }, { 'Africa/Ouagadougou', 'GMT0' }, { 'Africa/Porto-Novo', 'WAT-1' }, - { 'Africa/Sao Tome', 'WAT-1' }, + { 'Africa/Sao Tome', 'GMT0' }, { 'Africa/Tripoli', 'EET-2' }, { 'Africa/Tunis', 'CET-1' }, { 'Africa/Windhoek', 'CAT-2' }, @@ -272,7 +270,8 @@ TZ = { { 'Asia/Pontianak', 'WIB-7' }, { 'Asia/Pyongyang', 'KST-9' }, { 'Asia/Qatar', '<+03>-3' }, - { 'Asia/Qyzylorda', '<+06>-6' }, + { 'Asia/Qostanay', '<+06>-6' }, + { 'Asia/Qyzylorda', '<+05>-5' }, { 'Asia/Riyadh', '<+03>-3' }, { 'Asia/Sakhalin', '<+11>-11' }, { 'Asia/Samarkand', '<+05>-5' }, @@ -283,7 +282,7 @@ TZ = { { 'Asia/Taipei', 'CST-8' }, { 'Asia/Tashkent', '<+05>-5' }, { 'Asia/Tbilisi', '<+04>-4' }, - { 'Asia/Tehran', '<+0330>-3:30<+0430>,J80/0,J264/0' }, + { 'Asia/Tehran', '<+0330>-3:30<+0430>,J79/24,J263/24' }, { 'Asia/Thimphu', '<+06>-6' }, { 'Asia/Tokyo', 'JST-9' }, { 'Asia/Tomsk', '<+07>-7' }, diff --git a/modules/luci-base/luasrc/view/cbi/browser.htm b/modules/luci-base/luasrc/view/cbi/browser.htm index 362c40bec1..eb47ffafe6 100644 --- a/modules/luci-base/luasrc/view/cbi/browser.htm +++ b/modules/luci-base/luasrc/view/cbi/browser.htm @@ -1,8 +1,10 @@ -<% local v = self:cfgvalue(section) or self.default -%> <%+cbi/valueheader%> - <input class="cbi-input-text" type="text"<%= attr("value", v) .. attr("name", cbid) .. attr("id", cbid) %> /> - <script type="text/javascript"> -cbi_init() -cbi_browser_init('<%=cbid%>', '<%=resource%>', '<%=url('admin/filebrowser')%>'<%=self.default_path and ", '"..self.default_path.."'"%>); - </script> + +<input class="cbi-input-text" type="text"<%= + attr("id", cbid) .. + attr("name", cbid) .. + attr("value", self:cfgvalue(section) or self.default) .. + attr("data-browser", self.default_path or "") +%> /> + <%+cbi/valuefooter%> diff --git a/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm b/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm index ea0568f409..cb11d8f61a 100644 --- a/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm +++ b/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm @@ -6,7 +6,7 @@ <div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %>"<%= attr("data-name", self.option) .. ifattr(ftype and #ftype > 0, "data-type", ftype) .. - ifattr(title and #title > 0, "data-title", title) .. - ifattr(descr and #descr > 0, "data-description", descr) + ifattr(title and #title > 0, "data-title", title, true) .. + ifattr(descr and #descr > 0, "data-description", descr, true) %>> <div id="cbi-<%=self.config.."-"..section.."-"..self.option%>" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>"> diff --git a/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm b/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm index 55a7e31687..f23e51d18d 100644 --- a/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm +++ b/modules/luci-base/luasrc/view/cbi/network_ifacelist.htm @@ -41,7 +41,7 @@ <input type="hidden" name="<%=cbeid%>" value="1" /> -<div class="cbi-dropdown" display-items="5" placeholder="<%:-- please select -- %>"<%= +<div class="cbi-dropdown" display-items="10" placeholder="<%:-- please select -- %>"<%= attr("name", cbid) .. ifattr(self.widget == "checkbox", "multiple", "multiple") .. ifattr(self.widget == "checkbox", "optional", "optional") diff --git a/modules/luci-base/luasrc/view/cbi/network_netlist.htm b/modules/luci-base/luasrc/view/cbi/network_netlist.htm index d3efcc062f..3ee4274a33 100644 --- a/modules/luci-base/luasrc/view/cbi/network_netlist.htm +++ b/modules/luci-base/luasrc/view/cbi/network_netlist.htm @@ -20,7 +20,7 @@ end -%> -<div class="cbi-dropdown" display-items="5" placeholder="<%:-- please select -- %>"<%= +<div class="cbi-dropdown" display-items="10" placeholder="<%:-- please select -- %>"<%= attr("name", cbid) .. ifattr(self.widget == "checkbox", "multiple", "multiple") .. ifattr(self.widget == "checkbox", "optional", "optional") diff --git a/modules/luci-base/luasrc/view/cbi/tblsection.htm b/modules/luci-base/luasrc/view/cbi/tblsection.htm index 408dfa7fe8..11c2206d8c 100644 --- a/modules/luci-base/luasrc/view/cbi/tblsection.htm +++ b/modules/luci-base/luasrc/view/cbi/tblsection.htm @@ -127,7 +127,7 @@ end section = k local sectionname = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k) - local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname) + local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname, true) local colorclass = (self.extedit or self.rowcolors) and rowstyle() or "" local scope = { valueheader = "cbi/cell_valueheader", diff --git a/modules/luci-base/luasrc/view/cbi/tsection.htm b/modules/luci-base/luasrc/view/cbi/tsection.htm index 547a793329..8f3b7f0ffb 100644 --- a/modules/luci-base/luasrc/view/cbi/tsection.htm +++ b/modules/luci-base/luasrc/view/cbi/tsection.htm @@ -2,6 +2,11 @@ <% if self.title and #self.title > 0 then -%> <legend><%=self.title%></legend> <%- end %> + <% if self.error_msg and #self.error_msg > 0 then -%> + <div class="cbi-section-error"> + <%=self.error_msg%> + </div> + <%- end %> <% if self.description and #self.description > 0 then -%> <div class="cbi-section-descr"><%=self.description%></div> <%- end %> diff --git a/modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm b/modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm index ebb02e489b..eeb1d5c5cb 100644 --- a/modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm +++ b/modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm @@ -4,6 +4,7 @@ var freqlist = <%= luci.http.write_json(self.iwinfo.freqlist) %>; var hwmodes = <%= luci.http.write_json(self.iwinfo.hwmodelist or {}) %>; var htmodes = <%= luci.http.write_json(self.iwinfo.htmodelist) %>; + var acs = <%= luci.http.write_json(self.hostapd_acs or 0) %>; var channels = { '11g': [ @@ -14,6 +15,10 @@ ] }; + if (acs < 1) { + channels[(freqlist[freqlist.length - 1].mhz > 2484) ? '11a' : '11g'].length = 0; + } + for (var i = 0; i < freqlist.length; i++) channels[(freqlist[i].mhz > 2484) ? '11a' : '11g'].push( freqlist[i].channel, diff --git a/modules/luci-base/luasrc/view/lease_status.htm b/modules/luci-base/luasrc/view/lease_status.htm index bf2a8968d1..bbaf5986ba 100644 --- a/modules/luci-base/luasrc/view/lease_status.htm +++ b/modules/luci-base/luasrc/view/lease_status.htm @@ -79,17 +79,24 @@ </div> </div> -<div class="cbi-section" style="display:none"> - <h3><%:Active DHCPv6 Leases%></h3> - <div class="table" id="lease6_status_table"> - <div class="tr table-titles"> - <div class="th"><%:Host%></div> - <div class="th"><%:IPv6-Address%></div> - <div class="th"><%:DUID%></div> - <div class="th"><%:Leasetime remaining%></div> - </div> - <div class="tr placeholder"> - <div class="td"><em><%:Collecting data...%></em></div> +<% + local fs = require "nixio.fs" + local has_ipv6 = fs.access("/proc/net/ipv6_route") + + if has_ipv6 then +-%> + <div class="cbi-section" style="display:none"> + <h3><%:Active DHCPv6 Leases%></h3> + <div class="table" id="lease6_status_table"> + <div class="tr table-titles"> + <div class="th"><%:Host%></div> + <div class="th"><%:IPv6-Address%></div> + <div class="th"><%:DUID%></div> + <div class="th"><%:Leasetime remaining%></div> + </div> + <div class="tr placeholder"> + <div class="td"><em><%:Collecting data...%></em></div> + </div> </div> </div> -</div> +<% end -%> diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index f9b02ae561..e4ef57e09f 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(sense interfícies adjuntes)" msgid "-- Additional Field --" msgstr "-- Camp addicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Escolliu, si us plau --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalitzat --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Càrrega d'1 minut:" @@ -98,7 +102,7 @@ msgstr "Càrrega d'1 minut:" msgid "15 Minute Load:" msgstr "Càrrega de 15 minuts:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Càrrega de 5 minuts:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "Es consultaran els servidors <abbr title=\"Domain Name System\">DNS</abbr> " "segons l'ordre del fitxer de resolució" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -193,7 +197,7 @@ msgstr "Passarel·la <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuració dels <abbr title=\"Light Emitting Diode\">LED</abbr>s" @@ -302,7 +306,7 @@ msgstr "" msgid "ATM device number" msgstr "Número de dispositiu ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -310,8 +314,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Concentrador d'accés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Punt d'accés" @@ -341,7 +345,7 @@ msgstr "Arrendaments DHCP actius" msgid "Active DHCPv6 Leases" msgstr "Arrendaments DHCPv6 actius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -349,8 +353,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -388,8 +392,8 @@ msgstr "Fitxers de Hosts addicionals" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adreça" @@ -398,30 +402,34 @@ msgid "Address to access local relay bridge" msgstr "Adreça per accedir al relay bridge local" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administració" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Paràmetres avançats" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -450,21 +458,21 @@ msgstr "" "Permetre l'autenticació <abbr title=\"Secure Shell\">SSH</abbr> amb " "contrasenya" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Permet-les totes menys les llistades" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Permet només les llistades" @@ -507,14 +515,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -586,7 +594,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -598,17 +606,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configuració d'antena" @@ -634,7 +642,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Assigna interfícies..." @@ -649,7 +657,7 @@ msgstr "" msgid "Associated Stations" msgstr "Estacions associades" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -658,7 +666,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autenticació" @@ -676,12 +684,11 @@ msgstr "Es requereix autenticació" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Refresc automàtic" @@ -753,7 +760,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -784,7 +791,7 @@ msgstr "Enrere als resultats de l'escaneig" msgid "Backup" msgstr "Còpia de seguretat" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Còpia de seguretat i microprogramari" @@ -796,12 +803,12 @@ msgstr "Llista de còpies de seguretat" msgid "Bad address specified!" msgstr "Adreça mal especificada!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -831,7 +838,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Velocitat de bits" @@ -839,7 +846,7 @@ msgstr "Velocitat de bits" msgid "Bogus NX Domain Override" msgstr "Substitució dels dominis NX falsos" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Pont" @@ -923,7 +930,7 @@ msgstr "Canvis aplicats." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Canvia la paraula clau de l'administrador per accedir al dispositiu" @@ -931,12 +938,12 @@ msgstr "Canvia la paraula clau de l'administrador per accedir al dispositiu" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canal" @@ -979,7 +986,7 @@ msgstr "" "ompliu el camp <em>crea</em> per definir una nova zona i adjuntar-hi la " "interfície." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -987,7 +994,7 @@ msgstr "" "Trieu les xarxes que voleu adjuntar a la interfície sense fil o ompliu el " "camp <em>crea</em> per definir una xarxa nova." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Xifra" @@ -1009,8 +1016,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Client" @@ -1052,7 +1059,7 @@ msgstr "Tanca la llista..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Aplegant dades..." @@ -1068,7 +1075,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuració comuna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1100,7 +1107,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmació" @@ -1109,12 +1116,12 @@ msgid "Connect" msgstr "Connecta" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Connectat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Límit de connexió" @@ -1137,9 +1144,9 @@ msgstr "" msgid "Country" msgstr "País" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Codi de País" @@ -1164,11 +1171,11 @@ msgstr "Crea interfície" msgid "Create a bridge over multiple interfaces" msgstr "Crea un pont entre múltiples interfícies" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Crític" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Nivell de registre del Cron" @@ -1201,15 +1208,15 @@ msgstr "" "Personalitza el comportament dels <abbr title=\"Light Emitting Diode\">LED</" "abbr>s del dispositiu, si és possible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1223,7 +1230,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP i DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Client DHCP" @@ -1243,16 +1250,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1285,7 +1292,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1293,7 +1300,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1301,18 +1308,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depuració" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "%d per defecte" @@ -1349,7 +1356,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Suprimeix" @@ -1363,7 +1370,7 @@ msgstr "" msgid "Delete this network" msgstr "Suprimeix aquesta xarxa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1379,8 +1386,8 @@ msgstr "Destí" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1435,7 +1442,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1453,11 +1460,11 @@ msgstr "" msgid "Disabled" msgstr "Inhabilitat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1480,16 +1487,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optimització de distància" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distància al membre de la xarxa més allunyat en metres." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversitat" @@ -1592,7 +1599,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Mètode EAP" @@ -1617,7 +1624,7 @@ msgstr "Edita aquesta interfície" msgid "Edit this network" msgstr "Edita aquesta xarxa" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergència" @@ -1652,11 +1659,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Habilita negociació IPv6 en la enllaç PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Habilita el passatge de trames enormes" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Habilita el client NTP" @@ -1668,27 +1675,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Habilita el servidor TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Habilita la funcionalitat VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Habilita l'aprenentatge i l'envelliment" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1722,7 +1729,7 @@ msgstr "Habilitat" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1739,9 +1746,9 @@ msgstr "Mode d'encapsulació" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Encriptació" @@ -1761,28 +1768,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Esborrant..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Error" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Adaptador Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch Ethernet" @@ -1798,7 +1805,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Caduca" @@ -1811,23 +1818,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor de registre del sistema extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port del servidor de registre del sistema extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Protocol del servidor de registre del sistema extern" @@ -1835,15 +1842,15 @@ msgstr "Protocol del servidor de registre del sistema extern" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1935,7 +1942,7 @@ msgstr "Escriu una imatge nova a la memòria flaix" msgid "Flash operations" msgstr "Operacions a la memòria flaix" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Escrivint a la memòria flaix..." @@ -1949,11 +1956,11 @@ msgstr "" msgid "Force" msgstr "Força" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Força el CCMP (AES)" @@ -1961,11 +1968,11 @@ msgstr "Força el CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Força el DHCP en aquesta xarxa encara que es detecti altre servidor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Força el TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Força el TKIP i el CCMP (AES)" @@ -1989,7 +1996,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Reenvia el trànsit DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1997,7 +2004,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Reenvia el trànsit difós" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2005,12 +2012,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Mode de reenviament" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Llindar de fragmentació" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -2027,7 +2034,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2036,8 +2043,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Només GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Passarel·la" @@ -2060,7 +2067,7 @@ msgstr "Ajusts generals" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2068,7 +2075,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2097,7 +2104,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Vés a la configuració de contrasenya" @@ -2122,7 +2129,7 @@ msgstr "Contrasenya de HE.net" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2130,7 +2137,7 @@ msgstr "" msgid "Hang Up" msgstr "Penja" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2146,9 +2153,9 @@ msgstr "" "Ací pots configurar els aspectes bàsics del teu dispositiu, com el nom de la " "màquina o el fus horari." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "No mostris l'<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2183,8 +2190,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Nom de màquina" @@ -2245,7 +2251,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Tallafocs IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2337,7 +2343,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2404,7 +2410,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identitat" @@ -2516,10 +2522,14 @@ msgstr "Temps d'espera d'inactivitat" msgid "Inbound:" msgstr "Entrant:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informació" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2540,7 +2550,7 @@ msgstr "" msgid "Install package %q" msgstr "Instal·la el paquet %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Instal·la extensions de protocol" @@ -2558,7 +2568,7 @@ msgstr "Interfície" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Configuració d'interfície" @@ -2570,12 +2580,12 @@ msgstr "Visió de conjunt de la interfície" msgid "Interface is reconnecting..." msgstr "La interfície s'està reconnectant..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2594,15 +2604,15 @@ msgid "Internal Server Error" msgstr "Error de servidor intern" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Invàlid" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2610,7 +2620,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Usuari i/o contrasenya invàlids! Si us plau prova-ho de nou." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2624,10 +2634,9 @@ msgstr "" "si us plau verifica el fitxer d'imatge!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Es requereix JavaScript!" @@ -2656,18 +2665,22 @@ msgstr "Registre del nucli" msgid "Kernel Version" msgstr "Versió del nucli" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Clau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Clau #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Mata" @@ -2707,7 +2720,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Llengua" @@ -2715,7 +2728,7 @@ msgstr "Llengua" msgid "Language and Style" msgstr "Llengua i estil" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2766,19 +2779,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2792,7 +2805,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2801,7 +2814,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2841,7 +2854,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Càrrega" @@ -2890,7 +2902,7 @@ msgid "Local Startup" msgstr "Inici local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora local" @@ -2926,7 +2938,7 @@ msgstr "Localitza les peticions" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Nivell de sortida de registre" @@ -2946,7 +2958,7 @@ msgstr "Entra" msgid "Logout" msgstr "Surt" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2962,24 +2974,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Adreça MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtre d'adreces MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtre MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Llista MAC" @@ -3025,11 +3037,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3063,12 +3075,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memòria" @@ -3077,7 +3093,7 @@ msgstr "Memòria" msgid "Memory usage (%)" msgstr "Ús de Memòria (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3089,11 +3105,11 @@ msgstr "" msgid "Metric" msgstr "Mètrica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3101,16 +3117,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Manca l'extensió de protocol del protocol %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mode" @@ -3138,12 +3154,16 @@ msgstr "" msgid "Modem init timeout" msgstr "Temps d'espera d'inici de mòdem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3153,7 +3173,7 @@ msgstr "" msgid "Mount Point" msgstr "Punt de muntatge" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3203,7 +3223,7 @@ msgstr "Baixa" msgid "Move up" msgstr "Puja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3227,7 +3247,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidats de servidor NTP" @@ -3245,18 +3265,17 @@ msgstr "Nom de la nova interfície" msgid "Name of the new network" msgstr "Nom de la nova xarxa" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navegació" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Màscara de xarxa" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3280,7 +3299,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Xarxa sense interfícies." @@ -3305,7 +3324,7 @@ msgid "No files found" msgstr "Cap fitxer trobat" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "No hi ha informació disponible" @@ -3327,10 +3346,9 @@ msgid "No network name specified" msgstr "Cap nom de xarxa especificat" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "No hi ha cap contrasenya establerta!" @@ -3358,7 +3376,7 @@ msgstr "Cap zona assignada" msgid "Noise" msgstr "Soroll" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3366,7 +3384,7 @@ msgstr "" msgid "Noise:" msgstr "Soroll:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3379,7 +3397,7 @@ msgstr "" msgid "None" msgstr "Cap" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3392,16 +3410,20 @@ msgstr "No trobat" msgid "Not associated" msgstr "No associat" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "No connectat" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Avís" @@ -3413,7 +3435,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3495,7 +3517,7 @@ msgstr "Opció canviada" msgid "Option removed" msgstr "Opció treta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3602,7 +3624,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3664,7 +3686,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3717,8 +3739,8 @@ msgid "Part of zone %q" msgstr "Part de la zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3728,14 +3750,21 @@ msgstr "Contrasenya" msgid "Password authentication" msgstr "Autenticació per contrasenya" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Contrasenya de la clau privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3744,27 +3773,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Ruta als Certificats CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Ruta a la clau privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3842,6 +3871,14 @@ msgstr "Si us plau entra el teu nom d'usuari i contrasenya." msgid "Policy" msgstr "Política" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3850,11 +3887,11 @@ msgstr "Port" msgid "Port status:" msgstr "Estatus de port" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3866,7 +3903,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3889,8 +3926,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Evita la comunicació client a client" @@ -3907,7 +3944,7 @@ msgstr "Procedeix" msgid "Processes" msgstr "Processos" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3917,8 +3954,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocol" @@ -3931,7 +3968,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Habilita el servidor NTP" @@ -3939,7 +3976,7 @@ msgstr "Habilita el servidor NTP" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3964,7 +4001,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Calidad" @@ -3974,11 +4011,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3986,8 +4023,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Llindar RTS/CTS" @@ -4001,27 +4042,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Velocitat RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4077,7 +4118,7 @@ msgstr "Trànsit en temps real" msgid "Realtime Wireless" msgstr "Dispositiu sense fils en temps real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4085,7 +4126,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reinicia" @@ -4103,8 +4144,8 @@ msgstr "Arranca de nou el sistema operatiu del teu dispositiu" msgid "Receive" msgstr "Recepció" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena receptora" @@ -4171,7 +4212,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4194,10 +4235,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4252,8 +4293,8 @@ msgid "Restore backup" msgstr "Restaura còpia de seguretat" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Mostra/amaga la contrasenya" @@ -4300,8 +4341,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Contrasenya de l'encaminador" @@ -4339,7 +4380,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Accés SSH" @@ -4356,7 +4397,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Claus SSH" @@ -4364,7 +4405,7 @@ msgstr "Claus SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4375,7 +4416,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Desa" @@ -4404,7 +4445,7 @@ msgstr "Escaneja" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tasques programades" @@ -4439,7 +4480,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Clients separats" @@ -4474,7 +4515,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configura la sincronització de l'hora" @@ -4491,7 +4532,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4499,7 +4540,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4522,11 +4563,11 @@ msgstr "Atura aquesta interfície" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Senyal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4542,7 +4583,7 @@ msgstr "Mida" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4551,21 +4592,19 @@ msgstr "" msgid "Skip" msgstr "Salta" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Salta al contingut" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Salta a la navegació" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4652,7 +4691,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Arrencada" @@ -4672,7 +4711,7 @@ msgstr "Leases estàtics" msgid "Static Routes" msgstr "Rutes estàtiques" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Adreça estàtica" @@ -4683,7 +4722,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4703,6 +4742,10 @@ msgstr "Atura" msgid "Strict order" msgstr "Ordre estricte" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Envia" @@ -4728,15 +4771,15 @@ msgstr "Entrada d'intercanvi" msgid "Switch" msgstr "Commutador" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Commutador %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Commutador %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4745,7 +4788,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4761,8 +4804,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Sincronitza amb el navegador" @@ -4787,7 +4834,7 @@ msgstr "Registre del sistema" msgid "System Properties" msgstr "Propietats del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Mida de la memòria intermèdia per al registre del sistema" @@ -4993,7 +5040,7 @@ msgstr "El protocol seleccionat necessita un dispositiu assignat" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5001,7 +5048,7 @@ msgstr "" "El sistema està esborrant la partició de configuració i es reiniciarà quan " "termini." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5027,7 +5074,7 @@ msgstr "" "La imatge pujada no conté un format suportat. Assegura't de triar el format " "d'imatge genèric per la teva plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5055,10 +5102,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5148,24 +5194,24 @@ msgstr "" "actualment." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Aquesta secció encara no conté cap valor" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronització de l'hora" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "La sincronització de hora encara no s'ha configurat." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zona horària" @@ -5208,7 +5254,7 @@ msgstr "Trànsit" msgid "Transfer" msgstr "Transferència" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Taxa de transmissió" @@ -5216,14 +5262,14 @@ msgstr "Taxa de transmissió" msgid "Transmit" msgstr "Transmissió" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Potència de transmissió" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antena transmissora" @@ -5239,7 +5285,7 @@ msgstr "Mode d'activació" msgid "Tunnel ID" msgstr "ID del túnel" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interfície del túnel" @@ -5254,7 +5300,7 @@ msgid "Tx-Power" msgstr "Potència Tx" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipus" @@ -5313,19 +5359,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Desconegut" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Sense gestionar" @@ -5339,7 +5385,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5354,7 +5399,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Tipus de protocol no suportat." @@ -5407,8 +5452,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5511,11 +5556,11 @@ msgstr "" msgid "Used" msgstr "Usat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5543,11 +5588,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs en %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs en %q (%s)" @@ -5593,18 +5638,18 @@ msgstr "Verifica" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Sistema obert WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Clau compartit WEP" @@ -5612,8 +5657,8 @@ msgstr "Clau compartit WEP" msgid "WEP passphrase" msgstr "Contrasenya WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Mode WMM" @@ -5621,9 +5666,9 @@ msgstr "Mode WMM" msgid "WPA passphrase" msgstr "Contrasenya WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5647,8 +5692,8 @@ msgstr "" msgid "Waiting for device..." msgstr "Esperant el dispositiu..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Advertència" @@ -5656,7 +5701,11 @@ msgstr "Advertència" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5683,7 +5732,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5697,12 +5746,12 @@ msgstr "" msgid "Wireless" msgstr "Sense fils" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Adaptador sense fils" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Xarxa sense fils" @@ -5710,20 +5759,20 @@ msgstr "Xarxa sense fils" msgid "Wireless Overview" msgstr "Resum sense fils" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Seguretat sense fils" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "El dispositiu sense fils està inhabilitat" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "El dispositiu sense fils està sense associar" @@ -5743,7 +5792,7 @@ msgstr "La xarxa sense fils està habilitada" msgid "Write received DNS requests to syslog" msgstr "Escriure les peticions DNS rebudes al registre del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Escriure el registre del sistema al fitxer" @@ -5763,36 +5812,28 @@ msgstr "" "dispositiu pot resultar inaccessible!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Has d'activar el JavaScript al teu navegador o LuCI no funcionarà " "correctament." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5803,11 +5844,11 @@ msgstr "qualsevol" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5860,8 +5901,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "inhabilita" @@ -5920,19 +5961,6 @@ msgstr "si el destí és una xarxa" msgid "input" msgstr "entrada" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5965,7 +5993,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "fitxer <abbr title=\"Domain Name System\">DNS</abbr> local" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5993,20 +6021,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "parat" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "engegat" @@ -6050,8 +6076,8 @@ msgstr "" msgid "routed" msgstr "encaminat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6072,11 +6098,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "etiquetat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6103,7 +6129,7 @@ msgstr "sense espeficicar" msgid "unspecified -or- create:" msgstr "sense espeficicar -o- crear:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "sense etiquetar" @@ -6273,6 +6299,9 @@ msgstr "sí" msgid "« Back" msgstr "« Enrere" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index 9bc284ce3a..b513ddcfa2 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -23,7 +23,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -55,16 +55,16 @@ msgstr "(bez rozhraní připojení)" msgid "-- Additional Field --" msgstr "-- Doplňující pole --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Prosím vyberte --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- vlastní --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Zatížení za 1 minutu:" @@ -96,7 +100,7 @@ msgstr "Zatížení za 1 minutu:" msgid "15 Minute Load:" msgstr "Zatížení za 15 minut:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Zatížení za 5 minut:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servery budou dotazovány podle " "pořadí resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -190,7 +194,7 @@ msgstr "<abbr title=\"Internet Protokol Verze 6\">IPv6</abbr>-Brána" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurace" @@ -297,7 +301,7 @@ msgstr "" msgid "ATM device number" msgstr "číslo ATM zařízení" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -305,8 +309,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Přístupový koncentrátor" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Přístupový bod" @@ -340,7 +344,7 @@ msgstr "Aktivní propůjčené DHCP adresy (leases)" msgid "Active DHCPv6 Leases" msgstr "Aktivní propůjčené DHCPv6 adresy (leases)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -348,8 +352,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -386,8 +390,8 @@ msgstr "Dodatečné Hosts soubory" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adresa" @@ -396,30 +400,34 @@ msgid "Address to access local relay bridge" msgstr "Adresa pro přístup k místnímu relay bridge" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Správa" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Pokročilé nastavení" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Upozornění" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -446,21 +454,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Povolit <abbr title=\"Secure Shell\">SSH</abbr> autentizaci heslem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Povolit vše mimo uvedené" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Povolit pouze uvedené" @@ -503,14 +511,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -582,7 +590,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -594,17 +602,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Anténa 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Anténa 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Konfigurace antén" @@ -630,7 +638,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Přiřadit rozhraní..." @@ -645,7 +653,7 @@ msgstr "" msgid "Associated Stations" msgstr "Připojení klienti" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -654,7 +662,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autentizace" @@ -672,12 +680,11 @@ msgstr "Vyžadována autorizace" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automaticky obnovovat" @@ -749,7 +756,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -779,7 +786,7 @@ msgstr "Zpět k výsledkům vyhledávání" msgid "Backup" msgstr "Zálohovat" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Zálohovat / nahrát firmware" @@ -791,12 +798,12 @@ msgstr "Seznam souborů k zálohování" msgid "Bad address specified!" msgstr "Zadána neplatná adresa!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -826,7 +833,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Přenosová rychlost" @@ -834,7 +841,7 @@ msgstr "Přenosová rychlost" msgid "Bogus NX Domain Override" msgstr "Přepíše falešnou hodnotu NX Domény" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Síťový most" @@ -918,7 +925,7 @@ msgstr "Změny aplikovány." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Změní administrátorské heslo pro přístup k zařízení" @@ -926,12 +933,12 @@ msgstr "Změní administrátorské heslo pro přístup k zařízení" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kanál" @@ -974,7 +981,7 @@ msgstr "" "zóny a její následné přiřazení danému rozhraní vyplňte pole <em>vytvořit</" "em>." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -982,7 +989,7 @@ msgstr "" "Vyberte síť(ě), které chcete připojit k tomuto bezdrátovému rozhraní, nebo " "vyplňte pole <em>vytvořit</em> a pojmenujte novou síť." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Šifra" @@ -1003,8 +1010,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Klient" @@ -1048,7 +1055,7 @@ msgstr "Zavřít seznam..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Probíhá sběr dat..." @@ -1064,7 +1071,7 @@ msgstr "" msgid "Common Configuration" msgstr "Společná nastavení" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1096,7 +1103,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Ověření" @@ -1105,12 +1112,12 @@ msgid "Connect" msgstr "Připojit" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Připojeno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Omezení počtu připojení" @@ -1133,9 +1140,9 @@ msgstr "" msgid "Country" msgstr "Země" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Kód země" @@ -1160,11 +1167,11 @@ msgstr "Vytvořit rozhraní" msgid "Create a bridge over multiple interfaces" msgstr "Vytvořit síťový most přes více rozhraní" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritické" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Úroveň protokolování Cronu" @@ -1197,15 +1204,15 @@ msgstr "" "Upraví chování <abbr title=\"Light Emitting Diode\">LED</abbr> diod zařízení " "pokud je to možné." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1219,7 +1226,7 @@ msgstr "DHCP server" msgid "DHCP and DNS" msgstr "DHCP a DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP klient" @@ -1239,16 +1246,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1281,7 +1288,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1289,7 +1296,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1297,18 +1304,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Ladění" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Výchozí %d" @@ -1347,7 +1354,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Odstranit" @@ -1361,7 +1368,7 @@ msgstr "" msgid "Delete this network" msgstr "Odstranit tuto síť" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1377,8 +1384,8 @@ msgstr "Cíl" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1433,7 +1440,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1451,11 +1458,11 @@ msgstr "" msgid "Disabled" msgstr "Zakázáno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1478,16 +1485,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optimalizace na vzdálenost" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Vzdálenost nejodlehlejšího člena sítě v metrech." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diverzita" @@ -1594,7 +1601,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Metoda EAP" @@ -1619,7 +1626,7 @@ msgstr "Upravit toto rozhraní" msgid "Edit this network" msgstr "Upravit tuto síť" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Záchrana" @@ -1654,11 +1661,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Na PPP spoji povolit vyjednání IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Povolit průchod jumbo rámců" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Povolit NTP klienta" @@ -1670,27 +1677,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Povolit TFTP server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Povolit funkcionalitu VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Povolit ARP učení a stárnutí" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1724,7 +1731,7 @@ msgstr "Povoleno" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1741,9 +1748,9 @@ msgstr "Režim zapouzdření" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Šifrování" @@ -1763,28 +1770,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Odstraňování..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Chyba" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernetový adaptér" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernetový switch" @@ -1800,7 +1807,7 @@ msgstr "Rozšířit hostitele" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Vyprší" @@ -1815,23 +1822,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Externí protokolovací server" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port externího protokolovacího serveru" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1839,15 +1846,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1939,7 +1946,7 @@ msgstr "Nahrát nový obraz s firmwarem" msgid "Flash operations" msgstr "Operace nad flash pamětí" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Nahrávám..." @@ -1953,11 +1960,11 @@ msgstr "" msgid "Force" msgstr "Vynutit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Vynutit CCMP (AES)" @@ -1965,11 +1972,11 @@ msgstr "Vynutit CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Na této síti vynutit DHCP i v případě detekování jiného serveru." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Vynutit TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Vynutit TKIP a CCMP (AES)" @@ -1993,7 +2000,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Přeposílat DHCP provoz" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2001,7 +2008,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Přeposílat broadcasty" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2009,12 +2016,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Režim přeposílání" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Hranice fragmentace" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Dávkování rámců" @@ -2031,7 +2038,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2040,8 +2047,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Pouze GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Brána" @@ -2064,7 +2071,7 @@ msgstr "Obecná nastavení" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Obecné nastavení" @@ -2072,7 +2079,7 @@ msgstr "Obecné nastavení" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2099,7 +2106,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Přejít na nastavení hesla..." @@ -2124,7 +2131,7 @@ msgstr "Heslo HE.net" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2132,7 +2139,7 @@ msgstr "" msgid "Hang Up" msgstr "Zavěsit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2148,9 +2155,9 @@ msgstr "" "Nastavení základních vlastností zařízení jako je časová zóna nebo název " "zařízení." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Skrývat <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2185,8 +2192,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Jméno hostitele" @@ -2247,7 +2253,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 firewall" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2339,7 +2345,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2406,7 +2412,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identita" @@ -2518,10 +2524,14 @@ msgstr "Časový limit nečinnosti" msgid "Inbound:" msgstr "Příchozí:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2542,7 +2552,7 @@ msgstr "" msgid "Install package %q" msgstr "Instalovat balíček %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Instalovat protokolové rozšíření..." @@ -2560,7 +2570,7 @@ msgstr "Rozhraní" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Konfigurace rozhraní" @@ -2572,12 +2582,12 @@ msgstr "Přehled rozhraní" msgid "Interface is reconnecting..." msgstr "Rozhraní se znovu připojuje..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Rozhraní není přítomné nebo je dosud nepřipojeno." @@ -2597,16 +2607,16 @@ msgid "Internal Server Error" msgstr "Vnitřní chyba serveru" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Neplatná vstupní hodnota" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "Uvedené VLAN ID je neplatné! Jsou povolena pouze ID z rozsahu %d až %d." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Uvedené VLAN ID je neplatné! Každé ID musí být jedinečné" @@ -2614,7 +2624,7 @@ msgstr "Uvedené VLAN ID je neplatné! Každé ID musí být jedinečné" msgid "Invalid username and/or password! Please try again." msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2628,10 +2638,9 @@ msgstr "" "Prosím ověřte soubor s obrazem!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Vyžadován JavaScript!" @@ -2660,18 +2669,22 @@ msgstr "Záznam jádra" msgid "Kernel Version" msgstr "Verze jádra" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Klíč" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Klíč #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Zabít" @@ -2711,7 +2724,7 @@ msgstr "LLC" msgid "Label" msgstr "Popis" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Jazyk" @@ -2719,7 +2732,7 @@ msgstr "Jazyk" msgid "Language and Style" msgstr "Jazyk a styl" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2770,19 +2783,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2798,7 +2811,7 @@ msgstr "" "Seznam <abbr title=\"Domain Name System\">DNS</abbr> serverů, na které " "přeposílat požadavky" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2807,7 +2820,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2846,7 +2859,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Port pro příchozí dotazy DNS" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Zátěž" @@ -2895,7 +2907,7 @@ msgid "Local Startup" msgstr "Místní startup" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Místní čas" @@ -2937,7 +2949,7 @@ msgstr "Lokalizační dotazy" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Úroveň logování" @@ -2957,7 +2969,7 @@ msgstr "Přihlásit" msgid "Logout" msgstr "Odhlásit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2973,24 +2985,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adresa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtr MAC adres" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtr MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Seznam Mac" @@ -3036,11 +3048,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3074,12 +3086,16 @@ msgstr "Maximální počet zapůjčených adres." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Paměť" @@ -3088,7 +3104,7 @@ msgstr "Paměť" msgid "Memory usage (%)" msgstr "Využití paměti (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3100,11 +3116,11 @@ msgstr "" msgid "Metric" msgstr "Metrika" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3112,16 +3128,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Chybějící rozšíření protokolu %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mód" @@ -3149,12 +3165,16 @@ msgstr "" msgid "Modem init timeout" msgstr "Časový limit inicializace modemu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Sledování" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Připojit vstup" @@ -3164,7 +3184,7 @@ msgstr "Připojit vstup" msgid "Mount Point" msgstr "Přípojný bod" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3214,7 +3234,7 @@ msgstr "Přesunout dolů" msgid "Move up" msgstr "Přesunout nahoru" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3238,7 +3258,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Kandidáti NTP serveru" @@ -3256,18 +3276,17 @@ msgstr "Název nového rozhraní" msgid "Name of the new network" msgstr "Název nové sítě" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigace" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Síťová maska" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3291,7 +3310,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Síť bez rozhraní." @@ -3316,7 +3335,7 @@ msgid "No files found" msgstr "Nebyly nalezeny žádné soubory" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Údaje nejsou k dispozici" @@ -3338,10 +3357,9 @@ msgid "No network name specified" msgstr "Neuvedeno jméno sítě" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Žádné heslo!" @@ -3369,7 +3387,7 @@ msgstr "Žádná zóna nepřiřazena" msgid "Noise" msgstr "Šum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3377,7 +3395,7 @@ msgstr "" msgid "Noise:" msgstr "Šum:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3390,7 +3408,7 @@ msgstr "" msgid "None" msgstr "Žádný" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normální" @@ -3403,16 +3421,20 @@ msgstr "Nenalezeno" msgid "Not associated" msgstr "Neasociováno" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Nepřipojeno" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Oznámení" @@ -3424,7 +3446,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3505,7 +3527,7 @@ msgstr "Volba změněna" msgid "Option removed" msgstr "Volba odstraněna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3612,7 +3634,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3676,7 +3698,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3729,8 +3751,8 @@ msgid "Part of zone %q" msgstr "Část zóny %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3740,14 +3762,21 @@ msgstr "Heslo" msgid "Password authentication" msgstr "Autentizace heslem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Heslo privátního klíče" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3756,27 +3785,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Cesta k certifikátu klienta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Cesta k privátnímu klíči" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3854,6 +3883,14 @@ msgstr "Prosím vložte vaše uživatelské jméno a heslo." msgid "Policy" msgstr "Politika" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3862,11 +3899,11 @@ msgstr "Port" msgid "Port status:" msgstr "Stav portu:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3878,7 +3915,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3903,8 +3940,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Zabraňuje komunikaci klient-klient" @@ -3921,7 +3958,7 @@ msgstr "Pokračovat" msgid "Processes" msgstr "Procesy" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3931,8 +3968,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokol" @@ -3945,7 +3982,7 @@ msgstr "Protokol nového rozhraní" msgid "Protocol support is not installed" msgstr "Podpora pro protokol není nainstalována" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Poskytování NTP serveru" @@ -3953,7 +3990,7 @@ msgstr "Poskytování NTP serveru" msgid "Provide new network" msgstr "Poskytování nové sítě" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3978,7 +4015,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Kvalita" @@ -3988,11 +4025,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4000,8 +4037,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Práh RTS/CTS" @@ -4015,27 +4056,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX Rate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Port pro Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Tajný klíč pro Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Server Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Výběr ověřování portů" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Tajný klíč pro Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Server Radius-Authentication" @@ -4094,7 +4135,7 @@ msgstr "Provoz v reálném čase" msgid "Realtime Wireless" msgstr "Wireless v reálném čase" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4102,7 +4143,7 @@ msgstr "" msgid "Rebind protection" msgstr "Opětovné nastavení ochrany" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4120,8 +4161,8 @@ msgstr "Rebootuje operační systém vašeho zařízení" msgid "Receive" msgstr "Přijmout" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Přijímací anténa" @@ -4188,7 +4229,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4212,10 +4253,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4270,8 +4311,8 @@ msgid "Restore backup" msgstr "Obnovit zálohu" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Odhalit/skrýt heslo" @@ -4318,8 +4359,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Heslo routeru" @@ -4356,7 +4397,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Přístup přes SSH" @@ -4373,7 +4414,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH klíče" @@ -4381,7 +4422,7 @@ msgstr "SSH klíče" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4392,7 +4433,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Uložit" @@ -4421,7 +4462,7 @@ msgstr "Skenovat" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Naplánované úlohy" @@ -4458,7 +4499,7 @@ msgstr "" "Odesílat LCP echo požadaveky každých x sekund, účinné pouze ve spojení s " "prahem selhání." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Oddělovat klienty" @@ -4493,7 +4534,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Nastavit synchronizaci času" @@ -4510,7 +4551,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Nastavit DHCP server" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4518,7 +4559,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4541,11 +4582,11 @@ msgstr "Shodit toho rozhraní" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Signál" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4561,7 +4602,7 @@ msgstr "Velikost" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4570,21 +4611,19 @@ msgstr "" msgid "Skip" msgstr "Přeskočit" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Skočit na obsah" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Skočit na navigaci" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Time sloty" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4676,7 +4715,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Po spuštění" @@ -4696,7 +4735,7 @@ msgstr "Statické zápůjčky" msgid "Static Routes" msgstr "Statické trasy" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Statická adresa" @@ -4710,7 +4749,7 @@ msgstr "" "jmen DHCP klientům. Jsou také vyžadovány pro nedynamické konfigurace " "rozhraní, kde jsou povoleni pouze hosté s odpovídajícím nastavením." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4730,6 +4769,10 @@ msgstr "Stop" msgid "Strict order" msgstr "Striktní výběr" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Odeslat" @@ -4755,15 +4798,15 @@ msgstr "Vstupní bod" msgid "Switch" msgstr "Směrovač" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Směrovač číslo %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Směrovač číslo %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4772,7 +4815,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4788,8 +4831,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Synchronizovat s prohlížečem" @@ -4814,7 +4861,7 @@ msgstr "Systémový log" msgid "System Properties" msgstr "Vlastnosti systému" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Velikost bufferu systémového logu" @@ -5030,7 +5077,7 @@ msgstr "Vybraný protokol potřebuje mít přiřazeno zařízení" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5038,7 +5085,7 @@ msgstr "" "Systém maže konfigurační oddíl, po skončení procesu bude automaticky " "restartován." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5061,7 +5108,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Vzhled" @@ -5091,10 +5138,9 @@ msgstr "" "\"Fyzické nastavení\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5181,24 +5227,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "Tato stránka zobrazuje přehled aktivních síťových spojení." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Tato sekce zatím neobsahuje žádné hodnoty" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synchronizace času" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Synchronizace času dosud není nakonfigurována." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Časové pásmo" @@ -5240,7 +5286,7 @@ msgstr "Provoz" msgid "Transfer" msgstr "Přenos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Vysílací rychlost" @@ -5248,14 +5294,14 @@ msgstr "Vysílací rychlost" msgid "Transmit" msgstr "Přenos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Vysílací výkon" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Anténa vysílače" @@ -5271,7 +5317,7 @@ msgstr "Trigger mód" msgid "Tunnel ID" msgstr "ID tunelu" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Rozhraní tunelu" @@ -5286,7 +5332,7 @@ msgid "Tx-Power" msgstr "Tx-Power" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" @@ -5345,19 +5391,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Neznámý" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Nespravovaný" @@ -5371,7 +5417,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5386,7 +5431,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Nepodporovaný typ protokolu." @@ -5439,8 +5484,8 @@ msgstr "Použít DHCP bránu" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Pomocí ISO/IEC 3166 alpha2 kódů zemí." @@ -5546,11 +5591,11 @@ msgstr "" msgid "Used" msgstr "Použit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5578,11 +5623,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANy na %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANy na %q (%s)" @@ -5628,18 +5673,18 @@ msgstr "Ověřit" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP Open System" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Sdílený klíč WEP" @@ -5647,8 +5692,8 @@ msgstr "Sdílený klíč WEP" msgid "WEP passphrase" msgstr "WEP heslo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM mód" @@ -5656,9 +5701,9 @@ msgstr "WMM mód" msgid "WPA passphrase" msgstr "WPA heslo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5682,8 +5727,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Varování" @@ -5691,7 +5736,11 @@ msgstr "Varování" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5718,7 +5767,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5732,12 +5781,12 @@ msgstr "" msgid "Wireless" msgstr "Bezdrátová síť" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Bezdrátový adaptér" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Bezdrátová síť" @@ -5745,20 +5794,20 @@ msgstr "Bezdrátová síť" msgid "Wireless Overview" msgstr "Přehled bezdrátových sití" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Zabezpečení bezdrátové sítě" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Bezdrátová síť vypnuta" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Bezdrátová síť nespojena" @@ -5778,7 +5827,7 @@ msgstr "Bezdrátová síť je povolena" msgid "Write received DNS requests to syslog" msgstr "Zapisovat přijaté požadavky DNS do systemového logu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5797,35 +5846,27 @@ msgstr "" "\"network\", vaše zařízení se může stát nepřístupným!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Aby LuCI fungoval správně, musíte mít v prohlížeči povolený JavaScript." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5836,11 +5877,11 @@ msgstr "libovolný" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5893,8 +5934,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "zakázat" @@ -5953,19 +5994,6 @@ msgstr "pokud cílem je síť" msgid "input" msgstr "vstup" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5998,7 +6026,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "místní <abbr title=\"Domain Name System\">DNS</abbr> soubor" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -6026,20 +6054,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "off" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "on" @@ -6083,8 +6109,8 @@ msgstr "" msgid "routed" msgstr "směrované" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6105,11 +6131,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "označený" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6136,7 +6162,7 @@ msgstr "nespecifikovaný" msgid "unspecified -or- create:" msgstr "nespecifikovaný -nebo- vytvořit:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "neoznačený" @@ -6306,6 +6332,9 @@ msgstr "ano" msgid "« Back" msgstr "« Zpět" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index b39871f73e..fa48451877 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "%d ungültige Felder" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s darf nicht ohne VLAN-Tag in mehreren VLAN-Gruppen vorkommen!" @@ -57,16 +57,16 @@ msgstr "(keine Schnittstellen)" msgid "-- Additional Field --" msgstr "-- Zusätzliches Feld --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Bitte auswählen --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- benutzerdefiniert --" @@ -90,6 +90,10 @@ msgstr "-- UUID vergleichen --" msgid "-- please select --" msgstr "-- Bitte auswählen --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Systemlast (1 Minute):" @@ -98,7 +102,7 @@ msgstr "Systemlast (1 Minute):" msgid "15 Minute Load:" msgstr "Systemlast (15 Minuten):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "vierstellige hexadezimale ID" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Systemlast (5 Minuten):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "sechstellige hexadezimale ID (ohne Doppelpunkte)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "802.11r: Schnelle Client-Übergabe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "Maximales Timeout für Quelladressprüfungen (SA Query)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "Wiederholungsintervall für Quelladressprüfungen (SA Query)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "802.11w: Schutz von Management-Frames aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "802.11w: Maximales Timeout" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "802.11w: Wiederholungsintervall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr>-Server in der Reihenfolge der " "Resolv-Datei abfragen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -191,7 +195,7 @@ msgstr "IPv6-Gateway" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "IPv6-Suffix (hexadezimal)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "LED Konfiguration" @@ -303,7 +307,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM Geräteindex" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -311,8 +315,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Access Concentrator" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Access Point" @@ -342,7 +346,7 @@ msgstr "Aktive DHCP-Leases" msgid "Active DHCPv6 Leases" msgstr "Aktive DHCPv6-Leases" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -350,8 +354,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -388,8 +392,8 @@ msgstr "Zusätzliche Hosts-Dateien" msgid "Additional servers file" msgstr "Zusätzliche Nameserver-Datei" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adresse" @@ -398,30 +402,34 @@ msgid "Address to access local relay bridge" msgstr "Adresse der lokalen Relay-Brücke" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "Erweitert" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Vollständige Sendeleistung (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alarm" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "Alias-Schnittstelle" @@ -450,23 +458,23 @@ msgstr "IPs sequenziell vergeben" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Erlaube Anmeldung per Passwort" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -"Erlaubt dem Access-Point die Trennung von Clients mit schlechter " +"Erlaube dem Access-Point die Trennung von Clients mit schlechter " "Signalqualität" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Alle außer gelistete erlauben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" -msgstr "Veraltete 802.11b Raten erlauben" +msgstr "Veraltete 802.11b-Raten erlauben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Nur gelistete erlauben" @@ -511,7 +519,7 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -521,7 +529,7 @@ msgstr "" "Verletzung des IEEE 802.11n-2009 Standards!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -595,7 +603,7 @@ msgstr "Angekündigte Suchdomains" msgid "Announced DNS servers" msgstr "Angekündigte DNS Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "Anonyme Identität" @@ -607,17 +615,17 @@ msgstr "automatische Mountpunkte" msgid "Anonymous Swap" msgstr "automatische Swap-Aktivierung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antenne 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antenne 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Antennenkonfiguration" @@ -647,7 +655,7 @@ msgstr "" "Legt die Größe der dieser Schnittstelle zugewiesenen Partitionen der " "öffentlichen IPv6-Präfixe fest." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Schnittstellen zuweisen..." @@ -664,7 +672,7 @@ msgstr "" msgid "Associated Stations" msgstr "Assoziierte Clients" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "Assoziierungen" @@ -673,7 +681,7 @@ msgstr "Assoziierungen" msgid "Auth Group" msgstr "Berechtigungsgruppe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Authentifizierung" @@ -691,12 +699,11 @@ msgstr "Autorisierung benötigt" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatisches Neuladen" @@ -768,7 +775,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -798,7 +805,7 @@ msgstr "Zurück zu den Scan-Ergebnissen" msgid "Backup" msgstr "Sichern" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Backup / Firmware Update" @@ -810,12 +817,12 @@ msgstr "Liste zu sichernder Dateien" msgid "Bad address specified!" msgstr "Ungültige Adresse angegeben!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "Frequenztyp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "Beacon-Intervall" @@ -848,7 +855,7 @@ msgstr "Tunnelendpunkt an diese Schnittstelle binden (optional)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitrate" @@ -856,7 +863,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Ungültige \"NX-Domain\" Antworten ignorieren" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Bridge" @@ -942,7 +949,7 @@ msgstr "Änderungen angewendet." msgid "Changes have been reverted." msgstr "Änderungen wurden verworfen" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Ändert das Administratorpasswort für den Zugriff auf dieses Gerät" @@ -950,12 +957,12 @@ msgstr "Ändert das Administratorpasswort für den Zugriff auf dieses Gerät" msgid "Changing password…" msgstr "Ändere Passwort…" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kanal" @@ -1001,7 +1008,7 @@ msgstr "" "oder das <em>erstellen</em> Feld ausfüllen um eine neue Zone direkt " "anzulegen und zuzuweisen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1009,7 +1016,7 @@ msgstr "" "Wählt die Netzwerke die dieser WLAN-Schnittstelle zugeordnet werden. Das " "<em>erstelle</em>-Feld ausfüllen um ein neues Netzwerk zu erzeugen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Verschlüsselungsalgorithmus" @@ -1034,8 +1041,8 @@ msgstr "" "herunterzuladen. (Hinweis: Diese Funktionalität ist nur für Experten " "gedacht!)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Client" @@ -1079,7 +1086,7 @@ msgstr "Schließe Liste..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Sammle Daten..." @@ -1095,7 +1102,7 @@ msgstr "Kommentar" msgid "Common Configuration" msgstr "Allgemeine Konfiguration" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1131,7 +1138,7 @@ msgstr "Die Konfiguration wurde angewendet." msgid "Configuration has been rolled back!" msgstr "Die Konfiguration wurde zurückgerollt!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Bestätigung" @@ -1140,12 +1147,12 @@ msgid "Connect" msgstr "Verbinden" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Verbunden" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Verbindungslimit" @@ -1172,9 +1179,9 @@ msgstr "" msgid "Country" msgstr "Land" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Ländercode" @@ -1199,24 +1206,24 @@ msgstr "Erzeuge Schnittstelle" msgid "Create a bridge over multiple interfaces" msgstr "Erzeuge Netzwerkbrücke über mehrere Schnittstellen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritisch" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" -msgstr "Cron Protokolllevel" +msgstr "Cron Protokoll-Level" #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 msgid "Custom Interface" -msgstr "benutzerdefinierte Schnittstelle" +msgstr "Benutzerdefinierte Schnittstelle" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 msgid "Custom delegated IPv6-prefix" -msgstr "Delegierter IPv6-Präfix" +msgstr "Delegiertes IPv6-Präfix" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" @@ -1237,15 +1244,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "Passt das Verhalten der Geräte-LEDs an - wenn dies möglich ist." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1259,7 +1266,7 @@ msgstr "DHCP-Server" msgid "DHCP and DNS" msgstr "DHCP und DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP Client" @@ -1279,16 +1286,16 @@ msgstr "DHCPv6-Modus" msgid "DHCPv6-Service" msgstr "DHCPv6-Dienst" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1321,7 +1328,7 @@ msgstr "DS-Lite AFTR-Adresse" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1329,7 +1336,7 @@ msgstr "" msgid "DSL line mode" msgstr "DSL Leitungsmodus" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1337,18 +1344,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "Datenrate" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Standard %d" @@ -1387,7 +1394,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Löschen" @@ -1401,7 +1408,7 @@ msgstr "Schlüssel löschen" msgid "Delete this network" msgstr "Dieses Netzwerk löschen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1417,8 +1424,8 @@ msgstr "Ziel" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1473,7 +1480,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Verschlüsselung deaktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "Inaktivitäts-Proben deaktivieren" @@ -1491,11 +1498,11 @@ msgstr "Dieses Netzwerk deaktivieren" msgid "Disabled" msgstr "Deaktiviert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Deaktiviert (Standard)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "Trennung bei schlechtem Antwortverhalten" @@ -1518,16 +1525,16 @@ msgstr "Verbindungstrennung fehlgeschlagen" msgid "Dismiss" msgstr "Schließen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Distanzoptimierung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distanz zum am weitesten entfernten Funkpartner in Metern." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversität" @@ -1635,7 +1642,7 @@ msgstr "" msgid "EA-bits length" msgstr "EA-Bitlänge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-Methode" @@ -1662,7 +1669,7 @@ msgstr "Diese Schnittstelle bearbeiten" msgid "Edit this network" msgstr "Dieses Netzwerk bearbeiten" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Notfall" @@ -1699,11 +1706,11 @@ msgstr "IPv6 anfordern" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Aushandeln von IPv6-Adressen auf der PPP-Verbindung aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Aktiviere Jumbo Frame Durchleitung" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Aktiviere NTP-Client" @@ -1715,27 +1722,27 @@ msgstr "Single-DES aktivieren" msgid "Enable TFTP server" msgstr "TFTP-Server aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "VLAN-Funktionalität aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "WPS-via-Knopfdruck aktivieren, erfordert WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Key Reinstallation (KRACK) Gegenmaßnahmen aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Learning und Aging aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "Port-Mirroring für eingehende Pakete aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "Port-Mirroring für ausgehende Pakete aktivieren" @@ -1769,7 +1776,7 @@ msgstr "Aktiviert" msgid "Enables IGMP snooping on this bridge" msgstr "Aktiviert die automatische IGMP-Erkennung auf dieser Netzwerkbrücke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1788,9 +1795,9 @@ msgstr "Kapselung" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Verschlüsselung" @@ -1810,28 +1817,28 @@ msgstr "Eigenen Wert angeben" msgid "Enter custom values" msgstr "Eigene Werte angeben" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Lösche..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Fehler" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "Fehlersekunden (ES)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Netzwerkschnittstelle" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Netzwerk Switch" @@ -1847,7 +1854,7 @@ msgstr "Hosts vervollständigen" msgid "Expecting %s" msgstr "Erwarte %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Verfällt" @@ -1863,23 +1870,23 @@ msgstr "" msgid "External" msgstr "Extern" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "Externe R0-Key-Holder-List" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "Externe R1-Key-Holder-List" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Externer Protokollserver IP" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Externer Protokollserver Port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Externes Protokollserver Protokoll" @@ -1887,15 +1894,15 @@ msgstr "Externes Protokollserver Protokoll" msgid "Extra SSH command options" msgstr "Zusätzliche SSH-Kommando-Optionen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "FT-über-DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "FT-drahtlos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "FT Protokoll" @@ -1992,7 +1999,7 @@ msgstr "Neues Firmware Image schreiben" msgid "Flash operations" msgstr "Flash-Operationen" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Firmware wird installiert..." @@ -2006,11 +2013,11 @@ msgstr "" msgid "Force" msgstr "Start erzwingen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "40MHz-Modus forcieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "CCMP (AES) erzwingen" @@ -2020,11 +2027,11 @@ msgstr "" "Aktiviere DHCP-Server für dieses Netzwerk, selbst wenn ein anderer aktiver " "Server erkannt wurde." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Erzwinge TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Erzwinge TKIP und CCMP (AES)" @@ -2048,7 +2055,7 @@ msgstr "Abweichendes Formular-Token" msgid "Forward DHCP traffic" msgstr "DHCP Traffic weiterleiten" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "Fehlerkorrektursekunden (FECS)" @@ -2056,7 +2063,7 @@ msgstr "Fehlerkorrektursekunden (FECS)" msgid "Forward broadcast traffic" msgstr "Broadcasts weiterleiten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "Mesh-Nachbar-Traffic weiterleiten" @@ -2064,12 +2071,12 @@ msgstr "Mesh-Nachbar-Traffic weiterleiten" msgid "Forwarding mode" msgstr "Weiterleitungstyp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Fragmentierungsschwelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Frame Bursting" @@ -2088,7 +2095,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2097,8 +2104,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Nur GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Gateway" @@ -2121,7 +2128,7 @@ msgstr "Allgemeine Einstellungen" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Allgemeine Einstellungen" @@ -2129,7 +2136,7 @@ msgstr "Allgemeine Einstellungen" msgid "Generate Config" msgstr "Konfiguration generieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "PMK lokal generieren" @@ -2158,7 +2165,7 @@ msgstr "Globale Netzwerkeinstellungen" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Zur Passwortkonfiguration..." @@ -2183,7 +2190,7 @@ msgstr "HE.net Passwort" msgid "HE.net username" msgstr "HE.net Benutzername" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "HT-Modus (802.11n)" @@ -2191,7 +2198,7 @@ msgstr "HT-Modus (802.11n)" msgid "Hang Up" msgstr "Auflegen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "Anzahl Header-Error-Code-Fehler (HEC)" @@ -2207,9 +2214,9 @@ msgstr "" "An dieser Stelle können Grundeinstellungen des Systems wie Hostname oder " "Zeitzone vorgenommen werden." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "ESSID verstecken" @@ -2243,8 +2250,7 @@ msgstr "\"Host-Uniq\"-Bezeichner" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Hostname" @@ -2305,7 +2311,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Firewall" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2341,7 +2347,7 @@ msgstr "IPv4 Bereich" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 msgid "IPv4 prefix length" -msgstr "Länge des IPv4 Präfix" +msgstr "Länge des IPv4-Präfix" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 msgid "IPv4+IPv6" @@ -2397,7 +2403,7 @@ msgstr "IPv6 Einstellungen" msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA-Präfix" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2426,17 +2432,17 @@ msgstr "IPv6-Netzwerk in Addresse/Netzmaske-Notation" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 msgid "IPv6 prefix" -msgstr "IPv6 Präfix" +msgstr "IPv6-Präfix" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 msgid "IPv6 prefix length" -msgstr "Länge des IPv6 Präfix" +msgstr "Länge des IPv6-Präfix" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 msgid "IPv6 routed prefix" -msgstr "Gerouteter IPv6-Präfix" +msgstr "Geroutetes IPv6-Präfix" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 msgid "IPv6 suffix" @@ -2450,7 +2456,7 @@ msgstr "IPv6-Adresse" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 msgid "IPv6-PD" -msgstr "IPv6 Präfixdelegation (PD)" +msgstr "IPv6 Präfix-Delegation (PD)" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 msgid "IPv6-in-IPv4 (RFC4213)" @@ -2464,7 +2470,7 @@ msgstr "IPv6-über-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-über-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identität" @@ -2581,10 +2587,14 @@ msgstr "Timeout bei Inaktivität" msgid "Inbound:" msgstr "Eingehend:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "Initialisierung fehlgeschlagen" @@ -2607,7 +2617,7 @@ msgstr "" msgid "Install package %q" msgstr "Installiere Paket %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Installiere Protokoll-Erweiterungen" @@ -2626,7 +2636,7 @@ msgid "Interface %q device auto-migrated from %q to %q." msgstr "" "Das Gerät der Schnittstelle %q wurde automatisch von %q auf %q geändert." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Schnittstellenkonfiguration" @@ -2638,12 +2648,12 @@ msgstr "Schnittstellenübersicht" msgid "Interface is reconnecting..." msgstr "Schnittstelle verbindet neu..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Schnittstellenname" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Schnittstelle existiert nicht oder ist nicht verbunden." @@ -2662,15 +2672,15 @@ msgid "Internal Server Error" msgstr "Interner Serverfehler" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Ungültige Eingabe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "Ungültige VLAN ID angegeben! Nur IDs zwischen %d und %d sind erlaubt." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Ungültige VLAN ID angegeben! Die ID ist muß eindeutig sein!" @@ -2679,7 +2689,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen. " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Clients isolieren" @@ -2693,10 +2703,9 @@ msgstr "" "sein. Überprüfen Sie die Imagedatei!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript benötigt!" @@ -2725,18 +2734,22 @@ msgstr "Kernelprotokoll" msgid "Kernel Version" msgstr "Kernel Version" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Schlüssel Nr. %d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Töten" @@ -2776,7 +2789,7 @@ msgstr "LLC" msgid "Label" msgstr "Label" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Sprache" @@ -2784,7 +2797,7 @@ msgstr "Sprache" msgid "Language and Style" msgstr "Sprache und Aussehen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "Latenz" @@ -2837,19 +2850,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "Dienste auf die angegeben Schnittstellen plus Loopback beschränken." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "Dämpfung (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "Verbindungsmodus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "Verbindungsstatus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "Verbindungsdauer" @@ -2865,7 +2878,7 @@ msgstr "" "Liste von <abbr title=\"Domain Name System\">DNS</abbr>-Servern an welche " "Requests weitergeleitet werden" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2880,7 +2893,7 @@ msgstr "" "werden kann, mit der sich der Client wärend der anfänglichen " "Mobilitätsdomänen-Assoziation verbunden hat." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2926,7 +2939,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Serverport für eingehende DNS Abfragen" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Last" @@ -2975,7 +2987,7 @@ msgid "Local Startup" msgstr "Lokales Startskript" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Lokale Zeit" @@ -3019,7 +3031,7 @@ msgstr "Lokalisiere Anfragen" msgid "Locked to channel %s used by: %s" msgstr "Festgelegt auf Kanal %s, verwendet durch: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Protokolllevel" @@ -3039,7 +3051,7 @@ msgstr "Anmelden" msgid "Logout" msgstr "Abmelden" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "Signalverlustsekunden (LOSS)" @@ -3055,24 +3067,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-Adressfilter" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-Filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-Adressliste" @@ -3118,11 +3130,11 @@ msgstr "Das Root-Dateisystem muss mit folgenden Kommandsos vorbereitet werden:" msgid "Manual" msgstr "Manuell" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maximal erreichbare Datenrate (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "Maximal erlaubter Inaktivitätszeitraum" @@ -3159,12 +3171,16 @@ msgstr "Maximal zulässige Anzahl von vergeben DHCP-Adressen" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Hauptspeicher" @@ -3173,7 +3189,7 @@ msgstr "Hauptspeicher" msgid "Memory usage (%)" msgstr "Speichernutzung (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "Mesh-ID" @@ -3185,11 +3201,11 @@ msgstr "Mesh-ID" msgid "Metric" msgstr "Metrik" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "Spiegel-Monitor-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "Spiegel-Quell-Port" @@ -3197,16 +3213,16 @@ msgstr "Spiegel-Quell-Port" msgid "Missing protocol extension for proto %q" msgstr "Erweiterung für Protokoll %q fehlt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "Mobilitätsbereich" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Modus" @@ -3234,12 +3250,16 @@ msgstr "Modem-Informationsabfrage fehlgeschlagen" msgid "Modem init timeout" msgstr "Wartezeit für Modeminitialisierung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Mount-Eintrag" @@ -3249,7 +3269,7 @@ msgstr "Mount-Eintrag" msgid "Mount Point" msgstr "Einhängepunkt" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3299,7 +3319,7 @@ msgstr "Nach unten schieben" msgid "Move up" msgstr "Nach oben schieben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3309,7 +3329,7 @@ msgstr "NAT-T Modus" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 msgid "NAT64 Prefix" -msgstr "NAT64 Präfix" +msgstr "NAT64-Präfix" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 msgid "NCM" @@ -3323,7 +3343,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP Server Kandidaten" @@ -3341,18 +3361,17 @@ msgstr "Name der neuen Schnittstelle" msgid "Name of the new network" msgstr "Name des neuen Netzwerkes" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Netzmaske" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3376,7 +3395,7 @@ msgstr "" msgid "Network device is not present" msgstr "Netzwerkgerät ist nicht vorhanden" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Netzwerk ohne Schnittstellen." @@ -3401,7 +3420,7 @@ msgid "No files found" msgstr "Keine Dateien gefunden" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Keine Informationen verfügbar" @@ -3423,10 +3442,9 @@ msgid "No network name specified" msgstr "Netzwerkname nicht angegeben" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Kein Passwort gesetzt!" @@ -3454,7 +3472,7 @@ msgstr "Keine Zone zugewiesen" msgid "Noise" msgstr "Rauschen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "Signal-Rausch-Abstand (SNR)" @@ -3462,7 +3480,7 @@ msgstr "Signal-Rausch-Abstand (SNR)" msgid "Noise:" msgstr "Noise:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Nicht-präemptive CRC-Fehler (CRC_P)" @@ -3475,7 +3493,7 @@ msgstr "An Schnittstellen binden" msgid "None" msgstr "keine" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3488,16 +3506,20 @@ msgstr "Nicht Gefunden" msgid "Not associated" msgstr "Nicht assoziiert" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Nicht verbunden" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "Hinweis: Länge des Namens beachten" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Notiz" @@ -3511,7 +3533,7 @@ msgstr "" "Anzahl der zwischengespeicherten DNS-Einträge. Maximum sind 10000 Einträge, " "\"0\" deaktiviert die Zwischenspeicherung." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "Für Kompression benutze parallele Prozessanzahl" @@ -3593,7 +3615,7 @@ msgstr "Option geändert" msgid "Option removed" msgstr "Option entfernt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Optional" @@ -3714,7 +3736,7 @@ msgstr "TOS-Wert überschreiben" msgid "Override TTL" msgstr "TTL-Wert überschreiben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "Standard Schnittstellennamen überschreiben" @@ -3778,7 +3800,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN-Code abgelehnt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3831,8 +3853,8 @@ msgid "Part of zone %q" msgstr "Teil von Zone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3842,14 +3864,21 @@ msgstr "Passwort" msgid "Password authentication" msgstr "Passwortanmeldung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Passwort des privaten Schlüssels" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "Password des inneren, privaten Schlüssels" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Passwort Bestätigung" @@ -3858,27 +3887,27 @@ msgstr "Passwort Bestätigung" msgid "Paste or drag SSH key file…" msgstr "Schlüssel einfügen oder Schlüsseldatei hereinziehen…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Pfad zu Client-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Pfad zum Privaten Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "Pfad zum inneren CA-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "Pfad zum inneren Client-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "Pfad zum inneren, privaten Schlüssel" @@ -3956,6 +3985,14 @@ msgstr "Bitte Benutzernamen und Passwort eingeben." msgid "Policy" msgstr "Standardregel" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3964,11 +4001,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port-Status:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "Energiesparmodus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Präemptive CRC-Fehler (CRCP_P)" @@ -3980,7 +4017,7 @@ msgstr "LTE bevorzugen" msgid "Prefer UMTS" msgstr "UMTS bevorzugen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "Delegiertes Präfix" @@ -4005,8 +4042,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Verhindert das Binden an diese Schnittstellen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Unterbindet Client-Client-Verkehr" @@ -4023,7 +4060,7 @@ msgstr "Fortfahren" msgid "Processes" msgstr "Prozesse" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Profil" @@ -4033,8 +4070,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokoll" @@ -4047,7 +4084,7 @@ msgstr "Protokoll für die neue Schnittstelle" msgid "Protocol support is not installed" msgstr "Protokollunterstützung ist nicht installiert" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "NTP-Server anbieten" @@ -4055,7 +4092,7 @@ msgstr "NTP-Server anbieten" msgid "Provide new network" msgstr "Neues Netzwerk anbieten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4088,7 +4125,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Qualität" @@ -4098,11 +4135,11 @@ msgid "" "servers" msgstr "Alle verfügbaren übergeordneten DNS-Server abfragen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "R0-Schlüsselgültigkeit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "R1-Schlüsselinhaber" @@ -4110,8 +4147,12 @@ msgstr "R1-Schlüsselinhaber" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 \"NAT-T\"-Modus" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS-Schwelle" @@ -4126,27 +4167,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX-Rate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Radius-Accounting-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Radius-Accounting-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Radius-Accounting-Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Radius-Authentication-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Radius-Authentication-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Radius-Authentication-Server" @@ -4169,7 +4210,7 @@ msgid "" msgstr "" "Diese Schnittstelle wirklich löschen? Das Löschen kann nicht rückgängig " "gemacht werden! Der Kontakt zum Gerät könnte verloren gehen wenn die " -"Verbidung über diese Schnittstelle erfolgt." +"Verbindung über diese Schnittstelle erfolgt." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 msgid "" @@ -4209,7 +4250,7 @@ msgstr "Echtzeitverkehr" msgid "Realtime Wireless" msgstr "Echtzeit-WLAN-Signal" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "Reassoziierungsfrist" @@ -4217,7 +4258,7 @@ msgstr "Reassoziierungsfrist" msgid "Rebind protection" msgstr "DNS-Rebind-Schutz" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Neu Starten" @@ -4235,8 +4276,8 @@ msgstr "Startet das Betriebssystem des Routers neu." msgid "Receive" msgstr "Empfangen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Empfangsantenne" @@ -4303,7 +4344,7 @@ msgstr "IPv6-Adresse anfordern" msgid "Request IPv6-prefix of length" msgstr "IPv6-Präfix dieser Länge anfordern" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "Benötigt" @@ -4331,10 +4372,10 @@ msgstr "" "Tunnels nutzen darf. Entspricht üblicherweise der Tunnel-IP-Adresse des " "Verbindungspartners und den Netzwerken, die dieser durch den Tunnel routet." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "Benötigt die \"volle\" Variante des wpad oder hostapd Paketes und " "Unterstützung vom WLAN-Treiber." @@ -4393,8 +4434,8 @@ msgid "Restore backup" msgstr "Sicherung wiederherstellen" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Passwort zeigen/verstecken" @@ -4441,8 +4482,8 @@ msgstr "Routen-Typ" msgid "Router Advertisement-Service" msgstr "Router-Advertisement-Dienst" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Routerpasswort" @@ -4480,7 +4521,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH-Zugriff" @@ -4497,7 +4538,7 @@ msgstr "SSH-Server-Port" msgid "SSH username" msgstr "SSH Benutzername" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH-Schlüssel" @@ -4505,7 +4546,7 @@ msgstr "SSH-Schlüssel" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4516,7 +4557,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Speichern" @@ -4545,7 +4586,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "Scan-Anforderung fehlgeschlagen" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Geplante Aufgaben" @@ -4585,7 +4626,7 @@ msgstr "" "Sende LCP Echo Anforderungen im angegebenem Interval in Sekunden, nur " "effektiv in Verbindung mit einem Fehler-Schwellwert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Clients isolieren" @@ -4623,7 +4664,7 @@ msgstr "" "Option ausgewählt, so werden die Hotplug-Skripte bei Änderung nicht " "aufgerufen)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Zeitsynchronisierung einrichten" @@ -4640,7 +4681,7 @@ msgstr "Setzen des Betriebsmodus fehlgeschlagen" msgid "Setup DHCP Server" msgstr "DHCP Server einrichten" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "schwerwiegende Fehlersekunden (SES)" @@ -4648,7 +4689,7 @@ msgstr "schwerwiegende Fehlersekunden (SES)" msgid "Short GI" msgstr "kurzes Guardintervall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Kurze Präambel" @@ -4671,11 +4712,11 @@ msgstr "Diese Schnittstelle herunterfahren" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "Signaldämpfung (SATN)" @@ -4691,7 +4732,7 @@ msgstr "Größe" msgid "Size of DNS query cache" msgstr "Größe des DNS-Caches" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "Größe der ZRAM-Gerätedatei in Megabytes." @@ -4700,21 +4741,19 @@ msgstr "Größe der ZRAM-Gerätedatei in Megabytes." msgid "Skip" msgstr "Überspringen" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Zum Inhalt springen" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Zur Navigation springen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Zeitslot" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "Software-VLAN" @@ -4813,7 +4852,7 @@ msgstr "Starte Anwendung der Konfigurationsänderungen..." msgid "Starting wireless scan..." msgstr "Starte WLAN Scan..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Systemstart" @@ -4833,7 +4872,7 @@ msgstr "Statische Einträge" msgid "Static Routes" msgstr "Statische Routen" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Statische Adresse" @@ -4848,7 +4887,7 @@ msgstr "" "Konfigurationen benötigt auf denen lediglich Hosts mit zugehörigem " "statischem Lease-Eintrag bedient werden." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "Client-Inaktivitäts-Limit" @@ -4868,6 +4907,10 @@ msgstr "Stoppen" msgid "Strict order" msgstr "Strikte Reihenfolge" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Absenden" @@ -4894,15 +4937,15 @@ msgstr "Auslagerungsdatei" msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Switch %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Switch %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4913,7 +4956,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Switch-Port-Maske" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "Switch-VLAN" @@ -4929,8 +4972,12 @@ msgstr "Auf CIDR-Listen-Notation wechseln" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Mit Browser synchronisieren" @@ -4955,7 +5002,7 @@ msgstr "Systemprotokoll" msgid "System Properties" msgstr "Systemeigenschaften" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Größe des Systemprotokoll-Puffers" @@ -5045,7 +5092,7 @@ 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>::</" +"Vom Provider zugewiesenes IPv6-Präfix, endet normalerweise mit <code>::</" "code>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 @@ -5149,13 +5196,13 @@ msgid "" "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " "addresses." msgstr "" -"Länge des IPv4 Präfix in Bits, die übrigen Bits werden in der IPv6 Adresse " +"Länge des IPv4-Präfix in Bits, die übrigen Bits werden in der IPv6-Adresse " "verwendet." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 msgid "The length of the IPv6 prefix in bits" -msgstr "Länge des IPv6 Präfix in Bits" +msgstr "Länge des IPv6-Präfix in Bits" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 msgid "The local IPv4 address over which the tunnel is created (optional)." @@ -5189,7 +5236,7 @@ msgid "The submitted security token is invalid or already expired!" msgstr "" "Das mitgesendete Sicherheits-Token ist ungültig oder bereits abgelaufen!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5197,7 +5244,7 @@ msgstr "" "Die Einstellungen werden nun gelöscht! Anschließend wird ein Neustart des " "Systems durchgeführt." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5222,7 +5269,7 @@ msgstr "" "Das hochgeladene Firmware-Image hat ein nicht unterstütztes Format. Stellen " "Sie sicher dass Sie das generische Format für Ihre Platform gewählt haben." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Thema" @@ -5252,10 +5299,9 @@ msgstr "" "Einstellungen\" Bereich anfügen" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5354,24 +5400,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "Diese Seite gibt eine Übersicht über aktive Netzwerkverbindungen." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Diese Sektion enthält noch keine Einträge" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Zeitsynchronisation" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Die Zeitsynchronisation wurde noch nicht konfiguriert." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "Zeitintervall für die neubestimmung des Gruppenschlüssels" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zeitzone" @@ -5415,7 +5461,7 @@ msgstr "Traffic" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Übertragungsrate" @@ -5423,14 +5469,14 @@ msgstr "Übertragungsrate" msgid "Transmit" msgstr "Senden" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Sendeleistung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Sendeantenne" @@ -5446,7 +5492,7 @@ msgstr "Auslösmechanismus" msgid "Tunnel ID" msgstr "Tunnel-ID" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Tunnelschnittstelle" @@ -5461,7 +5507,7 @@ msgid "Tx-Power" msgstr "Sendestärke" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" @@ -5520,19 +5566,19 @@ msgstr "Der AFTR-Hostname konnte nicht aufgelöst werden" msgid "Unable to resolve peer host name" msgstr "Der Name des entfernten Hosts konnte nicht aufgelöst werden" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "Nicht verfügbare Sekunden (UAS)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Unbekannt" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "Protokollfehler: %s" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Ignoriert" @@ -5546,7 +5592,6 @@ msgid "Unnamed key" msgstr "Unbenannter Schlüssel" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5561,7 +5606,7 @@ msgstr "Nicht unterstützter MAP-Typ" msgid "Unsupported modem" msgstr "Nicht unterstütztes Modem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Nicht unterstützter Protokolltyp." @@ -5614,8 +5659,8 @@ msgstr "Benutze DHCP-Gateway" msgid "Use DNS servers advertised by peer" msgstr "Benutze die von der Gegenstelle zugewiesenen DNS-Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Muss ein ISO/IEC 3166 Länderkürzel sein." @@ -5722,11 +5767,11 @@ msgstr "" msgid "Used" msgstr "Belegt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Benutzer Schlüsselindex" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5756,11 +5801,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs auf %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs auf %q (%s)" @@ -5806,18 +5851,18 @@ msgstr "Verifizieren" msgid "Virtual dynamic interface" msgstr "Virtuelle dynamisches Schnittstelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP Open System" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP Shared Key" @@ -5825,8 +5870,8 @@ msgstr "WEP Shared Key" msgid "WEP passphrase" msgstr "WEP Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM Modus" @@ -5834,9 +5879,9 @@ msgstr "WMM Modus" msgid "WPA passphrase" msgstr "WPA Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5860,8 +5905,8 @@ msgstr "Warte auf das Anwenden der Konfigurationsänderungen... %d Sekunden" msgid "Waiting for device..." msgstr "Warte auf Gerät..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Warnung" @@ -5871,7 +5916,11 @@ msgstr "" "Achtung: Es gibt ungespeicherte Änderungen die bei einem Neustart verloren " "gehen!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5901,7 +5950,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Breite" @@ -5915,12 +5964,12 @@ msgstr "" msgid "Wireless" msgstr "WLAN" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "WLAN-Gerät" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Drahtlosnetzwerk" @@ -5928,20 +5977,20 @@ msgstr "Drahtlosnetzwerk" msgid "Wireless Overview" msgstr "Drahtlosübersicht" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "WLAN-Verschlüsselung" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "W-LAN ist deaktiviert" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "W-LAN ist nicht assoziiert" @@ -5961,7 +6010,7 @@ msgstr "Das WLAN-Netzwerk ist aktiviert" msgid "Write received DNS requests to syslog" msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Systemprotokoll in Datei schreiben" @@ -5981,39 +6030,28 @@ msgstr "" "werden könnte das Gerät unerreichbar werden!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Im Browser muss JavaScript aktiviert sein oder LuCI wird nicht richtig " "funktionieren." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Die benutzte Version des Internet Explorers ist zu alt, um diese Seite " -"korrekt darzustellen. Bitte mindestens auf Version 7 upgraden oder einen " -"anderen Browser wie Firefox, Opera oder Safari benutzen." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "ZRAM Kompressionsalgorithmus" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "ZRAM Kompressionsprozesse" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ZRAM Einstellungen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "ZRAM Größe" @@ -6024,11 +6062,11 @@ msgstr "beliebig" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6081,8 +6119,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "deaktivieren" @@ -6139,19 +6177,6 @@ msgstr "falls Ziel ein Netzwerk ist" msgid "input" msgstr "eingehend" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6184,7 +6209,7 @@ msgstr "Schlüssel mit exakt 5 oder 13 Zeichen" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Lokale DNS-Datei" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "Minuten" @@ -6212,20 +6237,18 @@ msgstr "nicht-leeren Wert" msgid "not present" msgstr "nicht vorhanden" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "aus" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ein" @@ -6271,8 +6294,8 @@ msgstr "Relay-Modus" msgid "routed" msgstr "routed" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "Sekunden" @@ -6293,11 +6316,11 @@ msgstr "nur zustandlos" msgid "stateless + stateful" msgstr "zustandslos + zustandsorientiert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "tagged" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "Zeiteinheiten (TUs / 1024 ms) [1000-65535]" @@ -6324,7 +6347,7 @@ msgstr "unspezifiziert" msgid "unspecified -or- create:" msgstr "nichts auswählen -oder- erstellen:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "untagged" @@ -6334,7 +6357,7 @@ msgstr "gültige IP-Adresse" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address or prefix" -msgstr "gültige IP-Adresse oder gültigen IP-Präfix" +msgstr "gültige IP-Adresse oder gültiges IP-Präfix" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 msgid "valid IPv4 CIDR" @@ -6362,7 +6385,7 @@ msgstr "gültige IPv4- oder IPv6-CIDR-Notation" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 msgid "valid IPv4 prefix value (0-32)" -msgstr "gültigen IPv4-Präfix-Wert (0-32)" +msgstr "gültiger IPv4-Präfix-Wert (0-32)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 msgid "valid IPv6 CIDR" @@ -6374,7 +6397,7 @@ msgstr "gültige IPv6-Adresse" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address or prefix" -msgstr "gültige IPv6-Addresse oder gültiges IPv6-Präfix" +msgstr "gültige IPv6-Addresse oder gültiger IPv6-Präfix" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 msgid "valid IPv6 host id" @@ -6386,7 +6409,7 @@ msgstr "gültiges IPv6-Netzwerk" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 msgid "valid IPv6 prefix value (0-128)" -msgstr "gültigen IPv6-Präfix-Wert (0-128)" +msgstr "gültiger IPv6-Präfix-Wert (0-128)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 msgid "valid MAC address" @@ -6495,6 +6518,18 @@ msgid "« Back" msgstr "« Zurück" #~ msgid "" +#~ "Your Internet Explorer is too old to display this page correctly. Please " +#~ "upgrade it to at least version 7 or use another browser like Firefox, " +#~ "Opera or Safari." +#~ msgstr "" +#~ "Die benutzte Version des Internet Explorers ist zu alt, um diese Seite " +#~ "korrekt darzustellen. Bitte mindestens auf Version 7 upgraden oder einen " +#~ "anderen Browser wie Firefox, Opera oder Safari benutzen." + +#~ msgid "kB" +#~ msgstr "kB" + +#~ msgid "" #~ "When using a PSK, the PMK can be generated locally without inter AP " #~ "communications" #~ msgstr "" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index a208eea92a..0fa39ea5f3 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(χωρίς προσαρτημένες διεπαφές)" msgid "-- Additional Field --" msgstr "-- Επιπλέον Πεδίο --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Παρακαλώ επιλέξτε --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- προσαρμοσμένο --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Φορτίο 1 λεπτού:" @@ -98,7 +102,7 @@ msgstr "Φορτίο 1 λεπτού:" msgid "15 Minute Load:" msgstr "Φορτίο 15 λεπτών:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Φορτίο 5 λεπτών:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "Οι <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr> εξυπηρετητές θα " "ερωτηθούν με την σειρά εμφάνισης στο αρχείο resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -193,7 +197,7 @@ msgstr "Πύλη <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Παραμετροποίηση <abbr title=\"Light Emitting Diode\">LED</abbr>" @@ -300,7 +304,7 @@ msgstr "" msgid "ATM device number" msgstr "Αριθμός συσκευής ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -308,8 +312,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Συγκεντρωτής Πρόσβασης " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Σημείο Πρόσβασης" @@ -341,7 +345,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -349,8 +353,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -388,8 +392,8 @@ msgstr "Επιπλέον αρχεία Hosts" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Διεύθυνση" @@ -398,30 +402,34 @@ msgid "Address to access local relay bridge" msgstr "Διεύθυνση για πρόσβαση σε την τοπική γέφυρα αναμετάδοσης" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Διαχείριση" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Προχωρημένες Ρυθμίσεις" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Ειδοποίηση" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -450,21 +458,21 @@ msgstr "" "Επιτρέπει την εξουσιοδότηση <abbr title=\"Secure Shell\">SSH</abbr> με " "κωδικό πρόσβασης" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Να επιτρέπονται όλες, εκτός από αυτές στη λίστα" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Να επιτρέπονται μόνο αυτές στην λίστα" @@ -510,14 +518,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -589,7 +597,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -601,17 +609,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Κεραία 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Κεραία 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -637,7 +645,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "" @@ -652,7 +660,7 @@ msgstr "" msgid "Associated Stations" msgstr "Συνδεδεμένοι Σταθμοί" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -661,7 +669,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Εξουσιοδότηση" @@ -679,12 +687,11 @@ msgstr "Απαιτείται Εξουσιοδότηση" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Αυτόματη Ανανέωση" @@ -756,7 +763,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -786,7 +793,7 @@ msgstr "Πίσω στα αποτελέσματα σάρωσης" msgid "Backup" msgstr "Αποθήκευση" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Αντίγραφο ασφαλείας / Εγγραφή FLASH Υλικολογισμικό" @@ -799,12 +806,12 @@ msgstr "Λίστα αρχείων για αντίγραφο ασφαλείας" msgid "Bad address specified!" msgstr "Μη έγκυρη διεύθυνση!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -835,7 +842,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Ρυθμός δεδομένων" @@ -843,7 +850,7 @@ msgstr "Ρυθμός δεδομένων" msgid "Bogus NX Domain Override" msgstr "Παράκαμψη Ψευδούς Τομέα NX" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Γέφυρα" @@ -927,7 +934,7 @@ msgstr "Αλλαγές εφαρμόστηκαν." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Αλλάζει τον κωδικό διαχειριστή για πρόσβαση στη συσκευή" @@ -935,12 +942,12 @@ msgstr "Αλλάζει τον κωδικό διαχειριστή για πρό msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Κανάλι" @@ -983,13 +990,13 @@ msgstr "" "από την συσχετισμένη ζώνη ή συμπληρώστε το <em>δημιουργία</em> πεδίο για να " "προσδιορίσετε μία νέα ζώνη και να προσαρτήσετε την διεπαφή σε αυτό." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -1011,8 +1018,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Πελάτης" @@ -1057,7 +1064,7 @@ msgstr "Κλείσιμο λίστας..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Συλλογή δεδομένων..." @@ -1073,7 +1080,7 @@ msgstr "" msgid "Common Configuration" msgstr "Κοινή Παραμετροποίηση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1105,7 +1112,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Επιβεβαίωση" @@ -1114,12 +1121,12 @@ msgid "Connect" msgstr "Σύνδεση" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Συνδεδεμένος" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Όριο Συνδέσεων" @@ -1142,9 +1149,9 @@ msgstr "" msgid "Country" msgstr "Χώρα" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Κωδικός Χώρας" @@ -1169,11 +1176,11 @@ msgstr "Δημιουργία Διεπαφής" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Επίπεδο Καταγραφής Cron" @@ -1206,15 +1213,15 @@ msgstr "" "Ρυθμίζει, αν είναι δυνατόν, την συμπεριφορά των <abbr title=\"Light Emitting " "Diode\">LED</abbr> της συσκευής." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1228,7 +1235,7 @@ msgstr "Εξυπηρετητής DHCP" msgid "DHCP and DNS" msgstr "DHCP και DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Πελάτης DHCP" @@ -1248,16 +1255,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1290,7 +1297,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1298,7 +1305,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1306,18 +1313,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Αποσφαλμάτωση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Προεπιλογή %d" @@ -1356,7 +1363,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Διαγραφή" @@ -1370,7 +1377,7 @@ msgstr "" msgid "Delete this network" msgstr "Διαγραφή αυτού του δικτύου" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1386,8 +1393,8 @@ msgstr "Προορισμός" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1442,7 +1449,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1460,11 +1467,11 @@ msgstr "" msgid "Disabled" msgstr "Απενεργοποιημένο" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1487,16 +1494,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Βελτιστοποίηση Απόστασης" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Απόσταση σε μέτρα από το πιο απομακρυσμένο μέλος του δικτύου." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Διαφορική Λήψη" @@ -1606,7 +1613,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Μέθοδος EAP" @@ -1631,7 +1638,7 @@ msgstr "Επεξεργασία αυτής της διεπαφής" msgid "Edit this network" msgstr "Επεξεργασία αυτού του δικτύου" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Έκτακτη ανάγκη" @@ -1666,11 +1673,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Ενεργοποίηση διαπραγμάτευσης IPv6 πάνω στη PPP ζεύξη" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Ενεργοποίηση διέλευσης Jumbo Frame" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1682,27 +1689,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Ενεργοποίηση εξυπηρετητή TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Ενεργοποίηση λειτουργίας VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Ένεργοποίηση learning and aging" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1736,7 +1743,7 @@ msgstr "Ενεργοποιημένο" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1753,9 +1760,9 @@ msgstr "Λειτουργία ενθυλάκωσης" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Κρυπτογράφηση" @@ -1775,28 +1782,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Διαγράφεται..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Σφάλμα" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Προσαρμογέας Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet Switch" @@ -1812,7 +1819,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Λήγει" @@ -1828,23 +1835,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Εξωτερικός εξυπηρετητής καταγραφής συστήματος" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1852,15 +1859,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1952,7 +1959,7 @@ msgstr "Φλασάρισμα νέας εικόνας υλικολογισμικ msgid "Flash operations" msgstr "Λειτουργίες φλασάρισματος" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Φλασάρεται..." @@ -1966,11 +1973,11 @@ msgstr "" msgid "Force" msgstr "Επιβολή" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Επιβολή CCMP (AES)" @@ -1979,11 +1986,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Επιβολή DHCP σε αυτό το δίκτυο ακόμα κι αν έχει εντοπιστεί άλλος εξυπηρετητής" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Επιβολή TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Επιβολή TKIP και CCMP (AES)" @@ -2007,7 +2014,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Προώθηση κίνησης DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2015,7 +2022,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Προώθηση κίνησης broadcast" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2023,12 +2030,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Μέθοδος προώθησης" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Όριο Κατακερµατισµού" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Bursting Πλαισίων" @@ -2045,7 +2052,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2054,8 +2061,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Πύλη" @@ -2078,7 +2085,7 @@ msgstr "Γενικές Ρυθμίσεις" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2086,7 +2093,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2113,7 +2120,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2138,7 +2145,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2146,7 +2153,7 @@ msgstr "" msgid "Hang Up" msgstr "Κρέμασμα" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2162,9 +2169,9 @@ msgstr "" "Εδώ μπορείτε να παραμετροποιήσετε βασικές πλευρές της συσκευής σας όπως το " "όνομα υπολογιστή ή τη ζώνη ώρας." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Κρυφό <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2199,8 +2206,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Όνομα Υπολογιστή" @@ -2261,7 +2267,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Τείχος Προστασίας" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2353,7 +2359,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2420,7 +2426,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Ταυτότητα" @@ -2536,10 +2542,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Πληροφορίες" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2560,7 +2570,7 @@ msgstr "" msgid "Install package %q" msgstr "Εγκατάσταση πακέτου %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Εγκατάσταση επεκτάσεων πρωτοκόλλου..." @@ -2578,7 +2588,7 @@ msgstr "Διεπαφή" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Παραμετροποίηση Διεπαφής" @@ -2590,12 +2600,12 @@ msgstr "Επισκόπηση Διεπαφής" msgid "Interface is reconnecting..." msgstr "Η διεπαφή επανασυνδέεται..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Η διεπαφή δεν υπάρχει ή δεν έχει συνδεθεί ακόμη." @@ -2614,15 +2624,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Άκυρη τιμή εισόδου" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2630,7 +2640,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2644,10 +2654,9 @@ msgstr "" "flash, παρακαλώ επιβεβαιώστε το αρχείο εικόνας!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Απαιτείται JavaScript!" @@ -2676,18 +2685,22 @@ msgstr "Καταγραφή Πυρήνα" msgid "Kernel Version" msgstr "Έκδοση Πυρήνα" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Κλειδί" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Κλειδί #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Σκότωμα" @@ -2727,7 +2740,7 @@ msgstr "LLC" msgid "Label" msgstr "Ετικέτα" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Γλώσσα" @@ -2735,7 +2748,7 @@ msgstr "Γλώσσα" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2786,19 +2799,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2812,7 +2825,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2821,7 +2834,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2859,7 +2872,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Φόρτος" @@ -2908,7 +2920,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Τοπική Ώρα" @@ -2944,7 +2956,7 @@ msgstr "Τοπικά ερωτήματα" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Επίπεδο εξόδου αρχείων καταγραφής" @@ -2964,7 +2976,7 @@ msgstr "Σύνδεση" msgid "Logout" msgstr "Αποσύνδεση" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2980,24 +2992,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Διεύθυνση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Φίλτρο MAC Διευθύνσεων" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-Φίλτρο" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Λίστα MAC" @@ -3043,11 +3055,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3082,12 +3094,16 @@ msgstr "Μέγιστος αριθμός διευθύνσεων lease" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Μνήμη" @@ -3096,7 +3112,7 @@ msgstr "Μνήμη" msgid "Memory usage (%)" msgstr "Χρήση Μνήμης (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3108,11 +3124,11 @@ msgstr "" msgid "Metric" msgstr "Μέτρο" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3120,16 +3136,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Λειτουργία" @@ -3157,12 +3173,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Παρακολούθηση" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 #, fuzzy msgid "Mount Entry" @@ -3173,7 +3193,7 @@ msgstr "Προσάρτηση" msgid "Mount Point" msgstr "Σημείο Προσάρτησης" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3223,7 +3243,7 @@ msgstr "Μετακίνηση κάτω" msgid "Move up" msgstr "Μετακίνηση πάνω" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3247,7 +3267,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3265,18 +3285,17 @@ msgstr "Όνομα νέας διεπαφής" msgid "Name of the new network" msgstr "Όνομα νέου δικτύου" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Πλοήγηση" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Μάσκα δικτύου" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3300,7 +3319,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3325,7 +3344,7 @@ msgid "No files found" msgstr "Δε βρέθηκαν αρχεία" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες" @@ -3347,10 +3366,9 @@ msgid "No network name specified" msgstr "Δεν έχει οριστεί όνομα δικτύου" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Δεν έχει οριστεί κωδικός πρόσβασης!" @@ -3378,7 +3396,7 @@ msgstr "Δεν έχει ανατεθεί ζώνη" msgid "Noise" msgstr "Θόρυβος" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3386,7 +3404,7 @@ msgstr "" msgid "Noise:" msgstr "Θόρυβος:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3399,7 +3417,7 @@ msgstr "" msgid "None" msgstr "Κανένα" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Φυσιολογικό" @@ -3412,16 +3430,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Επισήμανση" @@ -3433,7 +3455,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3515,7 +3537,7 @@ msgstr "Η επιλογή άλλαξε" msgid "Option removed" msgstr "Η επιλογή αφαιρέθηκε" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3622,7 +3644,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3684,7 +3706,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3737,8 +3759,8 @@ msgid "Part of zone %q" msgstr "Μέρος της ζώνης %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3748,14 +3770,21 @@ msgstr "Κωδικός Πρόσβασης" msgid "Password authentication" msgstr "Εξουσιοδότηση με κωδικό πρόσβασης" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Κωδικός Πρόσβασης του Ιδιωτικού Κλειδιού" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3764,27 +3793,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Διαδρομή για Πιστοποιητικό CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Διαδρομή για Πιστοποιητικό-Πελάτη" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Διαδρομή για Ιδιωτικό Κλειδί" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3862,6 +3891,14 @@ msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδ msgid "Policy" msgstr "Πολιτική" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Θύρα" @@ -3870,11 +3907,11 @@ msgstr "Θύρα" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3886,7 +3923,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3909,8 +3946,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 #, fuzzy msgid "Prevents client-to-client communication" msgstr "Αποτρέπει την επικοινωνία μεταξύ πελατών" @@ -3928,7 +3965,7 @@ msgstr "Συνέχεια" msgid "Processes" msgstr "Εργασίες" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3938,8 +3975,8 @@ msgstr "Πρωτ." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Πρωτόκολλο" @@ -3952,7 +3989,7 @@ msgstr "Πρωτόκολλο νέας διεπαφής" msgid "Protocol support is not installed" msgstr "Η υποστήριξη πρωτοκόλλου δεν έχει εκγατασταθεί" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3960,7 +3997,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ψευδό Ad-Hoc (ahdemo)" @@ -3985,7 +4022,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3995,11 +4032,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4007,8 +4044,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Όριο RTS/CTS" @@ -4022,27 +4063,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4098,7 +4139,7 @@ msgstr "Κίνηση πραγματικού χρόνου" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4106,7 +4147,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Επανεκκίνηση" @@ -4124,8 +4165,8 @@ msgstr "Επανεκκίνηση του λειτουργικού συστήμα msgid "Receive" msgstr "Λήψη" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Κεραία Λήψης" @@ -4192,7 +4233,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4215,10 +4256,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4273,8 +4314,8 @@ msgid "Restore backup" msgstr "Επαναφορά αντιγράφου ασφαλείας" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4321,8 +4362,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Κωδικός Πρόσβασης Δρομολογητή" @@ -4361,7 +4402,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Πρόσβαση SSH" @@ -4378,7 +4419,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Κλειδιά SSH" @@ -4386,7 +4427,7 @@ msgstr "Κλειδιά SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4397,7 +4438,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Αποθήκευση" @@ -4426,7 +4467,7 @@ msgstr "Σάρωση" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Προγραμματισμένες Εργασίες" @@ -4461,7 +4502,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 #, fuzzy msgid "Separate Clients" msgstr "Απομόνωση Πελατών" @@ -4497,7 +4538,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4513,7 +4554,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Ρύθμιση Εξυπηρετητή DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4521,7 +4562,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4544,11 +4585,11 @@ msgstr "Απενεργοποίηση αυτής της διεπαφής" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Σήμα" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4564,7 +4605,7 @@ msgstr "Μέγεθος" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4573,21 +4614,19 @@ msgstr "" msgid "Skip" msgstr "Παράκαμψη" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Παράκαμψη σε περιεχόμενο" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Παράκαμψη σε πλοήγηση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4676,7 +4715,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Εκκίνηση" @@ -4696,7 +4735,7 @@ msgstr "Στατικά Leases" msgid "Static Routes" msgstr "Στατικές Διαδρομές" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Στατική διεύθυνση" @@ -4707,7 +4746,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4727,6 +4766,10 @@ msgstr "" msgid "Strict order" msgstr "Αυστηρή σειρά" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Υποβολή" @@ -4752,15 +4795,15 @@ msgstr "" msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4769,7 +4812,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4785,8 +4828,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4811,7 +4858,7 @@ msgstr "Καταγραφή Συστήματος" msgid "System Properties" msgstr "Ιδιότητες Συστήματος" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -5007,13 +5054,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5038,7 +5085,7 @@ msgstr "" "Η εικόνα που ανεβάσατε δεν περιέχει κάποια υποστηριζόμενη μορφή. Βεβαιωθείτε " "ότι επιλέξατε την γενική μορφή εικόνας για την πλατφόρμα σας." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Εμφάνιση" @@ -5066,10 +5113,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5153,24 +5199,24 @@ msgstr "" "Αυτή η σελίδα δίνει μία εικόνα για τις τρέχουσες ενεργές συνδέσεις δικτύου." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Αυτό το τμήμα δεν περιέχει τιμές ακόμη" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Ζώνη ώρας" @@ -5213,7 +5259,7 @@ msgstr "Κίνηση" msgid "Transfer" msgstr "Μεταφέρθηκαν" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Ρυθμός Εκπομπής" @@ -5221,14 +5267,14 @@ msgstr "Ρυθμός Εκπομπής" msgid "Transmit" msgstr "Εκπομπή" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Ισχύς Εκπομπής" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Κεραία Εκπομπής" @@ -5244,7 +5290,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Διεπαφή Τούνελ" @@ -5259,7 +5305,7 @@ msgid "Tx-Power" msgstr "Ισχύς Εκπομπής" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Τύπος" @@ -5318,19 +5364,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Άγνωστο" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5344,7 +5390,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5359,7 +5404,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5409,8 +5454,8 @@ msgstr "Χρήση πύλης DHCP" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5513,11 +5558,11 @@ msgstr "" msgid "Used" msgstr "Σε χρήση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Χρησιμοποιούμενη Υποδοχή Κλειδιού" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5545,11 +5590,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5595,18 +5640,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Μοιραζόμενο κλειδί WEP" @@ -5614,8 +5659,8 @@ msgstr "Μοιραζόμενο κλειδί WEP" msgid "WEP passphrase" msgstr "Κωδική φράση WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Υποστήριξη WMM" @@ -5623,9 +5668,9 @@ msgstr "Υποστήριξη WMM" msgid "WPA passphrase" msgstr "Κωδική φράση WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5647,8 +5692,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Προειδοποίηση" @@ -5656,7 +5701,11 @@ msgstr "Προειδοποίηση" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5683,7 +5732,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5697,12 +5746,12 @@ msgstr "" msgid "Wireless" msgstr "Ασύρματο" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Ασύρματος Προσαρμογέας" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Ασύρματο Δίκτυο" @@ -5710,20 +5759,20 @@ msgstr "Ασύρματο Δίκτυο" msgid "Wireless Overview" msgstr "Επισκόπηση Ασύρματου Δικτύου" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Ασφάλεια Ασύρματου Δικτύου" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Το ασύρματο δίκτυο είναι απενεργοποιημένο" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Το ασύρματο δίκτυο μη συνδεδεμένο" @@ -5743,7 +5792,7 @@ msgstr "Το ασύρματο δίκτυο είναι ενεργό" msgid "Write received DNS requests to syslog" msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5763,34 +5812,26 @@ msgstr "" "όπως το \"network\", η συσκευή σας μπορεί να καταστεί μη-προσβάσιμη!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5801,11 +5842,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5859,8 +5900,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "ανενεργό" @@ -5919,19 +5960,6 @@ msgstr "αν ο στόχος είναι ένα δίκτυο" msgid "input" msgstr "είσοδος" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5964,7 +5992,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "τοπικό αρχείο <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5992,20 +6020,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "κλειστό" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ανοιχτό" @@ -6049,8 +6075,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6071,11 +6097,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6102,7 +6128,7 @@ msgstr "μη-καθορισμένο" msgid "unspecified -or- create:" msgstr "μη-καθορισμένο -ή- δημιουργείστε:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index 02cc7a1fad..7155379ae3 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(no interfaces attached)" msgid "-- Additional Field --" msgstr "-- Additional Field --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Please choose --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- custom --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 Minute Load:" @@ -98,7 +102,7 @@ msgstr "1 Minute Load:" msgid "15 Minute Load:" msgstr "15 Minute Load:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 Minute Load:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " "order of the resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -193,7 +197,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -300,7 +304,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM device number" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -308,8 +312,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Access Concentrator" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Access Point" @@ -339,7 +343,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -347,8 +351,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -385,8 +389,8 @@ msgstr "Additional Hosts files" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Address" @@ -395,30 +399,34 @@ msgid "Address to access local relay bridge" msgstr "Address to access local relay bridge" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Advanced Settings" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alert" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -445,21 +453,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Allow all except listed" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Allow listed only" @@ -501,14 +509,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -580,7 +588,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -592,17 +600,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antenna 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antenna 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -628,7 +636,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Assign interfaces..." @@ -643,7 +651,7 @@ msgstr "" msgid "Associated Stations" msgstr "Associated Stations" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -652,7 +660,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Authentication" @@ -670,12 +678,11 @@ msgstr "Authorization Required" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Auto Refresh" @@ -747,7 +754,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -777,7 +784,7 @@ msgstr "Back to scan results" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Backup / Flash Firmware" @@ -789,12 +796,12 @@ msgstr "Backup file list" msgid "Bad address specified!" msgstr "Bad address specified!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -824,7 +831,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitrate" @@ -832,7 +839,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Bogus NX Domain Override" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Bridge" @@ -916,7 +923,7 @@ msgstr "Changes applied." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Changes the administrator password for accessing the device" @@ -924,12 +931,12 @@ msgstr "Changes the administrator password for accessing the device" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Channel" @@ -972,13 +979,13 @@ msgstr "" "fill out the <em>create</em> field to define a new zone and attach the " "interface to it." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Cipher" @@ -1000,8 +1007,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Client" @@ -1045,7 +1052,7 @@ msgstr "Close list..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Collecting data..." @@ -1061,7 +1068,7 @@ msgstr "" msgid "Common Configuration" msgstr "Common Configuration" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1093,7 +1100,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmation" @@ -1102,12 +1109,12 @@ msgid "Connect" msgstr "Connect" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Connected" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Connection Limit" @@ -1130,9 +1137,9 @@ msgstr "" msgid "Country" msgstr "Country" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Country Code" @@ -1157,11 +1164,11 @@ msgstr "Create Interface" msgid "Create a bridge over multiple interfaces" msgstr "Create a bridge over multiple interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critical" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron Log Level" @@ -1194,15 +1201,15 @@ msgstr "" "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" "\">LED</abbr>s if possible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1216,7 +1223,7 @@ msgstr "DHCP Server" msgid "DHCP and DNS" msgstr "DHCP and DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP client" @@ -1236,16 +1243,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1278,7 +1285,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1286,7 +1293,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1294,18 +1301,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Default %d" @@ -1345,7 +1352,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Delete" @@ -1359,7 +1366,7 @@ msgstr "" msgid "Delete this network" msgstr "Delete this network" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1375,8 +1382,8 @@ msgstr "Destination" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1429,7 +1436,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1447,11 +1454,11 @@ msgstr "" msgid "Disabled" msgstr "Disabled" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1474,16 +1481,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Distance Optimization" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distance to farthest network member in meters." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversity" @@ -1586,7 +1593,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-Method" @@ -1611,7 +1618,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1646,11 +1653,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1662,27 +1669,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1716,7 +1723,7 @@ msgstr "Enabled" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1733,9 +1740,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Encryption" @@ -1755,28 +1762,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Error" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet Adapter" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet Switch" @@ -1792,7 +1799,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "" @@ -1805,23 +1812,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1829,15 +1836,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1929,7 +1936,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1943,11 +1950,11 @@ msgstr "" msgid "Force" msgstr "Force" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1955,11 +1962,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1983,7 +1990,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1991,7 +1998,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1999,12 +2006,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Fragmentation Threshold" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Frame Bursting" @@ -2021,7 +2028,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2030,8 +2037,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2054,7 +2061,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "General Setup" @@ -2062,7 +2069,7 @@ msgstr "General Setup" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2089,7 +2096,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2114,7 +2121,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2122,7 +2129,7 @@ msgstr "" msgid "Hang Up" msgstr "Hang Up" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2138,9 +2145,9 @@ msgstr "" "Here you can configure the basic aspects of your device like its hostname or " "the timezone." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2174,8 +2181,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Hostname" @@ -2236,7 +2242,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2328,7 +2334,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2395,7 +2401,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identity" @@ -2506,10 +2512,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2530,7 +2540,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2548,7 +2558,7 @@ msgstr "Interface" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2560,12 +2570,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2584,15 +2594,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Invalid input value" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2600,7 +2610,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Invalid username and/or password! Please try again." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2614,10 +2624,9 @@ msgstr "" "memory, please verify the image file!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2646,18 +2655,22 @@ msgstr "Kernel Log" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Kill" @@ -2697,7 +2710,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Language" @@ -2705,7 +2718,7 @@ msgstr "Language" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2756,19 +2769,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2782,7 +2795,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2791,7 +2804,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2829,7 +2842,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Load" @@ -2878,7 +2890,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Local Time" @@ -2914,7 +2926,7 @@ msgstr "Localise queries" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2934,7 +2946,7 @@ msgstr "Login" msgid "Logout" msgstr "Logout" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2950,24 +2962,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-Address Filter" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-Filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-List" @@ -3013,11 +3025,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3051,12 +3063,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memory" @@ -3065,7 +3081,7 @@ msgstr "Memory" msgid "Memory usage (%)" msgstr "Memory usage (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3077,11 +3093,11 @@ msgstr "" msgid "Metric" msgstr "Metric" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3089,16 +3105,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mode" @@ -3126,12 +3142,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3141,7 +3161,7 @@ msgstr "" msgid "Mount Point" msgstr "Mount Point" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3191,7 +3211,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3215,7 +3235,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3233,18 +3253,17 @@ msgstr "" msgid "Name of the new network" msgstr "Name of the new network" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3268,7 +3287,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3293,7 +3312,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3315,10 +3334,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3346,7 +3364,7 @@ msgstr "" msgid "Noise" msgstr "Noise" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3354,7 +3372,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3367,7 +3385,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3380,16 +3398,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3401,7 +3423,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3483,7 +3505,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3590,7 +3612,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3652,7 +3674,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3705,8 +3727,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3716,14 +3738,21 @@ msgstr "Password" msgid "Password authentication" msgstr "Password authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Password of Private Key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3732,27 +3761,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Path to CA-Certificate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Path to Private Key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3830,6 +3859,14 @@ msgstr "Please enter your username and password." msgid "Policy" msgstr "Policy" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3838,11 +3875,11 @@ msgstr "Port" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3854,7 +3891,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3877,8 +3914,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Prevents client-to-client communication" @@ -3895,7 +3932,7 @@ msgstr "Proceed" msgid "Processes" msgstr "Processes" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3905,8 +3942,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocol" @@ -3919,7 +3956,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3927,7 +3964,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3952,7 +3989,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3962,11 +3999,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3974,8 +4011,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Threshold" @@ -3989,27 +4030,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4065,7 +4106,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4073,7 +4114,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4091,8 +4132,8 @@ msgstr "Reboots the operating system of your device" msgid "Receive" msgstr "Receive" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Receiver Antenna" @@ -4159,7 +4200,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4182,10 +4223,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4240,8 +4281,8 @@ msgid "Restore backup" msgstr "Restore backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4288,8 +4329,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4327,7 +4368,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4344,7 +4385,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4352,7 +4393,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4363,7 +4404,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Save" @@ -4392,7 +4433,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Scheduled Tasks" @@ -4427,7 +4468,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Separate Clients" @@ -4462,7 +4503,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4478,7 +4519,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4486,7 +4527,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4509,11 +4550,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4529,7 +4570,7 @@ msgstr "Size" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4538,21 +4579,19 @@ msgstr "" msgid "Skip" msgstr "Skip" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Skip to content" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Skip to navigation" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Slot time" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4639,7 +4678,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4659,7 +4698,7 @@ msgstr "Static Leases" msgid "Static Routes" msgstr "Static Routes" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4670,7 +4709,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4690,6 +4729,10 @@ msgstr "Stop" msgid "Strict order" msgstr "Strict order" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Submit" @@ -4715,15 +4758,15 @@ msgstr "" msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4732,7 +4775,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4748,8 +4791,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4774,7 +4821,7 @@ msgstr "System Log" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4968,13 +5015,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4999,7 +5046,7 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Theme" @@ -5027,10 +5074,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5111,24 +5157,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "This page gives an overview over currently active network connections." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "This section contains no values yet" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Timezone" @@ -5170,7 +5216,7 @@ msgstr "Traffic" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Transmission Rate" @@ -5178,14 +5224,14 @@ msgstr "Transmission Rate" msgid "Transmit" msgstr "Transmit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Transmit Power" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Transmitter Antenna" @@ -5201,7 +5247,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5216,7 +5262,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Type" @@ -5275,19 +5321,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5301,7 +5347,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5316,7 +5361,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5366,8 +5411,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5470,11 +5515,11 @@ msgstr "" msgid "Used" msgstr "Used" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5502,11 +5547,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5552,18 +5597,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5571,8 +5616,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM Mode" @@ -5580,9 +5625,9 @@ msgstr "WMM Mode" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5606,8 +5651,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5615,7 +5660,11 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5642,7 +5691,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5656,12 +5705,12 @@ msgstr "" msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Wireless Adapter" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Wireless Network" @@ -5669,20 +5718,20 @@ msgstr "Wireless Network" msgid "Wireless Overview" msgstr "Wireless Overview" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Wireless Security" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5702,7 +5751,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5721,34 +5770,26 @@ msgstr "" "scripts like \"network\", your device might become inaccessible!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5759,11 +5800,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5816,8 +5857,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "disable" @@ -5876,19 +5917,6 @@ msgstr "if target is a network" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5921,7 +5949,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> file" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5949,20 +5977,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -6006,8 +6032,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6028,11 +6054,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6059,7 +6085,7 @@ msgstr "" msgid "unspecified -or- create:" msgstr "unspecified -or- create:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index 092d492409..9058824156 100644 --- a/modules/luci-base/po/es/base.po +++ b/modules/luci-base/po/es/base.po @@ -1,33 +1,33 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2014-05-04 11:38+0200\n" +"PO-Revision-Date: 2019-05-16 20:13-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 msgid "%.1f dB" -msgstr "" +msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 msgid "%d Bit" -msgstr "" +msgstr "%d Bit" #: modules/luci-base/htdocs/luci-static/resources/luci.js:307 msgid "%d invalid field(s)" -msgstr "" +msgstr "%d campo(s) inválido(s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" -msgstr "" +msgstr "¡%s no está etiquetado en varias VLAN!" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 @@ -39,56 +39,62 @@ msgstr "(ventana de %d minutos, intervalo de %d segundos)" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 msgid "(%s available)" -msgstr "(%s está disponible)" +msgstr "(%s disponible)" #: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 #: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 msgid "(empty)" -msgstr "(vacío)" +msgstr "(Vacío)" #: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 #: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 msgid "(no interfaces attached)" -msgstr "(sin interfaces conectados)" +msgstr "(Sin interfaces conectadas)" #: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 msgid "-- Additional Field --" -msgstr "-- Campo Adicional --" +msgstr "-- Campo adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" -msgstr "-- Elija, por favor --" +msgstr "-- Por favor elija --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" -msgstr "-- introducir --" +msgstr "-- Personalizado --" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 msgid "-- match by device --" -msgstr "" +msgstr "-- Emparejar por dispositivo --" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 msgid "-- match by label --" -msgstr "" +msgstr "-- Emparejar por etiqueta --" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 msgid "-- match by uuid --" -msgstr "" +msgstr "-- Emparejar por uuid --" #: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 #: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 msgid "-- please select --" +msgstr "-- Por favor seleccione --" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" msgstr "" +"0 = Sin utilizar el umbral RSSI, 1 = No cambiar el valor predeterminado del " +"controlador" #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" @@ -98,50 +104,49 @@ msgstr "Carga a 1 minuto:" msgid "15 Minute Load:" msgstr "Carga a 15 minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" -msgstr "" +msgstr "ID hexadecimal de 4 caracteres" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 msgid "464XLAT (CLAT)" -msgstr "" +msgstr "464XLAT (CLAT)" #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Carga a 5 minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" -msgstr "" +msgstr "Identificador de 6 octetos como una cadena hexadecimal, sin dos puntos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" -msgstr "" +msgstr "Habilitar 802.11r (FT)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" -msgstr "" +msgstr "Consulta tiempo de espera máximo de Asociación SA de 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" -msgstr "" +msgstr "Consulta tiempo de espera de reintento de Asociación SA de 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" -msgstr "" +msgstr "Protección de marco de gestión de 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" -msgstr "" +msgstr "Tiempo de espera máximo de 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" -msgstr "" +msgstr "Tiempo de espera de reintento de 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -msgstr "" -"<abbr title=\"Identificador de conjunto de servicios básicos\">BSSID</abbr>" +msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" @@ -157,13 +162,11 @@ msgid "" "order of the resolvfile" msgstr "" "Los servidores de <abbr title=\"Domain Name System\">DNS</abbr> se consultan " -"en el orden en que aparecen en el fichero resolv" +"en el orden en que aparecen en el archivo resolv" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -msgstr "" -"<abbr title=\"Identificador de conjunto de servicios extendidos\">ESSID</" -"abbr>" +msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 @@ -195,9 +198,9 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" -msgstr "" +msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuración de <abbr title=\"Light Emitting Diode\">LEDs</abbr>" @@ -213,14 +216,14 @@ msgstr "Dirección <abbr title=\"Media Access Control\">MAC</abbr>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -msgstr "" +msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -"Máximas cesiones <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" +"Máximas conexiones <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 @@ -231,33 +234,37 @@ msgstr "Tamaño máximo de paquetes EDNS0" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" -msgstr "Máximo número de consultas concurrentes" +msgstr "<abbr title=\"maximal\">Máx.</abbr> consultas simultáneas" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 msgid "" "<br/>Note: you need to manually restart the cron service if the crontab file " "was empty before editing." msgstr "" +"<br/>Nota: debe reiniciar manualmente el servicio cron si el archivo crontab " +"estaba vacío antes de editar." #: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 msgid "A new login is required since the authentication session expired." msgstr "" +"Se requiere un nuevo inicio de sesión ya que la sesión de autenticación " +"expiró." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 msgid "A43C + J43 + A43" -msgstr "" +msgstr "A43C + J43 + A43" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 msgid "A43C + J43 + A43 + V43" -msgstr "" +msgstr "A43C + J43 + A43 + V43" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 msgid "ADSL" -msgstr "" +msgstr "ADSL" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 msgid "ANSI T1.413" -msgstr "" +msgstr "ANSI T1.413" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 @@ -271,7 +278,7 @@ msgstr "Umbral de reintento ARP" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" +msgstr "ATM (Modo de transferencia asíncrono)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 msgid "ATM Bridges" @@ -302,16 +309,16 @@ msgstr "" msgid "ATM device number" msgstr "Número de dispositivo ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" -msgstr "" +msgstr "ID del proveedor del sistema ATU-C" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 msgid "Access Concentrator" msgstr "Concentrador de acceso" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Punto de Acceso" @@ -322,11 +329,11 @@ msgstr "Acciones" #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" -msgstr "Rutas activas <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" +msgstr "Rutas <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> activas" #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" -msgstr "Rutas activas <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" +msgstr "Rutas <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> activas" #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 @@ -335,13 +342,13 @@ msgstr "Conexiones activas" #: modules/luci-base/luasrc/view/lease_status.htm:68 msgid "Active DHCP Leases" -msgstr "Cesiones DHCP activas" +msgstr "Clientes DHCP activos" #: modules/luci-base/luasrc/view/lease_status.htm:83 msgid "Active DHCPv6 Leases" -msgstr "Cesiones DHCPv6 activas" +msgstr "Clientes DHCPv6 activos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -349,8 +356,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -358,24 +365,24 @@ msgstr "Añadir" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 msgid "Add IPv4 address…" -msgstr "" +msgstr "Añadir dirección IPv4..." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 msgid "Add IPv6 address…" -msgstr "" +msgstr "Añadir dirección IPv6..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 msgid "Add key" -msgstr "" +msgstr "Añadir clave" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" -"Añadir el sufijo de dominio local a los nombres servidos desde el fichero de " -"máquinas" +"Añadir el sufijo de dominio local a los nombres servidos desde el archivo de " +"hosts" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 msgid "Add new interface..." @@ -383,14 +390,14 @@ msgstr "Añadir nueva interfaz..." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 msgid "Additional Hosts files" -msgstr "Ficheros de máquinas adicionales" +msgstr "Archivos de hosts adicionales" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 msgid "Additional servers file" -msgstr "" +msgstr "Archivo de servidores adicionales" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Dirección" @@ -399,51 +406,57 @@ msgid "Address to access local relay bridge" msgstr "Dirección del puente relé local" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administración" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "Avanzado" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Configuración avanzada" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" +msgstr "Potencia de transmisión agregada (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" -msgstr "" +msgstr "Apodo de interfaz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 msgid "Alias of \"%s\"" -msgstr "" +msgstr "Apodo de \"%s\"" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 msgid "All Servers" -msgstr "" +msgstr "Todos los servidores" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address" msgstr "" +"Asigna direcciones IP secuencialmente, comenzando desde la dirección más " +"baja disponible" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 msgid "Allocate IP sequentially" -msgstr "" +msgstr "Asignar IPs secuencialmente" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" @@ -451,31 +464,34 @@ msgstr "" "Permitir autenticación de contraseña via <abbr title=\"Secure Shell\">SSH</" "abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" +"Permitir que el modo AP desconecte los clientes por una condición de ACK bajo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Permitir a todos excepto a los de la lista" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" -msgstr "" +msgstr "Permitir tasas de 802.11b heredadas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Permitir a los pertenecientes en la lista" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 msgid "Allow localhost" -msgstr "Permitir a la propia máquina" +msgstr "Permitir host local" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "Permitir a máquinas remotas conectar a puestos SSH locales traspasados" +msgstr "" +"Permitir que los hosts remotos se conecten a los puertos reenviados SSH " +"locales" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" @@ -493,122 +509,126 @@ msgstr "" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 msgid "Allowed IPs" -msgstr "" +msgstr "IPs permitidas" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 msgid "Always announce default router" -msgstr "" +msgstr "Siempre anunciar el enrutador predeterminado" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 msgid "Always off (%s)" -msgstr "" +msgstr "Siempre apagado (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 msgid "Always on (%s)" -msgstr "" +msgstr "Siempre encendido (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" +"Usará siempre canales de 40MHz incluso si el canal secundario se superpone. " +"¡El uso de esta opción no cumple con IEEE 802.11n-2009!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" -msgstr "" +msgstr "Anexo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 msgid "Annex A + L + M (all)" -msgstr "" +msgstr "Anexo A + L + M (todos)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 msgid "Annex A G.992.1" -msgstr "" +msgstr "Anexo A G.992.1" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 msgid "Annex A G.992.2" -msgstr "" +msgstr "Anexo A G.992.2" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 msgid "Annex A G.992.3" -msgstr "" +msgstr "Anexo A G.992.3" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 msgid "Annex A G.992.5" -msgstr "" +msgstr "Anexo A G.992.5" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 msgid "Annex B (all)" -msgstr "" +msgstr "Anexo B (todos)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 msgid "Annex B G.992.1" -msgstr "" +msgstr "Anexo B G.992.1" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 msgid "Annex B G.992.3" -msgstr "" +msgstr "Anexo B G.992.3" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 msgid "Annex B G.992.5" -msgstr "" +msgstr "Anexo B G.992.5" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 msgid "Annex J (all)" -msgstr "" +msgstr "Anexo J (todos)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 msgid "Annex L G.992.3 POTS 1" -msgstr "" +msgstr "Anexo L G.992.3 POTS 1" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 msgid "Annex M (all)" -msgstr "" +msgstr "Anexo M (todos)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 msgid "Annex M G.992.3" -msgstr "" +msgstr "Anexo M G.992.3" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 msgid "Annex M G.992.5" -msgstr "" +msgstr "Anexo M G.992.5" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 msgid "Announce as default router even if no public prefix is available." msgstr "" +"Anuncie como enrutador predeterminado incluso si no hay un prefijo público " +"disponible." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 msgid "Announced DNS domains" -msgstr "" +msgstr "Dominios DNS anunciados" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 msgid "Announced DNS servers" -msgstr "" +msgstr "Servidores DNS anunciados" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" -msgstr "" +msgstr "Identidad anónima" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 msgid "Anonymous Mount" -msgstr "" +msgstr "Monte anónimo" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 msgid "Anonymous Swap" -msgstr "" +msgstr "Swap anónimo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configuración de la antena" @@ -618,72 +638,75 @@ msgstr "Cualquier zona" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" -msgstr "" +msgstr "Aplicar de todos modos" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" -msgstr "" +msgstr "Solicitud de aplicar fallida con estado <code>%h</code>" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 msgid "Architecture" -msgstr "" +msgstr "Arquitectura" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" +"Asigna una parte de la longitud dada de cada prefijo IPv6 público a esta " +"interfaz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." -msgstr "Asigne interfaces..." +msgstr "Asignar interfaces..." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 msgid "" "Assign prefix parts using this hexadecimal subprefix ID for this interface." msgstr "" +"Asigna partes de prefijo utilizando este ID de subprefijo hexadecimal para " +"esta interfaz." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 msgid "Associated Stations" -msgstr "Estaciones asociadas" +msgstr "Clientes conectados" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" -msgstr "" +msgstr "Clientes" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 msgid "Auth Group" -msgstr "" +msgstr "Grupo de autenticaciones" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" -msgstr "Autentificación" +msgstr "Autenticación" #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:35 msgid "Authentication Type" -msgstr "" +msgstr "Tipo de autenticación" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 msgid "Authoritative" -msgstr "Autorizado" +msgstr "Autorizar" #: modules/luci-base/luasrc/view/sysauth.htm:17 msgid "Authorization Required" -msgstr "Conéctese" +msgstr "Autorización requerida" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" -msgstr "Autorefresco" +msgstr "Autorefrescar" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 @@ -694,31 +717,33 @@ msgstr "Autorefresco" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 msgid "Automatic" -msgstr "" +msgstr "Automático" #: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 msgid "Automatic Homenet (HNCP)" -msgstr "" +msgstr "Homenet automático (HNCP)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 msgid "Automatically check filesystem for errors before mounting" msgstr "" +"Comprobar automáticamente el sistema de archivos para detectar errores antes " +"del montaje" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 msgid "Automatically mount filesystems on hotplug" -msgstr "" +msgstr "Montar automáticamente el sistemas de archivos en hotplug" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 msgid "Automatically mount swap on hotplug" -msgstr "" +msgstr "Montar swap automáticamente en hotplug" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 msgid "Automount Filesystem" -msgstr "" +msgstr "Montar el sistema de archivos automáticamente" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 msgid "Automount Swap" -msgstr "" +msgstr "Montar Swap automáticamente" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 msgid "Available" @@ -740,20 +765,20 @@ msgstr "Media:" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 msgid "B43 + B43C" -msgstr "" +msgstr "B43 + B43C" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 msgid "B43 + B43C + V43" -msgstr "" +msgstr "B43 + B43C + V43" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 msgid "BR / DMR / AFTR" -msgstr "" +msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -781,28 +806,28 @@ msgstr "Volver a resultados de la exploración" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 msgid "Backup" -msgstr "Salvar" +msgstr "Copia de seguridad" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Copia de seguridad / Grabar firmware" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" -msgstr "Salvar lista de ficheros" +msgstr "Salvar lista de archivos" #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 msgid "Bad address specified!" msgstr "¡Dirección no válida!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" -msgstr "" +msgstr "Banda" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" -msgstr "" +msgstr "Intervalo de baliza" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:39 msgid "" @@ -810,8 +835,8 @@ msgid "" "configuration files marked by opkg, essential base files and the user " "defined backup patterns." msgstr "" -"Lista de ficheros a los que hacer copia de seguridad. Es una lista de " -"ficheros de configuración cambiados por ficheros marcados por opkg, ficheros " +"Lista de archivos a los que hacer copia de seguridad. Es una lista de " +"archivos de configuración cambiados por archivos marcados por opkg, archivos " "esenciales base y los patrones de copia de seguridad definidos por el " "usuario." @@ -820,18 +845,20 @@ msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" msgstr "" +"Enlace dinámico a las interfaces en lugar de la dirección del comodín " +"(recomendado como linux predeterminado)" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" -msgstr "" +msgstr "Interfaz de enlace" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." -msgstr "" +msgstr "Enlazar el túnel a esta interfaz (opcional)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitrate" @@ -839,7 +866,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Ignorar dominio falso NX" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Puente" @@ -853,15 +880,15 @@ msgstr "Número de unidad del puente" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 msgid "Bring up on boot" -msgstr "Activar en el arranque" +msgstr "Iniciar en el arranque" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Controlador inalámbrico 802.11%s Broadcom" +msgstr "Controlador WiFi 802.11%s Broadcom" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Controlador inalámbrico 802.11 BCM%04x" +msgstr "Controlador WiFi 802.11 BCM%04x" #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 msgid "Buffered" @@ -870,6 +897,7 @@ msgstr "En búfer" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" +"Certificado de CA; Si está vacío se guardará después de la primera conexión." #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 msgid "CPU usage (%)" @@ -877,7 +905,7 @@ msgstr "Uso de CPU (%)" #: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 msgid "Call failed" -msgstr "" +msgstr "Llamada fallida" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 @@ -888,15 +916,15 @@ msgstr "Cancelar" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 msgid "Category" -msgstr "" +msgstr "Categoría" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 msgid "Caution: Configuration files will be erased" -msgstr "" +msgstr "Precaución: los archivos de configuración serán borrados" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 msgid "Caution: System upgrade will be forced" -msgstr "" +msgstr "Precaución: la actualización del sistema será forzada" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 @@ -908,7 +936,7 @@ msgstr "Cadena" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 msgid "Change login password" -msgstr "" +msgstr "Cambiar contraseña de inicio de sesión" #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 @@ -921,22 +949,22 @@ msgstr "Cambios aplicados." #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." -msgstr "" +msgstr "Se eliminaron los cambios." -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Cambie la contraseña del administrador para acceder al dispositivo" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 msgid "Changing password…" -msgstr "" +msgstr "Cambiando contraseña..." -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canal" @@ -945,6 +973,8 @@ msgid "" "Channel %d is not available in the %s regulatory domain and has been auto-" "adjusted to %d." msgstr "" +"El canal %d no está disponible en el dominio regulatorio %s y se ha ajustado " +"automáticamente a %d." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 msgid "Check" @@ -952,11 +982,11 @@ msgstr "Comprobar" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 msgid "Check filesystems before mount" -msgstr "" +msgstr "Comprobar los sistemas de archivos antes de montar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 msgid "Check this option to delete the existing networks from this radio." -msgstr "" +msgstr "Marque esta opción para eliminar las redes existentes de esta radio." #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 msgid "Checksum" @@ -964,7 +994,7 @@ msgstr "Comprobación" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 msgid "Choose mtdblock" -msgstr "" +msgstr "Elegir mtdblock" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 @@ -974,33 +1004,33 @@ msgid "" "fill out the <em>create</em> field to define a new zone and attach the " "interface to it." msgstr "" -"Elija la zona del cortafuegos a la que quiere asignar esta interfaz. " -"Seleccione <em>no especificado</em> para eliminar la interfaz de la zona " -"asociada o rellene el campo <em>crear</em> para definir una zona nueva a la " -"que asignarla." +"Elija la zona del firewall a la que quiere asignar esta interfaz. Seleccione " +"<em>no especificado</em> para remover la interfaz de la zona asociada o " +"rellene el campo <em>crear</em> para definir una zona nueva a la que " +"asignarla." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -"Elija la red o redes a las que quiere unir esta interfaz inalámbrica o vacíe " -"el campo <em>crear</em> para definir una red nueva." +"Elija la red o redes a las que quiere unir esta interfaz WiFi o rellene el " +"campo <em>crear</em> para definir una red nueva." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Cifrado" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 msgid "Cisco UDP encapsulation" -msgstr "" +msgstr "Encapsulación UDP de Cisco" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 msgid "" "Click \"Generate archive\" to download a tar archive of the current " "configuration files." msgstr "" -"Pulse \"generar archivo\" para descargar un fichero tar con los ficheros de " +"Pulse \"generar archivo\" para descargar un archivo .tar con los archivos de " "configuración actuales." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 @@ -1008,9 +1038,11 @@ msgid "" "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " "FEATURE IS FOR PROFESSIONALS! )" msgstr "" +"Haga clic en \"Guardar mtdblock\" para descargar el archivo mtdblock " +"especificado. (NOTA: ¡ESTA FUNCIÓN ES PARA PROFESIONALES!)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Cliente" @@ -1022,7 +1054,7 @@ msgstr "ID de cliente que se enviará al solicitar DHCP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 msgid "Close" -msgstr "" +msgstr "Cerrar" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 @@ -1054,7 +1086,7 @@ msgstr "Cerrar lista..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Un momento..." @@ -1064,19 +1096,24 @@ msgstr "Comando" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 msgid "Comment" -msgstr "" +msgstr "Comentario" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 msgid "Common Configuration" msgstr "Configuración común" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " "workaround might cause interoperability issues and reduced robustness of key " "negotiation especially in environments with heavy traffic load." msgstr "" +"Complica los ataques de reinstalación de claves en el lado del cliente al " +"deshabilitar la retransmisión de los marcos de claves EAPOL que se utilizan " +"para instalar claves. Esta solución podría causar problemas de " +"interoperabilidad y reducir la robustez de la negociación de claves, " +"especialmente en entornos con una gran carga de tráfico." #: modules/luci-base/luasrc/controller/admin/uci.lua:11 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 @@ -1088,21 +1125,21 @@ msgstr "Configuración" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 msgid "Configuration failed" -msgstr "" +msgstr "Configuración fallida" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 msgid "Configuration files will be kept" -msgstr "" +msgstr "Los archivos de configuración se mantendrán" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." -msgstr "" +msgstr "Se ha aplicado la configuración." #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" -msgstr "" +msgstr "¡La configuración ha sido revertida!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmación" @@ -1111,18 +1148,18 @@ msgid "Connect" msgstr "Conectar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Conectado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Límite de conexión" #: modules/luci-base/luasrc/model/network.lua:27 msgid "Connection attempt failed" -msgstr "" +msgstr "Intento de conexión fallido" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 msgid "Connections" @@ -1134,20 +1171,24 @@ msgid "" "changes. You might need to reconnect if you modified network related " "settings such as the IP address or wireless security credentials." msgstr "" +"No se pudo recuperar el acceso al dispositivo después de aplicar los cambios " +"de configuración. Es posible que deba volver a conectarse si modificó la " +"configuración relacionada con la red, como la dirección IP o las " +"credenciales de seguridad WiFi." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 msgid "Country" msgstr "País" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Código de país" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 msgid "Cover the following interface" -msgstr "Cubre el interfaz siguiente" +msgstr "Cubrir interfaz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 msgid "Cover the following interfaces" @@ -1156,7 +1197,7 @@ msgstr "Cubre los siguientes interfaces" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 msgid "Create / Assign firewall-zone" -msgstr "Crear / Asignar zona de seguridad" +msgstr "Crear / Asignar zona de firewall" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 msgid "Create Interface" @@ -1166,11 +1207,11 @@ msgstr "Crear interfaz" msgid "Create a bridge over multiple interfaces" msgstr "Crear un puente sobre múltiples interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Crítico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Nivel de registro de cron" @@ -1179,21 +1220,23 @@ msgstr "Nivel de registro de cron" #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 #: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 msgid "Custom Interface" -msgstr "Interfaz propio" +msgstr "Interfaz personalizada" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 msgid "Custom delegated IPv6-prefix" -msgstr "" +msgstr "Delegado personalizado IPv6-prefix" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " "this, perform a factory-reset first." msgstr "" +"Los archivos personalizados (certificados, scripts) pueden permanecer en el " +"sistema. Para evitar esto, primero realice un restablecimiento de fábrica." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 msgid "Custom flash intervall (%s)" -msgstr "" +msgstr "Intervalo de flash personalizado (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "" @@ -1203,17 +1246,17 @@ msgstr "" "Personaliza el comportamiento de los <abbr title=\"Light Emitting Diode" "\">LED</abbr>s del dispositivo, si es posible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" -msgstr "" +msgstr "Cliente DAE" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" -msgstr "" +msgstr "Puerto DAE" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" -msgstr "" +msgstr "Secreto DAE" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 @@ -1225,7 +1268,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP y DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1235,92 +1278,92 @@ msgstr "Opciones de DHCP" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 msgid "DHCPv6 client" -msgstr "" +msgstr "Cliente DHCPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 msgid "DHCPv6-Mode" -msgstr "" +msgstr "Modo DHCPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 msgid "DHCPv6-Service" -msgstr "" +msgstr "Servicio DHCPv6" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 msgid "DNS forwardings" -msgstr "Retransmisión DNS" +msgstr "Reenvíos DNS" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 msgid "DNS-Label / FQDN" -msgstr "" +msgstr "Etiqueta DNS / FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 msgid "DNSSEC" -msgstr "" +msgstr "DNSSEC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 msgid "DNSSEC check unsigned" -msgstr "" +msgstr "Comprobación DNSSEC sin firmar" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 msgid "DPD Idle Timeout" -msgstr "" +msgstr "Tiempo de espera de inactividad de DPD" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 msgid "DS-Lite AFTR address" -msgstr "" +msgstr "Dirección DS-Lite AFTR" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 msgid "DSL" -msgstr "" +msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" -msgstr "" +msgstr "Estado DSL" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 msgid "DSL line mode" -msgstr "" +msgstr "Modo de línea DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" -msgstr "" +msgstr "Intervalo DTIM" #: modules/luci-base/luasrc/view/lease_status.htm:88 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" -msgstr "" +msgstr "Velocidad de datos" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depuración" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "%d por defecto" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 msgid "Default Route" -msgstr "" +msgstr "Ruta predeterminada" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 @@ -1328,11 +1371,11 @@ msgstr "" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 msgid "Default gateway" -msgstr "Gateway por defecto" +msgstr "Puerta de enlace predeterminada" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 msgid "Default is stateless + stateful" -msgstr "" +msgstr "El valor predeterminado es Din estado + Con estado" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 msgid "Default state" @@ -1348,13 +1391,13 @@ msgid "" "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS " "servers to clients." msgstr "" -"Definir optiones adicionales DHCP, por ejemplo " +"Define opciones adicionales de DHCP, por ejemplo " "\"<code>6,192.168.2.1,192.168.2.2</code>\" que publica diferentes servidores " "DNS a los clientes." #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Eliminar" @@ -1362,15 +1405,15 @@ msgstr "Eliminar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 msgid "Delete key" -msgstr "" +msgstr "Eliminar clave" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 msgid "Delete this network" -msgstr "Borrar esta red" +msgstr "Eliminar esta red" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" -msgstr "" +msgstr "Intervalo de mensaje de indicación de tráfico de entrega" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" @@ -1384,8 +1427,8 @@ msgstr "Destino" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1400,15 +1443,15 @@ msgstr "Configuración del dispositivo" #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 msgid "Device is rebooting..." -msgstr "" +msgstr "El dispositivo se está reiniciando..." #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" -msgstr "" +msgstr "Dispositivo inalcanzable!" #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 msgid "Device unreachable! Still waiting for device..." -msgstr "" +msgstr "Dispositivo inalcanzable! Todavía esperando el dispositivo..." #: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 @@ -1417,7 +1460,7 @@ msgstr "Diagnósticos" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 msgid "Dial number" -msgstr "" +msgstr "Marcar el número" #: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 msgid "Directory" @@ -1426,27 +1469,27 @@ msgstr "Directorio" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 msgid "Disable" -msgstr "Desactivar" +msgstr "Deshabilitar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"Desactivar <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> " +"Deshabilitar <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> " "para esta interfaz." #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 msgid "Disable Encryption" -msgstr "" +msgstr "Deshabilitar encriptación" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" -msgstr "" +msgstr "Deshabilitar el sondeo de inactividad" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 msgid "Disable this network" -msgstr "" +msgstr "Deshabilitar esta red" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:43 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 @@ -1456,15 +1499,15 @@ msgstr "" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 msgid "Disabled" -msgstr "Desactivar" +msgstr "Deshabilitado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" -msgstr "" +msgstr "Deshabilitado (predeterminado)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" -msgstr "" +msgstr "Desasociarse en un reconocimiento bajo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 msgid "Discard upstream RFC1918 responses" @@ -1473,28 +1516,28 @@ msgstr "Descartar respuestas RFC1918 salientes" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 msgid "Disconnect" -msgstr "" +msgstr "Desconectar" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" -msgstr "" +msgstr "Intento de desconexión fallido" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 msgid "Dismiss" -msgstr "" +msgstr "Descartar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optimización de distancia" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distancia al miembro de la red mas lejana en metros." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversidad" @@ -1507,7 +1550,7 @@ msgid "" msgstr "" "Dnsmasq es un programa que combina un servidor <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr> y un reenviador <abbr title=\"Domain " -"Name System\">DNS</abbr> para cortafuegos <abbr title=\"Network Address " +"Name System\">DNS</abbr> para Firewalls <abbr title=\"Network Address " "Translation\">NAT</abbr>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 @@ -1517,20 +1560,20 @@ msgstr "No guardar respuestas negativas, por ejemplo dominios inexistentes" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 msgid "Do not forward requests that cannot be answered by public name servers" msgstr "" -"No retransmitir peticiones que no se puedan responder por servidores de " -"nombres públicos" +"No reenviar peticiones que no se puedan responder por servidores de nombres " +"públicos" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 msgid "Do not forward reverse lookups for local networks" -msgstr "No retransmitir búsquedas inversas para redes locales" +msgstr "No reenviar búsquedas inversas para redes locales" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 msgid "Do you really want to delete the following SSH key?" -msgstr "" +msgstr "¿Realmente quieres eliminar la siguiente clave SSH?" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" -msgstr "Dominio requerido" +msgstr "Requerir dominio" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 msgid "Domain whitelist" @@ -1538,7 +1581,7 @@ msgstr "Lista blanca de dominios" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 msgid "Don't Fragment" -msgstr "" +msgstr "No fragmentar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 msgid "" @@ -1550,7 +1593,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 msgid "Down" -msgstr "" +msgstr "Abajo" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" @@ -1558,11 +1601,11 @@ msgstr "Descargar copia de seguridad" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 msgid "Download mtdblock" -msgstr "" +msgstr "Descargar mtdblock" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 msgid "Downstream SNR offset" -msgstr "" +msgstr "Desplazamiento SNR en sentido descendente" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" @@ -1578,7 +1621,7 @@ msgstr "" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 msgid "Dual-Stack Lite (RFC6333)" -msgstr "" +msgstr "Dual-Stack Lite (RFC6333)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" @@ -1594,14 +1637,14 @@ msgid "" "Dynamically allocate DHCP addresses for clients. If disabled, only clients " "having static leases will be served." msgstr "" -"Reparte direcciones DHCP dinámicamente a los clientes. Si se desactiva sólo " -"se servirá a clientes con cesiones estáticas." +"Reparte direcciones DHCP dinámicamente a los clientes. Si se deshabilita, " +"sólo se servirá a clientes con direcciones estáticas." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 msgid "EA-bits length" -msgstr "" +msgstr "Longitud de bits EA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Método EAP" @@ -1617,6 +1660,8 @@ msgid "" "Edit the raw configuration data above to fix any error and hit \"Save\" to " "reload the page." msgstr "" +"Edite los datos de configuración sin procesar anteriores para corregir " +"cualquier error y presione \"Guardar\" para volver a cargar la página." #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 msgid "Edit this interface" @@ -1626,32 +1671,34 @@ msgstr "Editar esta interfaz" msgid "Edit this network" msgstr "Editar esta red" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergencia" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 msgid "Enable" -msgstr "Activar" +msgstr "Habilitar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 msgid "" "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> " "snooping" msgstr "" +"Habilitar <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> " +"Snooping" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" -msgstr "Activar <abbr title=\"Spanning Tree Protocol\">STP</abbr>" +msgstr "Habilitar <abbr title=\"Spanning Tree Protocol\">STP</abbr>" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 msgid "Enable HE.net dynamic endpoint update" -msgstr "Activar actualización dinámica de punto final HE.net" +msgstr "Habilitar actualización dinámica de punto final HE.net" #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 msgid "Enable IPv6 negotiation" -msgstr "" +msgstr "Habilitar negociación IPv6" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 @@ -1659,87 +1706,90 @@ msgstr "" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Activar negociación IPv6 en el enlace PPP" +msgstr "Habilitar negociación IPv6 en el enlace PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" -msgstr "Activar paso de tramas jumbo" +msgstr "Habilitar paso de tramas jumbo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" -msgstr "Activar cliente NTP" +msgstr "Habilitar cliente NTP" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 msgid "Enable Single DES" -msgstr "" +msgstr "Habilitar solo DES" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 msgid "Enable TFTP server" -msgstr "Activar servidor TFTP" +msgstr "Habilitar servidor TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" -msgstr "Activar funcionalidad VLAN" +msgstr "Habilitar funcionalidad VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" +msgstr "Habilitar botón WPS, requiere WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" +msgstr "Habilitar las medidas correctivas de reinstalación de claves (KRACK)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" -msgstr "Activar aprendizaje y envejecimiento" +msgstr "Habilitar aprendizaje y envejecimiento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" -msgstr "" +msgstr "Habilitar la duplicación de paquetes entrantes" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" -msgstr "" +msgstr "Habilitar la duplicación de paquetes salientes" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" +"Habilita el indicador DF (No fragmentar) de los paquetes de encapsulación." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 msgid "Enable this mount" -msgstr "Active este punto de montaje" +msgstr "Habilitar este punto de montaje" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 msgid "Enable this network" -msgstr "" +msgstr "Habilitar esta red" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 msgid "Enable this swap" -msgstr "Activar este swap" +msgstr "Habilitar este swap" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:36 msgid "Enable/Disable" -msgstr "Activar/Desactivar" +msgstr "Habilitar/Deshabilitar" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:40 msgid "Enabled" -msgstr "Activado" +msgstr "Habilitado" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 msgid "Enables IGMP snooping on this bridge" -msgstr "" +msgstr "Habilita el protocolo IGMP Snooping en este puente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" msgstr "" +"Habilita la itinerancia rápida entre los puntos de acceso que pertenecen al " +"mismo dominio de movilidad" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Activa el protocol STP en este puente" +msgstr "Habilita el protocolo STP en este puente" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 @@ -1748,134 +1798,134 @@ msgstr "Modo de encapsulado" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Encriptación" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 msgid "Endpoint Host" -msgstr "" +msgstr "Punto final de Host" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 msgid "Endpoint Port" -msgstr "" +msgstr "Punto final del puerto" #: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 msgid "Enter custom value" -msgstr "" +msgstr "Ingrese valor personalizado" #: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 msgid "Enter custom values" -msgstr "" +msgstr "Ingrese valores personalizados" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Borrando..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Error" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" -msgstr "" +msgstr "Segundos errados (ES)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Adaptador ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch ethernet" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" -msgstr "" +msgstr "Excluir interfaces" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 msgid "Expand hosts" -msgstr "Expandir nombre de máquina" +msgstr "Expandir nombre del host" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 msgid "Expecting %s" -msgstr "" +msgstr "Esperando %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Expira" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy msgid "" "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." msgstr "" -"Tiempo de finalización de direcciones cedidas (mínimo dos minutos: <code>2m</" -"code>)." +"Tiempo de expiración de direcciones dadas, con mínimo de dos minutos " +"(<code>2m</code>)." #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 msgid "External" -msgstr "" +msgstr "Externo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" -msgstr "" +msgstr "Lista de soporte de clave externa R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" -msgstr "" +msgstr "Lista de soporte de clave externa R1" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor externo de registro del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Puerto del servidor externo de registro del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" -msgstr "" +msgstr "Protocolo de servidor de registro de sistema externo" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 msgid "Extra SSH command options" -msgstr "" +msgstr "Opciones de comando SSH adicionales" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" -msgstr "" +msgstr "FT sobre DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" -msgstr "" +msgstr "FT sobre The Air" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" -msgstr "" +msgstr "Protocolo FT" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" +"Error al confirmar aplicar dentro de %ds, a la espera de la reversión..." #: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 msgid "File" -msgstr "Fichero" +msgstr "Archivo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 msgid "Filename of the boot image advertised to clients" -msgstr "Nombre del fichero de imagen de arranque mostrado a los clientes" +msgstr "Nombre del archivo de imagen de arranque mostrado a los clientes" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 msgid "Filesystem" -msgstr "Sistema de ficheros" +msgstr "Sistema de archivos" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" @@ -1887,13 +1937,16 @@ msgstr "Filtro inútil" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 msgid "Finalizing failed" -msgstr "" +msgstr "La finalización falló" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "" "Find all currently attached filesystems and swap and replace configuration " "with defaults based on what was detected" msgstr "" +"Encuentre todos los sistemas de archivos actualmente conectados e " +"intercambie y reemplace la configuración con los valores predeterminados " +"según lo que se detectó" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 msgid "Find and join network" @@ -1905,23 +1958,23 @@ msgstr "Terminar" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 msgid "Firewall" -msgstr "Cortafuegos" +msgstr "Firewall" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 msgid "Firewall Mark" -msgstr "" +msgstr "Marca de Firewall" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 msgid "Firewall Settings" -msgstr "Configuración del cortafuegos" +msgstr "Configuración del Firewall" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 msgid "Firewall Status" -msgstr "Estado del cortafuegos" +msgstr "Estado del Firewall" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 msgid "Firmware File" -msgstr "" +msgstr "Archivo de firmware" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 msgid "Firmware Version" @@ -1941,13 +1994,13 @@ msgstr "Grabar imagen..." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 msgid "Flash new firmware image" -msgstr "Grabar imágenes del firmware" +msgstr "Grabar nueva imagen de firmware" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 msgid "Flash operations" msgstr "Operaciones de grabado" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Grabando..." @@ -1955,17 +2008,17 @@ msgstr "Grabando..." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 msgid "Flashmemory write access (%s)" -msgstr "" +msgstr "Acceso de escritura de memoria flash (%s)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 msgid "Force" msgstr "Forzar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" -msgstr "" +msgstr "Forzar modo 40MHz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Forzar CCMP (AES)" @@ -1973,59 +2026,59 @@ msgstr "Forzar CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forzar DHCP en esta red aunque se detecte otro servidor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Forzar TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Forzar TKIP y CCMP (AES)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 msgid "Force link" -msgstr "" +msgstr "Forzar enlace" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 msgid "Force upgrade" -msgstr "" +msgstr "Forzar actualización" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 msgid "Force use of NAT-T" -msgstr "" +msgstr "Forzar uso de NAT-T" #: modules/luci-base/luasrc/view/csrftoken.htm:8 msgid "Form token mismatch" -msgstr "" +msgstr "No coincide el token del formulario" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 msgid "Forward DHCP traffic" -msgstr "Retransmitir tráfico DHCP" +msgstr "Reenviar tráfico DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" -msgstr "" +msgstr "Segundos de corrección de errores de reenvío (FECS)" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 msgid "Forward broadcast traffic" -msgstr "Retransmitir tráfico de propagación" +msgstr "Reenviar tráfico de difusión" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" -msgstr "" +msgstr "Reenviar tráfico de pares de malla" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "Forwarding mode" -msgstr "Modo de retransmisión" +msgstr "Modo de reenvío" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Umbral de fragmentación" # It should be "Frame Bursting" at once! -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" -msgstr "Frame Bursting" +msgstr "Estallido del marco" #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 @@ -2037,10 +2090,12 @@ msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" "wireguard.com\">wireguard.com</a>." msgstr "" +"Más información sobre las interfaces y los pares de WireGuard en <a href=" +"\"http://wireguard.com\">wireguard.com</a>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2049,14 +2104,14 @@ msgstr "GHz" msgid "GPRS only" msgstr "Sólo GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" -msgstr "Pasarela" +msgstr "Puerta de enlace" #: modules/luci-base/luasrc/model/network.lua:29 msgid "Gateway address is invalid" -msgstr "" +msgstr "La dirección de la puerta de enlace es inválida" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" @@ -2073,17 +2128,17 @@ msgstr "Configuración general" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Configuración general" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" -msgstr "" +msgstr "Generar Config" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" -msgstr "" +msgstr "Generar PMK localmente" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 msgid "Generate archive" @@ -2091,7 +2146,7 @@ msgstr "Generar archivo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 msgid "Generic 802.11%s Wireless Controller" -msgstr "Controlador inalámbrico 802.11%s genérico" +msgstr "Controlador WiFi 802.11%s genérico" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 msgid "Given password confirmation did not match, password not changed!" @@ -2101,16 +2156,16 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 msgid "Global Settings" -msgstr "" +msgstr "Configuración global" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 msgid "Global network options" -msgstr "" +msgstr "Opciones globales de red" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ir a configuración de contraseña..." @@ -2121,11 +2176,11 @@ msgstr "Ir a la página principal de configuración" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 msgid "Group Password" -msgstr "" +msgstr "Grupo de contraseña" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 msgid "Guest" -msgstr "" +msgstr "Invitado" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 msgid "HE.net password" @@ -2133,98 +2188,96 @@ msgstr "Contraseña HE.net" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 msgid "HE.net username" -msgstr "" +msgstr "Nombre de usuario HE.net" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" -msgstr "" +msgstr "Modo HT (802.11n)" #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" -msgstr "" +msgstr "Errores de código de error de encabezado (HEC)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 msgid "Heartbeat intervall (%s)" -msgstr "" +msgstr "Intervalo de ritmo (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 msgid "" "Here you can configure the basic aspects of your device like its hostname or " "the timezone." msgstr "" -"Aspectos básicos de su dispositivo como la zona horaria o nombre de máquina." +"Aquí puede configurar los aspectos básicos de su dispositivo, como su nombre " +"de host o la zona horaria." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Ocultar <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 msgid "Hide empty chains" -msgstr "" +msgstr "Ocultar cadenas vacias" #: modules/luci-base/luasrc/view/lease_status.htm:86 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" -msgstr "" +msgstr "Host" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 msgid "Host entries" -msgstr "Entradas de máquina" +msgstr "Entradas de hosts" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 msgid "Host expiry timeout" -msgstr "Espera para caducidad de máquinas" +msgstr "Tiempo de espera de expiración del host" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network" -msgstr "" -"Dirección <abbr title=\"Internet Protocol Address\">IP</abbr> de máquina o " -"red" +msgstr "Dirección <abbr title=\"Internet Protocol Address\">IP</abbr> o red" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 msgid "Host-Uniq tag content" -msgstr "" +msgstr "Contenido de la etiqueta Host-Uniq" #: modules/luci-base/luasrc/view/lease_status.htm:71 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" -msgstr "Nombre de máquina" +msgstr "Nombre del host" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 msgid "Hostname to send when requesting DHCP" -msgstr "Nombre de máquina a enviar cuando se solicite DHCP" +msgstr "Nombre del host a enviar cuando se solicite DHCP" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 msgid "Hostnames" -msgstr "Nombres de máquina" +msgstr "Nombres de hosts" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 msgid "Hybrid" -msgstr "" +msgstr "Híbrido" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 msgid "IKE DH Group" -msgstr "" +msgstr "Grupo IKE DH" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 msgid "IP Addresses" -msgstr "" +msgstr "Direcciones IP" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 msgid "IP Protocol" -msgstr "" +msgstr "Protocolo IP" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 msgid "IP address" @@ -2232,11 +2285,11 @@ msgstr "Dirección IP" #: modules/luci-base/luasrc/model/network.lua:28 msgid "IP address in invalid" -msgstr "" +msgstr "Dirección IP inválida" #: modules/luci-base/luasrc/model/network.lua:31 msgid "IP address is missing" -msgstr "" +msgstr "Falta la dirección IP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 @@ -2256,11 +2309,11 @@ msgstr "IPv4" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 msgid "IPv4 Firewall" -msgstr "Cortafuegos IPv4" +msgstr "Firewall IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" -msgstr "" +msgstr "Conexión IPv4" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 @@ -2269,15 +2322,15 @@ msgstr "Dirección IPv4" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 msgid "IPv4 assignment length" -msgstr "" +msgstr "Longitud de asignación de IPv4" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 msgid "IPv4 broadcast" -msgstr "Propagación IPv4" +msgstr "Difusión IPv4" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 msgid "IPv4 gateway" -msgstr "Gateway IPv4" +msgstr "Puerta de enlace IPv4" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 msgid "IPv4 netmask" @@ -2285,11 +2338,11 @@ msgstr "Máscara de red IPv4" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 msgid "IPv4 network in address/netmask notation" -msgstr "" +msgstr "Red IPv4 en notación de dirección / máscara de red" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 msgid "IPv4 prefix" -msgstr "" +msgstr "Prefijo IPv4" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 @@ -2298,7 +2351,7 @@ msgstr "Longitud de prefijo IPv4" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 msgid "IPv4+IPv6" -msgstr "" +msgstr "IPv4+IPv6" #: modules/luci-base/luasrc/view/lease_status.htm:72 msgid "IPv4-Address" @@ -2306,7 +2359,7 @@ msgstr "Dirección IPv4" #: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" +msgstr "IPv4 en IPv4 (RFC2003)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 @@ -2336,23 +2389,23 @@ msgstr "IPv6" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 msgid "IPv6 Firewall" -msgstr "Cortafuegos IPv6" +msgstr "Firewall IPv6" #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 msgid "IPv6 Neighbours" -msgstr "" +msgstr "Vecinos de IPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 msgid "IPv6 Settings" -msgstr "" +msgstr "Configuraciones de IPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 msgid "IPv6 ULA-Prefix" -msgstr "" +msgstr "IPv6 ULA-Prefix" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" -msgstr "" +msgstr "Conexión IPv6" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 msgid "IPv6 address" @@ -2361,20 +2414,20 @@ msgstr "Dirección IPv6" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 msgid "IPv6 assignment hint" -msgstr "" +msgstr "Sugerencia de asignación de IPv6" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 msgid "IPv6 assignment length" -msgstr "" +msgstr "Longitud de asignación de IPv6" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 msgid "IPv6 gateway" -msgstr "Gateway IPv6" +msgstr "Puerta de enlace IPv6" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 msgid "IPv6 network in address/netmask notation" -msgstr "" +msgstr "Red IPv6 en notación de dirección / máscara de red" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 @@ -2389,11 +2442,11 @@ msgstr "Longitud de prefijo IPv6" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 msgid "IPv6 routed prefix" -msgstr "" +msgstr "Prefijo IPv6 enrutado" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 msgid "IPv6 suffix" -msgstr "" +msgstr "Sufijo IPv6" #: modules/luci-base/luasrc/view/lease_status.htm:87 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 @@ -2403,7 +2456,7 @@ msgstr "Dirección IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 msgid "IPv6-PD" -msgstr "" +msgstr "IPv6-PD" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 msgid "IPv6-in-IPv4 (RFC4213)" @@ -2417,17 +2470,17 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identidad" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 msgid "If checked, 1DES is enabled" -msgstr "" +msgstr "Si está comprobado, 1DES está habilitado" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 msgid "If checked, encryption is disabled" -msgstr "" +msgstr "Si está marcado, el encriptado estará deshabilitado" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 @@ -2478,7 +2531,7 @@ msgstr "Si está desmarcado no se configurará una ruta por defecto" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 msgid "If unchecked, the advertised DNS server addresses are ignored" msgstr "" -"Si está desmarcado las direcciones de servidor DNS anunciadas se ignorarán" +"Si está desmarcado las direcciones de servidores DNS ingresadas se ignorarán" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 msgid "" @@ -2488,13 +2541,12 @@ msgid "" "slow process as the swap-device cannot be accessed with the high datarates " "of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -"Si su dispositivo no tiene memoria <abbr title=\"Random Access Memory\">RAM</" -"abbr> suficiente, los datos no utilizados pueden ser guardados temporalmente " -"en un dispositivo de intercambio (swap-device) liberando el espacio que " -"ocupan. Tenga en cuenta que el intercambio es un proceso lento porque los " -"dispositivos de intercambio no pueden transferir volúmenes de información a " -"alta velocidad tal y como hace la memoria <abbr title=\"Random Access Memory" -"\">RAM</abbr>." +"Si su dispositivo no tiene <abbr title=\"Random Access Memory\">RAM</abbr> " +"suficiente, los datos no utilizados pueden ser guardados temporalmente en un " +"dispositivo de Swap (swap-device) liberando el espacio que ocupan. Tenga en " +"cuenta que el Swap es un proceso lento porque este método no puede " +"transferir volúmenes de información a alta velocidad tal y como hace la " +"<abbr title=\"Random Access Memory\">RAM</abbr>." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 msgid "Ignore <code>/etc/hosts</code>" @@ -2502,11 +2554,11 @@ msgstr "Ignorar <code>/etc/hosts</code>" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 msgid "Ignore interface" -msgstr "Ignorar interfaz" +msgstr "Deshabilitar DHCP" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 msgid "Ignore resolve file" -msgstr "Ignorar el fichero resolv" +msgstr "Ignorar el archivo resolve" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 msgid "Image" @@ -2521,6 +2573,9 @@ msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." msgstr "" +"Para evitar el acceso no autorizado al sistema, su solicitud ha sido " +"bloqueada. Haga clic en \"Continuar» a continuación para volver a la página " +"anterior." #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 @@ -2533,15 +2588,19 @@ msgstr "Espera de inactividad" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" -msgstr "Entrantes:" +msgstr "Entrante:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Información" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "Información" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" -msgstr "" +msgstr "Fallo de inicialización" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 msgid "Initscript" @@ -2553,13 +2612,13 @@ msgstr "Scripts de inicio" #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" +msgstr "Instale \"iputils-traceroute6\" para Traceroute IPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 msgid "Install package %q" msgstr "Instalar el paquete %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Instalar extensiones de protocolo..." @@ -2575,11 +2634,11 @@ msgstr "Interfaz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" +msgstr "La interfaz %q del dispositivo migra automáticamente de %q a %q." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" -msgstr "Configuración del interfaz" +msgstr "Configuración de la interfaz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 msgid "Interface Overview" @@ -2589,14 +2648,14 @@ msgstr "Resumen de interfaces" msgid "Interface is reconnecting..." msgstr "Reconectando interfaz..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" -msgstr "" +msgstr "Nombre de interfaz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." -msgstr "El interfaz no existe o no está aún conectado." +msgstr "La interfaz no existe o no está aún conectado." #: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 @@ -2606,36 +2665,34 @@ msgstr "Interfaces" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 msgid "Internal" -msgstr "" +msgstr "Interno" #: modules/luci-base/luasrc/view/error500.htm:8 msgid "Internal Server Error" msgstr "Error interno del servidor" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" -msgstr "Valor ingresado inválido" +msgstr "Inválido" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "¡ID VLAN no válido! Sólo se permiten IDs entre %d y %d." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "¡ID VLAN no válido! Sólo se permiten IDs únicos" #: modules/luci-base/luasrc/view/sysauth.htm:12 msgid "Invalid username and/or password! Please try again." -msgstr "" -"¡Nombre de usuario o contraseña no válidos!. Pruebe de nuevo, por favor." +msgstr "¡Nombre de usuario y/o contraseña no válido/s!. Por favor reintente." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" -msgstr "" +msgstr "Aislar clientes" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy msgid "" "It appears that you are trying to flash an image that does not fit into the " "flash memory, please verify the image file!" @@ -2644,24 +2701,23 @@ msgstr "" "memoria flash de su equipo. ¡Por favor, verifique el archivo!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "¡Se necesita JavaScript!" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 msgid "Join Network" -msgstr "Unirse a Red" +msgstr "Conectar" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 msgid "Join Network: Wireless Scan" -msgstr "Unirse a una red: Exploración inalámbrica" +msgstr "Conectarse a una red: Búsqueda de redes WiFi" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 msgid "Joining Network: %q" -msgstr "" +msgstr "Conectarse a: %q" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 msgid "Keep settings" @@ -2676,18 +2732,22 @@ msgstr "Registro del Kernel" msgid "Kernel Version" msgstr "Versión del Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Clave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Clave #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "KiB" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Matar" @@ -2727,7 +2787,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Idioma" @@ -2735,72 +2795,74 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Idioma y Estilo" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" -msgstr "" +msgstr "Latencia" #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 msgid "Leaf" -msgstr "" +msgstr "Hoja" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" -msgstr "" +msgstr "Tiempo de finalización" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 msgid "Leasefile" -msgstr "Archivo de cesiones" +msgstr "Archivo de conexiones" #: modules/luci-base/luasrc/view/lease_status.htm:74 #: modules/luci-base/luasrc/view/lease_status.htm:89 msgid "Leasetime remaining" -msgstr "Tiempo de cesión restante" +msgstr "Tiempo de conexión restante" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 msgid "Leave empty to autodetect" -msgstr "Dejar vacío para autodetectar" +msgstr "Deje vacío para autodetectar" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 msgid "Leave empty to use the current WAN address" -msgstr "Dejar vacío para usar la dirección WAN actual" +msgstr "Deje vacío para usar la dirección WAN actual" #: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 msgid "Legend:" -msgstr "Leyenda:" +msgstr "Registro de cambios:" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 msgid "Limit" -msgstr "Límite" +msgstr "IP máxima" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" +"Limita el servicio de DNS a las subredes de interfaces en las que estamos " +"sirviendo DNS." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 msgid "Limit listening to these interfaces, and loopback." -msgstr "" +msgstr "Limita la escucha de estas interfaces, y el bucle de retorno." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" -msgstr "" +msgstr "Atenuación de línea (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" -msgstr "" +msgstr "Modo de línea" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" -msgstr "" +msgstr "Estado de línea" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" -msgstr "" +msgstr "Tiempo de actividad de línea" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 msgid "Link On" @@ -2814,7 +2876,7 @@ msgstr "" "Lista de servidores <abbr title=\"Domain Name System\">DNS</abbr> a los que " "enviar solicitudes" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2822,8 +2884,13 @@ msgid "" "from the R0KH that the STA used during the Initial Mobility Domain " "Association." msgstr "" +"Lista de R0KHs en el mismo dominio de movilidad. <br />Formato: dirección " +"MAC, identificador NAS, clave de 128 bits como cadena hexadecimal. <br /" +">Esta lista se usa para asignar R0KH-ID (Identificador de NAS) a una " +"dirección MAC de destino cuando se solicita la clave PMK-R1 del R0KH que el " +"STA usó durante la Asociación de dominio de movilidad inicial." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2831,10 +2898,16 @@ msgid "" "R0KH. This is also the list of authorized R1KHs in the MD that can request " "PMK-R1 keys." msgstr "" +"Lista de R1KHs en el mismo dominio de movilidad. <br />Formato: dirección " +"MAC, R1KH-ID como 6 octetos con dos puntos, clave de 128 bits como cadena " +"hexadecimal. <br />Esta lista se utiliza para asignar R1KH-ID a una " +"dirección MAC de destino cuando se envía la clave PMK-R1 desde R0KH. Esta es " +"también la lista de R1KH autorizados en el MD que pueden solicitar claves " +"PMK-R1." #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 msgid "List of SSH key files for auth" -msgstr "" +msgstr "Lista de archivos de claves SSH para autenticación" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 msgid "List of domains to allow RFC1918 responses for" @@ -2842,15 +2915,15 @@ msgstr "Lista de dominios a los que se permiten respuestas RFC1918" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 msgid "List of hosts that supply bogus NX domain results" -msgstr "Lista de máquinas que proporcionan resultados de dominio NX falsos" +msgstr "Lista de dispositivos que proporcionan resultados de dominio NX falsos" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 msgid "Listen Interfaces" -msgstr "" +msgstr "Interfaces de escucha" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 msgid "Listen Port" -msgstr "" +msgstr "Puerto de escucha" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" @@ -2861,14 +2934,13 @@ msgid "Listening port for inbound DNS queries" msgstr "Puerto de escucha para consultas DNS entrantes" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Carga" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 msgid "Load Average" -msgstr "Carga Media" +msgstr "Carga media" #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 @@ -2878,15 +2950,15 @@ msgstr "Cargando" #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 msgid "Loading SSH keys…" -msgstr "" +msgstr "Cargando claves SSH..." #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" -msgstr "" +msgstr "Dirección IP local inválida" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 msgid "Local IP address to assign" -msgstr "" +msgstr "Dirección IP local para asignar" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 @@ -2903,14 +2975,14 @@ msgstr "Dirección local IPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 msgid "Local Service Only" -msgstr "" +msgstr "Solo servicio local" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:77 msgid "Local Startup" msgstr "Arranque local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora local" @@ -2919,19 +2991,18 @@ msgid "Local domain" msgstr "Dominio local" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy msgid "" "Local domain specification. Names matching this domain are never forwarded " "and are resolved from DHCP or hosts files only" msgstr "" -"Especificación de dominio local. Los nombres que coincidan con este dominio " -"nunca se retransmiten y se resuelven desde DHCP o ficheros de máquina locales" +"Especificación de dominio local. Los nombres que coinciden con este dominio " +"nunca se reenvían y se resuelven solo desde archivos DHCP o hosts" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 msgid "Local domain suffix appended to DHCP names and hosts file entries" msgstr "" "Sufijo del dominio local que se añade a los nombres DHCP y a las entradas " -"del fichero de máquinas" +"del archivo de dispositivos" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 msgid "Local server" @@ -2942,8 +3013,8 @@ msgid "" "Localise hostname depending on the requesting subnet if multiple IPs are " "available" msgstr "" -"Localizar nombre de máquina dependiendo de que la subred peticionaria si hay " -"disponibles múltiples IPs" +"Localice el nombre del host en función de la subred que solicita si hay " +"varias IP disponibles" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 msgid "Localise queries" @@ -2951,9 +3022,9 @@ msgstr "Localizar consultas" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 msgid "Locked to channel %s used by: %s" -msgstr "" +msgstr "Bloqueado en el canal %s utilizado por: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Nivel de registro" @@ -2973,50 +3044,50 @@ msgstr "Iniciar sesión" msgid "Logout" msgstr "Cerrar sesión" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" -msgstr "" +msgstr "Pérdida de segundos de señal (LOSS)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 msgid "Lowest leased address as offset from the network address." -msgstr "Dirección cedida más baja como diferencia de la dirección de red." +msgstr "Dirección dada más baja como diferencia de la dirección de red." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 msgid "MAC" -msgstr "" +msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Dirección MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtro por dirección MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtro por dirección MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Lista de direcciones MAC" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 msgid "MAP / LW4over6" -msgstr "" +msgstr "MAP / LW4over6" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 msgid "MAP rule is invalid" -msgstr "" +msgstr "La regla MAP no es válida" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 msgid "MB/s" @@ -3024,7 +3095,7 @@ msgstr "MB/s" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 msgid "MD5" -msgstr "" +msgstr "MD5" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" @@ -3042,6 +3113,8 @@ msgid "" "Make sure to clone the root filesystem using something like the commands " "below:" msgstr "" +"Asegúrate de clonar el sistema de archivos raíz usando algo como los " +"siguientes comandos:" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:65 @@ -3050,19 +3123,19 @@ msgstr "" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 msgid "Manual" -msgstr "" +msgstr "Manual" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" +msgstr "Max. velocidad de datos alcanzable (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" -msgstr "" +msgstr "Máximo permitido de intervalo de escucha" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 msgid "Maximum allowed number of active DHCP leases" -msgstr "Número máximo de cesiones DHCP activas" +msgstr "Número máximo de clientes DHCP activos" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 msgid "Maximum allowed number of concurrent DNS queries" @@ -3082,31 +3155,37 @@ msgid "" "Maximum length of the name is 15 characters including the automatic protocol/" "bridge prefix (br-, 6in4-, pppoe- etc.)" msgstr "" +"La longitud máxima del nombre es de 15 caracteres, incluido el prefijo de " +"protocolo/puente automático (br-, 6in4-, pppoe-, etc.)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 msgid "Maximum number of leased addresses." -msgstr "Máximas cesiones activas." +msgstr "Máximo de conexiones activas." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "Medio" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memoria" #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 msgid "Memory usage (%)" -msgstr "Uso de memoria (%)" +msgstr "Uso de RAM (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" -msgstr "" +msgstr "ID de malla" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 @@ -3116,38 +3195,38 @@ msgstr "" msgid "Metric" msgstr "Métrica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" -msgstr "" +msgstr "Puerto monitor de espejo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" -msgstr "" +msgstr "Puerto fuente de espejo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 msgid "Missing protocol extension for proto %q" msgstr "Extensión de protocolo faltante para %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" -msgstr "" +msgstr "Dominio de movilidad" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Modo" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 msgid "Model" -msgstr "" +msgstr "Modelo" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 msgid "Modem default" -msgstr "" +msgstr "Modem predeterminado" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 @@ -3158,19 +3237,23 @@ msgstr "Dispositivo de módem" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 msgid "Modem information query failed" -msgstr "" +msgstr "Error en la consulta de información del módem" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:72 msgid "Modem init timeout" msgstr "Espera de inicialización del modem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "Más caracteres" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Entrada de montaje" @@ -3180,7 +3263,7 @@ msgstr "Entrada de montaje" msgid "Mount Point" msgstr "Punto de montaje" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3192,7 +3275,7 @@ msgstr "Puntos de montaje - Entrada de montaje" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 msgid "Mount Points - Swap Entry" -msgstr "Puntos de montaje - Entrada de intercambio" +msgstr "Puntos de montaje - Entrada de Swap" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "" @@ -3204,7 +3287,7 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 msgid "Mount filesystems not specifically configured" -msgstr "" +msgstr "Sistemas de archivos de montaje no configurados específicamente" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" @@ -3216,7 +3299,7 @@ msgstr "Punto de montaje" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 msgid "Mount swap not specifically configured" -msgstr "" +msgstr "Montaje de Swap no configurado específicamente" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 msgid "Mounted file systems" @@ -3230,31 +3313,31 @@ msgstr "Bajar" msgid "Move up" msgstr "Subir" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 msgid "NAT-T Mode" -msgstr "" +msgstr "Modo NAT-T" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 msgid "NAT64 Prefix" -msgstr "" +msgstr "Prefijo NAT64" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 msgid "NCM" -msgstr "" +msgstr "NCM" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 msgid "NDP-Proxy" -msgstr "" +msgstr "NDP-Proxy" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 msgid "NT Domain" -msgstr "" +msgstr "Dominio NT" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Servidores NTP a consultar" @@ -3272,18 +3355,17 @@ msgstr "Nombre de la nueva interfaz" msgid "Name of the new network" msgstr "Nombre de la nueva red" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navegación" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Máscara de red" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3301,13 +3383,13 @@ msgstr "Imagen de arranque en red" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 msgid "Network device activity (%s)" -msgstr "" +msgstr "Actividad del dispositivo de red (%s)" #: modules/luci-base/luasrc/model/network.lua:33 msgid "Network device is not present" -msgstr "" +msgstr "El dispositivo de red no está presente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Red sin interfaces." @@ -3317,7 +3399,7 @@ msgstr "Siguiente »" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 msgid "No" -msgstr "" +msgstr "No" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" @@ -3325,21 +3407,21 @@ msgstr "No se ha configurado un servidor DHCP para esta interfaz" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 msgid "No NAT-T" -msgstr "" +msgstr "Sin NAT-T" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:75 msgid "No files found" -msgstr "No se han encontrado ficheros" +msgstr "No se han encontrado archivos" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "No hay información disponible" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 msgid "No matching prefix delegation" -msgstr "" +msgstr "No hay delegación de prefijo coincidente" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 msgid "No negative cache" @@ -3354,24 +3436,23 @@ msgid "No network name specified" msgstr "No se ha especificado un nombre de red" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "¡Sin contraseña!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 msgid "No public keys present yet." -msgstr "" +msgstr "No hay claves públicas presentes todavía." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 msgid "No rules in this chain." -msgstr "No hay reglas en esta cadena" +msgstr "No hay reglas en esta cadena." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 msgid "No scan results available yet..." -msgstr "" +msgstr "Aún no hay resultados de escaneo disponibles ..." #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 msgid "No zone assigned" @@ -3385,28 +3466,28 @@ msgstr "Sin zona asignada" msgid "Noise" msgstr "Ruido" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" -msgstr "" +msgstr "Margen de ruido (SNR)" #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Ruido:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" +msgstr "Errores de CRC no preventivos (CRC P)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 msgid "Non-wildcard" -msgstr "" +msgstr "Sin comodín" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 msgid "None" msgstr "Ninguno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3419,16 +3500,20 @@ msgstr "No encontrado" msgid "Not associated" msgstr "No asociado" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "No conectado" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "No se inició en el arranque" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" -msgstr "" +msgstr "Nota: longitud del nombre de la interfaz" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Aviso" @@ -3439,18 +3524,20 @@ msgstr "NSLookup" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" +"Número de entradas de DNS en caché (el máximo es 10000, 0 es sin " +"almacenamiento en caché)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" -msgstr "" +msgstr "Número de hilos paralelos utilizados para la compresión" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" -msgstr "" +msgstr "Contraseña de grupo confusa" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 msgid "Obfuscated Password" -msgstr "" +msgstr "Contraseña confusa" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 @@ -3458,7 +3545,7 @@ msgstr "" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 msgid "Obtain IPv6-Address" -msgstr "" +msgstr "Obtener dirección IPv6" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 msgid "Off-State Delay" @@ -3485,16 +3572,16 @@ msgstr "Retraso de activación" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" -msgstr "¡Debe especificar al menos un nombre de máquina o dirección mac!" +msgstr "¡Debe especificar al menos un nombre de host o dirección MAC!" #: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 msgid "One or more fields contain invalid values!" -msgstr "¡Valores no válidos!" +msgstr "¡Uno o más campos contienen valores inválidos!" #: modules/luci-base/luasrc/view/cbi/map.htm:31 msgid "One or more invalid/required values on tab" -msgstr "" +msgstr "Uno o más valores inválidos / requeridos en la pestaña" #: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 @@ -3507,11 +3594,11 @@ msgstr "Abrir lista..." #: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" +msgstr "OpenConnect (CISCO AnyConnect)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 msgid "Operating frequency" -msgstr "" +msgstr "Frecuencia de operación" #: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 msgid "Option changed" @@ -3519,18 +3606,20 @@ msgstr "Opción cambiada" #: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 msgid "Option removed" -msgstr "Opción eliminada" +msgstr "Opción removida" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" -msgstr "" +msgstr "Opcional" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 msgid "" "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "starting with <code>0x</code>." msgstr "" +"Opcional. Marca de 32 bits para los paquetes cifrados salientes. Ingrese el " +"valor en hexadecimal, comenzando con <code>0x</code>." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 msgid "" @@ -3539,44 +3628,55 @@ msgid "" "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " "for the interface." msgstr "" +"Opcional. Valores permitidos: 'eui64', 'random', valor fijo como '::1' o " +"'::1:2'. Cuando se recibe un prefijo IPv6 (como 'a:b:c:d::') desde un " +"servidor delegante, use el sufijo (como '::1') para formar la dirección IPv6 " +"('a:b:c:d::1') para la interfaz." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 msgid "" "Optional. Base64-encoded preshared key. Adds in an additional layer of " "symmetric-key cryptography for post-quantum resistance." msgstr "" +"Opcional. Clave precompartida codificada en base64. Agrega una capa " +"adicional de criptografía de clave simétrica para la resistencia post-" +"cuántica." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" +msgstr "Opcional. Crear rutas para IPs permitidas para este par." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 msgid "Optional. Description of peer." -msgstr "" +msgstr "Opcional. Descripción del par." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 msgid "" "Optional. Host of peer. Names are resolved prior to bringing up the " "interface." msgstr "" +"Opcional. Host de pares. Los nombres se resuelven antes de abrir la interfaz." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" +msgstr "Opcional. Unidad máxima de transmisión de la interfaz del túnel." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 msgid "Optional. Port of peer." -msgstr "" +msgstr "Opcional. Puerto de pares." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 msgid "" "Optional. Seconds between keep alive messages. Default is 0 (disabled). " "Recommended value if this device is behind a NAT is 25." msgstr "" +"Opcional. Segundos entre mantener mensajes vivos. El valor predeterminado es " +"0 (deshabilitado). El valor recomendado si este dispositivo está detrás de " +"un NAT es 25." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" +msgstr "Opcional. Puerto UDP utilizado para paquetes salientes y entrantes." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 @@ -3597,14 +3697,14 @@ msgstr "Saliente:" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 msgid "Output Interface" -msgstr "" +msgstr "Interfaz de salida" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 msgid "Override MAC address" -msgstr "Ignorar dirección MAC" +msgstr "Reemplazar dirección MAC" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 @@ -3618,35 +3718,35 @@ msgstr "Ignorar dirección MAC" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 msgid "Override MTU" -msgstr "Ignorar MTU" +msgstr "Reemplazar MTU" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 msgid "Override TOS" -msgstr "" +msgstr "Reemplazar TOS" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 msgid "Override TTL" -msgstr "" +msgstr "Reemplazar TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" -msgstr "" +msgstr "Reemplaza el nombre de interfaz predeterminado" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 msgid "Override the gateway in DHCP responses" -msgstr "Ignorar la pasarela en las respuestas DHCP" +msgstr "Reemplazar puerta de enlace en las respuestas DHCP" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 msgid "" "Override the netmask sent to clients. Normally it is calculated from the " "subnet that is served." msgstr "" -"Ignorar la máscara de red enviada a los clientes. Normalmente se calcula " -"desde la subred desde la que se sirve." +"Anula la máscara de red enviada a los clientes. Normalmente se calcula a " +"partir de la subred que se sirve." #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 msgid "Override the table used for internal routes" -msgstr "Ignorar la tabla usada para rutas internas" +msgstr "Anular la tabla utilizada para rutas internas" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 msgid "Overview" @@ -3690,11 +3790,11 @@ msgstr "PIN" #: modules/luci-base/luasrc/model/network.lua:39 msgid "PIN code rejected" -msgstr "" +msgstr "Código PIN rechazado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" -msgstr "" +msgstr "PMK R1 Push" #: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 msgid "PPP" @@ -3714,7 +3814,7 @@ msgstr "PPPoE" #: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 msgid "PPPoSSH" -msgstr "" +msgstr "PPPoSSH" #: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 msgid "PPtP" @@ -3722,15 +3822,15 @@ msgstr "PPtP" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 msgid "PSID offset" -msgstr "" +msgstr "Desplazamiento PSID" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 msgid "PSID-bits length" -msgstr "" +msgstr "Longitud de PSID-bits" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" +msgstr "PTM/EFM (Modo de transferencia de paquetes)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 msgid "Package libiwinfo required!" @@ -3745,8 +3845,8 @@ msgid "Part of zone %q" msgstr "Parte de zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3756,45 +3856,52 @@ msgstr "Contraseña" msgid "Password authentication" msgstr "Autentificación de contraseña" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Contraseña de la Clave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" -msgstr "" +msgstr "Contraseña de clave privada interna" + +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "Seguridad de la contraseña" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" -msgstr "" +msgstr "Contraseña2" #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 msgid "Paste or drag SSH key file…" -msgstr "" +msgstr "Pegar o arrastrar archivo de clave SSH..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Ruta al Certificado CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Camino al certificado de cliente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Ruta a la Clave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" -msgstr "" +msgstr "Ruta al certificado interno de CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" -msgstr "" +msgstr "Ruta al certificado del cliente interno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" -msgstr "" +msgstr "Ruta a la clave privada interna" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 @@ -3812,31 +3919,31 @@ msgstr "Pico:" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 msgid "Peer IP address to assign" -msgstr "" +msgstr "Dirección IP del par para asignar" #: modules/luci-base/luasrc/model/network.lua:32 msgid "Peer address is missing" -msgstr "" +msgstr "Falta la dirección del compañero" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 msgid "Peers" -msgstr "" +msgstr "Pares" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 msgid "Perfect Forward Secrecy" -msgstr "" +msgstr "Reenvío secreto perfecto" #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 msgid "Perform reboot" -msgstr "Rearrancar" +msgstr "Reiniciar" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 msgid "Perform reset" -msgstr "Reiniciar" +msgstr "Realizar restablecimiento" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 msgid "Persistent Keep Alive" -msgstr "" +msgstr "Mantener vivo persistente" #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" @@ -3870,6 +3977,14 @@ msgstr "Por favor, introduzca su nombre de usuario y contraseña." msgid "Policy" msgstr "Política" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "Intervalo de autorefrezco" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "Intervalo de autorefrezco para consultas de estado en segundos" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Puerto" @@ -3878,29 +3993,29 @@ msgstr "Puerto" msgid "Port status:" msgstr "Estado del puerto:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" -msgstr "" +msgstr "Modo de administración de energía" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" +msgstr "Errores preventivos de CRC (CRC P)" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 msgid "Prefer LTE" -msgstr "" +msgstr "Preferir LTE" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 msgid "Prefer UMTS" -msgstr "" +msgstr "Preferir UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" -msgstr "" +msgstr "Prefijo delegado" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 msgid "Preshared Key" -msgstr "" +msgstr "Clave precompartida" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 @@ -3917,16 +4032,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." -msgstr "" +msgstr "Evita escuchar en estas interfaces." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" -msgstr "Impide la comunicación cliente a cliente" +msgstr "Impide la comunicación entre clientes" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 msgid "Private Key" -msgstr "" +msgstr "Clave privada" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 msgid "Proceed" @@ -3937,9 +4052,9 @@ msgstr "Proceder" msgid "Processes" msgstr "Procesos" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" -msgstr "" +msgstr "Prefil" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 msgid "Prot." @@ -3947,8 +4062,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocolo" @@ -3959,9 +4074,9 @@ msgstr "Protocolo de la nueva interfaz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 msgid "Protocol support is not installed" -msgstr "No está instalado el soporte al protocolo" +msgstr "No está instalado el paquete necesario del protocolo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Dar servicio NTP" @@ -3969,13 +4084,13 @@ msgstr "Dar servicio NTP" msgid "Provide new network" msgstr "Introduzca una nueva red" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 msgid "Public Key" -msgstr "" +msgstr "Clave pública" #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 msgid "" @@ -3984,17 +4099,24 @@ msgid "" "device, paste an OpenSSH compatible public key line or drag a <code>.pub</" "code> file into the input field." msgstr "" +"Las claves públicas permiten los inicios de sesión SSH sin contraseña con " +"una mayor seguridad en comparación con el uso de contraseñas simples. Para " +"cargar una nueva clave en el dispositivo, pegue una línea de clave pública " +"compatible con OpenSSH o arrastre un archivo <code>.pub</code> al campo de " +"entrada." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 msgid "Public prefix routed to this device for distribution to clients." msgstr "" +"Prefijo público enrutado a este dispositivo para su distribución a los " +"clientes." #: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 msgid "QMI Cellular" -msgstr "" +msgstr "QMI Celular" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Calidad" @@ -4003,21 +4125,27 @@ msgid "" "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> " "servers" msgstr "" +"Consulta todos los servidores <abbr title=\"Domain Name System\">DNS</abbr> " +"disponibles en el enlace" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" -msgstr "" +msgstr "Tiempo de vida de la clave R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" -msgstr "" +msgstr "Llavero R1" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 msgid "RFC3947 NAT-T mode" -msgstr "" +msgstr "RFC3947 modo NAT-T" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "Umbral RSSI para unirse" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Umbral RTS/CTS" @@ -4031,33 +4159,35 @@ msgstr "RX" msgid "RX Rate" msgstr "Ratio RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Puerto de contabilidad Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Secreto de contabilidad Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Servidor de contabilidad Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Puerto de autentificación Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Secreto de autentificación Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Servidor de autentificación Radius" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" +"Bytes en bruto codificados en hexadecimal. Deje en blanco a menos que su ISP " +"lo requiera" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 msgid "" @@ -4072,19 +4202,22 @@ msgid "" "Really delete this interface? The deletion cannot be undone! You might lose " "access to this device if you are connected via this interface" msgstr "" +"¿Realmente eliminar esta interfaz? La eliminación no se puede deshacer! Es " +"posible que pierda el acceso a este dispositivo si está conectado a través " +"de esta interfaz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 msgid "" "Really delete this wireless network? The deletion cannot be undone! You " "might lose access to this device if you are connected via this network." msgstr "" -"¿Está seguro de borrar esta red inalámbrica?. ¡No será posible deshacer el " -"borrado!\n" -"Puede perder el acceso a este dispositivo si está conectado por esta red." +"¿Realmente quiere eliminar esta red WiFi? La eliminación no se puede " +"deshacer! Es posible que pierda el acceso a este dispositivo si está " +"conectado a través de esta red." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 msgid "Really reset all changes?" -msgstr "¿Está seguro de querer reiniciar todos los cambios?" +msgstr "¿Está seguro de restablecer todos los cambios?" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 msgid "Really switch protocol?" @@ -4096,7 +4229,7 @@ msgstr "Conexiones en tiempo real" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 msgid "Realtime Graphs" -msgstr "Gráficas en tiempo real" +msgstr "Gráficos en tiempo real" #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" @@ -4108,42 +4241,42 @@ msgstr "Tráfico en tiempo real" #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" -msgstr "Red inalámbrica en tiempo real" +msgstr "Red WiFi en tiempo real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" -msgstr "" +msgstr "Fecha límite de reasociación" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 msgid "Rebind protection" msgstr "Protección contra reasociación" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" -msgstr "Rearrancar" +msgstr "Reiniciar" #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 msgid "Rebooting..." -msgstr "Rearrancando..." +msgstr "Reiniciando..." #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 msgid "Reboots the operating system of your device" -msgstr "Rearranque el sistema operativo de su dispositivo" +msgstr "Reiniciar el sistema operativo de su dispositivo" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 msgid "Receive" msgstr "Recibir" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena Receptora" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" +msgstr "Recomendado. Direcciones IP de la interfaz de WireGuard." #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 @@ -4156,11 +4289,11 @@ msgstr "Referencias" #: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 msgid "Relay" -msgstr "Relé" +msgstr "Relé (relayd)" #: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 msgid "Relay Bridge" -msgstr "Puente relé" +msgstr "Puente relé (relayd)" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 msgid "Relay between networks" @@ -4168,7 +4301,7 @@ msgstr "Relé entre redes" #: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 msgid "Relay bridge" -msgstr "Puente relé" +msgstr "Puente relé (relayd)" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 @@ -4177,11 +4310,11 @@ msgstr "Dirección IPv4 remota" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 msgid "Remote IPv4 address or FQDN" -msgstr "" +msgstr "Dirección IPv4 remota o FQDN" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 msgid "Remove" -msgstr "Desinstalar" +msgstr "Remover" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 msgid "Repeat scan" @@ -4194,31 +4327,31 @@ msgstr "Reemplazar entrada" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 msgid "Replace wireless configuration" -msgstr "Cambiar la configuración inalámbrica" +msgstr "Cambiar la configuración WiFi" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 msgid "Request IPv6-address" -msgstr "" +msgstr "Solicitar dirección IPv6" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 msgid "Request IPv6-prefix of length" -msgstr "" +msgstr "Solicitud IPv6-prefijo de longitud" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" -msgstr "" +msgstr "Requerido" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Necesario para ciertos ISPs, por ejemplo Charter con DOCSIS 3" +msgstr "Requerido para ciertos ISPs, por ejemplo Charter con DOCSIS 3" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 msgid "Required. Base64-encoded private key for this interface." -msgstr "" +msgstr "Requerido. Clave privada codificada en base64 para esta interfaz." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 msgid "Required. Base64-encoded public key of peer." -msgstr "" +msgstr "Requerido. Base64 codificada clave pública de igual." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 msgid "" @@ -4226,18 +4359,25 @@ msgid "" "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " "routes through the tunnel." msgstr "" +"Requerido. Direcciones IP y prefijos que este par puede usar dentro del " +"túnel. Por lo general, las direcciones IP del túnel del par y las redes que " +"el mismo enruta a través del túnel." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" +"Requiere la versión completa de wpad/hostapd y soporte del controlador de " +"wifi <br />(a partir de enero de 2019: ath9k, ath10k, mwlwifi y mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" msgstr "" +"Requiere upstream soporta DNSSEC; Verifique que las respuestas de los " +"dominios no firmados realmente provengan de dominios no firmados" #: modules/luci-base/luasrc/view/cbi/delegator.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:30 @@ -4252,29 +4392,29 @@ msgstr "Reiniciar contadores" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 msgid "Reset to defaults" -msgstr "Reiniciar a valores por defecto" +msgstr "Reiniciar a configuraciones predeterminadas" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 msgid "Resolv and Hosts Files" -msgstr "Ficheros Resolv y Hosts" +msgstr "Archivos Resolv y Hosts" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 msgid "Resolve file" -msgstr "Fichero de resolución" +msgstr "Archivo de resolución" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:67 msgid "Restart" -msgstr "Rearrancar" +msgstr "Reiniciar" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 msgid "Restart Firewall" -msgstr "Rearrancar cortafuegos" +msgstr "Reiniciar Firewall" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 msgid "Restart radio interface" -msgstr "" +msgstr "Reiniciar la interfaz de radio" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 msgid "Restore" @@ -4285,8 +4425,8 @@ msgid "Restore backup" msgstr "Restaurar copia de seguridad" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Mostrar/ocultar contraseña" @@ -4294,19 +4434,19 @@ msgstr "Mostrar/ocultar contraseña" #: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 msgid "Revert" -msgstr "Anular" +msgstr "Revertir" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" -msgstr "" +msgstr "Revertir cambios" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" -msgstr "" +msgstr "Error al revertir la solicitud con el estado <code>%h</code>" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" -msgstr "" +msgstr "Revirtiendo configuración..." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 msgid "Root" @@ -4314,27 +4454,27 @@ msgstr "Raíz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 msgid "Root directory for files served via TFTP" -msgstr "Directorio raíz para los ficheros servidos por TFTP" +msgstr "Directorio raíz para los archivos servidos por TFTP" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 msgid "Root preparation" -msgstr "" +msgstr "Preparación de la raíz" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 msgid "Route Allowed IPs" -msgstr "" +msgstr "Ruta permitida IPs" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 msgid "Route type" -msgstr "" +msgstr "Tipo de ruta" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 msgid "Router Advertisement-Service" -msgstr "" +msgstr "Servicio de anuncio de enrutador" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Contraseña del router" @@ -4349,47 +4489,47 @@ msgid "" "Routes specify over which interface and gateway a certain host or network " "can be reached." msgstr "" -"Las rutas especifican sobre qué interfaz y pasarela se puede llegar a una " -"cierta máquina o red." +"Las rutas especifican sobre qué interfaz y puerta de enlace se puede llegar " +"a un cierto dispositivo o red." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 msgid "Rule" -msgstr "" +msgstr "Regla" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" -msgstr "Comprobar el sistema de ficheros antes de montar el dispositivo" +msgstr "Comprobar el sistema de archivos antes de montar el dispositivo" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" -msgstr "Comprobar el sistema de ficheros" +msgstr "Comprobar el sistema de archivos" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 msgid "SHA256" -msgstr "" +msgstr "SHA256" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" -msgstr "" +msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acceso SSH" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 msgid "SSH server address" -msgstr "" +msgstr "Dirección del servidor SSH" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 msgid "SSH server port" -msgstr "" +msgstr "Puerto del servidor SSH" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 msgid "SSH username" -msgstr "" +msgstr "Nombre de usuario SSH" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Claves SSH" @@ -4397,18 +4537,18 @@ msgstr "Claves SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 msgid "SWAP" -msgstr "" +msgstr "SWAP" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Guardar" @@ -4419,25 +4559,25 @@ msgstr "Guardar y aplicar" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 msgid "Save mtdblock" -msgstr "" +msgstr "Guardar mtdblock" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 msgid "Save mtdblock contents" -msgstr "" +msgstr "Guardar contenidos mtdblock" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 msgid "Saving keys…" -msgstr "" +msgstr "Guardando llaves..." #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 msgid "Scan" -msgstr "Explorar" +msgstr "Escanear" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 msgid "Scan request failed" -msgstr "" +msgstr "Error en la solicitud de escaneo" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tareas programadas" @@ -4448,7 +4588,7 @@ msgstr "Sección añadida" #: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 msgid "Section removed" -msgstr "Sección eliminada" +msgstr "Sección removida" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" @@ -4460,6 +4600,9 @@ msgid "" "fails. Use only if you are sure that the firmware is correct and meant for " "your device!" msgstr "" +"Seleccione \"Forzar actualización\" para flashear la imagen incluso si falla " +"la verificación del formato de la imagen. ¡Úselo solo si está seguro de que " +"el firmware es correcto y está diseñado para su dispositivo!" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 @@ -4474,7 +4617,7 @@ msgstr "" "Enviar peticiones de echo LCP cada intervalo de segundos dado, solo efectivo " "usado conjuntamente con el umbral de fallo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Aislar clientes" @@ -4493,58 +4636,60 @@ msgstr "Tipo de servicio" #: modules/luci-base/luasrc/controller/admin/index.lua:55 msgid "Services" -msgstr "Servicios" +msgstr "Aplicaciones" #: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 msgid "Session expired" -msgstr "" +msgstr "Sesión expirada" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 msgid "Set VPN as Default Route" -msgstr "" +msgstr "Establecer VPN como ruta predeterminada" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " "sense events do not invoke hotplug handlers)." msgstr "" +"Configura las propiedades de la interfaz independientemente del operador de " +"enlace (si está configurado, los eventos de detección de operador no invocan " +"los controladores de conexión en caliente)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 -#, fuzzy +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" -msgstr "Sincronización horaria" +msgstr "Configurar la sincronización del tiempo" #: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 msgid "Setting PLMN failed" -msgstr "" +msgstr "La configuración de la PLMN falló" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 msgid "Setting operation mode failed" -msgstr "" +msgstr "El modo de operación de ajuste falló" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 msgid "Setup DHCP Server" msgstr "Configuración del servidor DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" -msgstr "" +msgstr "Segundos con errores graves (SES)" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" -msgstr "" +msgstr "GI corto" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" -msgstr "" +msgstr "Preámbulo corto" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 msgid "Show current backup file list" -msgstr "Mostrar lista de ficheros a salvar" +msgstr "Mostrar lista de archivos a resguardar" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 msgid "Show empty chains" -msgstr "" +msgstr "Mostrar cadenas vacias" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 msgid "Shutdown this interface" @@ -4557,13 +4702,13 @@ msgstr "Apagar esta interfaz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Señal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" -msgstr "" +msgstr "Atenuación de señal (SATN)" #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" @@ -4575,38 +4720,36 @@ msgstr "Tamaño" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" -msgstr "" +msgstr "Tamaño de la caché de consultas DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" -msgstr "" +msgstr "Tamaño del dispositivo ZRam en megabytes" #: modules/luci-base/luasrc/view/cbi/footer.htm:18 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 msgid "Skip" msgstr "Saltar" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Saltar al contenido" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Saltar a navegación" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Tiempo asignado" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" -msgstr "" +msgstr "Software VLAN" #: modules/luci-base/luasrc/view/cbi/header.htm:2 msgid "Some fields are invalid, cannot save values!" -msgstr "Algunos campos no son válidos, ¡no se pueden guardar!" +msgstr "Algunos campos son inválidos, ¡no se pueden guardar!" #: modules/luci-base/luasrc/view/error404.htm:9 msgid "Sorry, the object you requested was not found." @@ -4646,32 +4789,36 @@ msgid "" "Specifies the maximum amount of failed ARP requests until hosts are presumed " "to be dead" msgstr "" -"Especifica la cantidad de peticiones ARP fallidas hasta suponer muerta una " -"máquina" +"Especifica la cantidad de peticiones ARP fallidas hasta suponer muerto un " +"dispositivo" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 msgid "" "Specifies the maximum amount of seconds after which hosts are presumed to be " "dead" msgstr "" -"Especifica la cantidad de segundos a transcurrir hasta suponer muerta una " -"máquina" +"Especifica la cantidad de segundos a transcurrir hasta suponer muerto un " +"dispositivo" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 msgid "Specify a TOS (Type of Service)." -msgstr "" +msgstr "Especifique un TOS (Tipo de Servicio)." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64)." msgstr "" +"Especifique un TTL (Tiempo de vida) para el paquete de encapsulación que no " +"sea el predeterminado (64)." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes)." msgstr "" +"Especifique una MTU (Unidad de transmisión máxima) distinta de la " +"predeterminada (1280 bytes)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 @@ -4681,41 +4828,41 @@ msgstr "Especifica la clave secreta de encriptado." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:61 msgid "Start" -msgstr "Arrancar" +msgstr "Iniciar" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:32 msgid "Start priority" -msgstr "Prioridad de arranque" +msgstr "Prioridad de inicio" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" -msgstr "" +msgstr "Iniciando aplicar configuración..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 msgid "Starting wireless scan..." -msgstr "" +msgstr "Iniciando escaneo de WiFi..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Arranque" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 msgid "Static IPv4 Routes" -msgstr "Rutas estáticas IPv4" +msgstr "Rutas IPv4 estáticas" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 msgid "Static IPv6 Routes" -msgstr "Rutas estáticas IPv6" +msgstr "Rutas IPv6 estáticas" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" -msgstr "Cesiones estáticas" +msgstr "Direcciones estáticas" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 msgid "Static Routes" msgstr "Rutas estáticas" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Dirección estática" @@ -4725,14 +4872,14 @@ msgid "" "to DHCP clients. They are also required for non-dynamic interface " "configurations where only hosts with a corresponding lease are served." msgstr "" -"Las cesiones estáticas se usan para asignar direcciones IP fijas y nombres " -"simbólicos de máquina a clientes DHCP. También son necesarias para " -"configuraciones de interfaz no dinámica en las que a cada máquina siempre se " -"le quiere servir la misma dirección IP." +"Las direcciones estáticas se usan para asignar direcciones IP fijas y " +"nombres identificativos de dispositivos a clientes DHCP. También son " +"necesarias para configuraciones de interfaz no dinámica en las que a cada " +"dispositivo siempre se le quiere dar la misma dirección IP." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" -msgstr "" +msgstr "Límite de inactividad de la estación" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 @@ -4744,57 +4891,63 @@ msgstr "Estado" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 msgid "Stop" -msgstr "Parar" +msgstr "Detener" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 msgid "Strict order" msgstr "Orden estricto" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "Fuerte" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" -msgstr "Guardar" +msgstr "Enviar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 msgid "Suppress logging" -msgstr "" +msgstr "Suprimir el registro" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 msgid "Suppress logging of the routine operation of these protocols" -msgstr "" +msgstr "Suprimir el registro de la operación rutinaria de estos protocolos" #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 msgid "Swap" -msgstr "" +msgstr "Swap" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 msgid "Swap Entry" -msgstr "Entrada de intercambio" +msgstr "Entrada de Swap" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Switch %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Switch %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" +"El Switch %q tiene una topología desconocida: la configuración de VLAN puede " +"no ser precisa." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 msgid "Switch Port Mask" -msgstr "" +msgstr "Máscara de puerto de Switch" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" -msgstr "" +msgstr "Switch VLAN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 msgid "Switch protocol" @@ -4802,14 +4955,18 @@ msgstr "Intercambiar protocolo" #: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 msgid "Switch to CIDR list notation" -msgstr "" +msgstr "Cambiar a la notación de lista CIDR" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 msgid "Switchport activity (%s)" -msgstr "" +msgstr "Actividad de switchport (%s)" + +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "Sincronizar con el servidor NTP" #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Sincronizar con el navegador" @@ -4834,7 +4991,7 @@ msgstr "Registro del sistema" msgid "System Properties" msgstr "Propiedades del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Tamaño del buffer de registro del sistema" @@ -4873,18 +5030,17 @@ msgstr "Tabla" #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 msgid "Target" -msgstr "Objetivo" +msgstr "Destino" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 msgid "Target network" -msgstr "" +msgstr "Red de destino" #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 msgid "Terminate" msgstr "Terminar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy msgid "" "The <em>Device Configuration</em> section covers physical settings of the " "radio hardware such as channel, transmit power or antenna selection which " @@ -4894,10 +5050,10 @@ msgid "" msgstr "" "La sección de <em>Configuración del dispositivo</em> ocupa la configuración " "física del hardware de radio como el canal, la potencia de transmisión o la " -"selección de antena que se comparte entre todas las redes inalámbricas " -"definidas (si el hardware de radio es capaz de ser multi-SSID). " -"Configuración por red como encriptado o modo de operación se agrupan en " -"<em>Configuración del interfaz</em>." +"selección de antena que se comparte entre todas las redes WiFi definidas (si " +"el hardware de radio es capaz de ser multi-SSID). Configuración por red como " +"encriptado o modo de operación se agrupan en <em>Configuración de la " +"interfaz</em>." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 msgid "" @@ -4905,18 +5061,22 @@ msgid "" "component for working wireless configuration!" msgstr "" "El paquete <em>libiwinfo-lua</em> no está instalado. ¡Debe instalarlo para " -"poder configurar la conectividad inalambrica!" +"poder configurar la conectividad WiFi!" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 msgid "" "The HE.net endpoint update configuration changed, you must now use the plain " "username instead of the user ID!" msgstr "" +"La configuración de actualización de punto final de HE.net cambió, ¡ahora " +"debe usar el nombre de usuario simple en lugar de la ID de usuario!" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 msgid "" "The IPv4 address or the fully-qualified domain name of the remote tunnel end." msgstr "" +"La dirección IPv4 o el nombre de dominio completo del extremo del túnel " +"remoto." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 @@ -4936,11 +5096,12 @@ msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" +msgstr "El archivo de copia de seguridad no parece ser un archivo gzip válido." #: modules/luci-base/luasrc/view/cbi/error.htm:6 msgid "The configuration file could not be loaded due to the following error:" msgstr "" +"El archivo de configuración no se pudo cargar debido al siguiente error:" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" @@ -4951,6 +5112,13 @@ msgid "" "warning and edit changes before attempting to apply again, or revert all " "pending changes to keep the currently working configuration state." msgstr "" +"No se pudo alcanzar el dispositivo en %d segundos después de aplicar los " +"cambios pendientes, lo que provocó que la configuración se revirtiera por " +"razones de seguridad. Si cree que los cambios de configuración son " +"correctos, proceda de todos modos. Alternativamente, puede descartar esta " +"advertencia y editar los cambios antes de intentar aplicar nuevamente, o " +"revertir todos los cambios pendientes para mantener el estado de " +"configuración actualmente en funcionamiento." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 @@ -4977,40 +5145,41 @@ msgid "" "compare them with the original file to ensure data integrity.<br /> Click " "\"Proceed\" below to start the flash procedure." msgstr "" -"Imagen recibida. Verifique que la comprobación y tamaño del fichero recibido " +"Imagen recibida. Verifique que la comprobación y tamaño del archivo recibido " "coinciden con los del original.<br />Pulse \"Proceder\" para empezar el " "grabado." #: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 msgid "The following changes have been reverted" -msgstr "Se han anulado los siguientes cambios" +msgstr "Los siguientes cambios han sido revertidos." #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 msgid "The following rules are currently active on this system." -msgstr "Rutas activas." +msgstr "Las siguientes reglas están actualmente activas en este sistema." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 msgid "The given SSH public key has already been added." -msgstr "" +msgstr "La clave pública SSH dada ya se ha agregado." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 msgid "" "The given SSH public key is invalid. Please supply proper public RSA or " "ECDSA keys." msgstr "" +"La clave pública SSH dada no es válida. Por favor, suministre las claves " +"públicas RSA o ECDSA." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" -msgstr "Nombre de red repetido" +msgstr "El nombre de red dado no es único" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy msgid "" "The hardware is not multi-SSID capable and the existing configuration will " "be replaced if you proceed." msgstr "" -"El hardware no es capaz de multi-SSD y la configuración actual se cambiará " -"si continúa." +"El hardware no tiene capacidad de tener varios SSIDs y la configuración " +"existente será reemplazada si continúa." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 @@ -5027,7 +5196,7 @@ msgstr "Longitud del prefijo IPv6 en bits" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" +msgstr "La dirección IPv4 local sobre la que se crea el túnel (opcional)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 msgid "" @@ -5052,9 +5221,9 @@ msgstr "Este protocolo necesita estar asignado a un dispositivo" #: modules/luci-base/luasrc/view/csrftoken.htm:11 msgid "The submitted security token is invalid or already expired!" -msgstr "" +msgstr "¡El token de seguridad enviado no es válido o ya está vencido!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5062,8 +5231,7 @@ msgstr "" "El sistema está borrando la partición de configuración y rearrancará cuando " "termine." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 -#, fuzzy +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -5076,7 +5244,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 msgid "The system password has been successfully changed." -msgstr "" +msgstr "La contraseña del sistema se ha cambiado correctamente." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" @@ -5086,22 +5254,22 @@ msgstr "" "El archivo con la imagen de firmware subido no tiene un formato adecuado. " "Asegúrese de haber elegido la imagen correcta para su plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." -msgstr "Sin cesiones activas." +msgstr "Sin conexiones activas." #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." -msgstr "" +msgstr "No hay cambios para aplicar." #: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 msgid "There are no pending changes to revert!" -msgstr "¡No hay cambios a anular!" +msgstr "¡No hay cambios a revertir!" #: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 msgid "There are no pending changes!" @@ -5116,16 +5284,15 @@ msgstr "" "la pestaña \"Configuración física\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." msgstr "" "No hay contraseñas en este router. Por favor, configure una contraseña para " -"proteger el interfaz web y activar SSH." +"proteger el interfaz web y habilitar SSH." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 msgid "This IPv4 address of the relay" @@ -5137,6 +5304,9 @@ msgid "" "'server=1.2.3.4' fordomain-specific or full upstream <abbr title=\"Domain " "Name System\">DNS</abbr> servers." msgstr "" +"Este archivo puede contener líneas como 'servidor=/dominio/1.2.3.4' o " +"'servidor=1.2.3.4' para dominios específicos o dominantes completos <abbr " +"title=\"Domain Name System\">DNS</abbr>." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" @@ -5144,8 +5314,8 @@ msgid "" "include during sysupgrade. Modified files in /etc/config/ and certain other " "configurations are automatically preserved." msgstr "" -"Lista de patrones shell con los ficheros y directorios que se deben incluir " -"en un sysupgrade. Los ficheros modificados en /etc/config/ y ciertas otras " +"Lista de patrones shell con los archivos y directorios que se deben incluir " +"en un sysupgrade. Los archivos modificados en /etc/config/ y ciertas otras " "configuraciones se guardarán automáticamente." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 @@ -5153,6 +5323,9 @@ msgid "" "This is either the \"Update Key\" configured for the tunnel or the account " "password if no update key has been configured" msgstr "" +"Esta es la \"clave de actualización\" configurada para el túnel o la " +"contraseña de la cuenta si no se ha configurado ninguna clave de " +"actualización" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:78 msgid "" @@ -5180,12 +5353,14 @@ msgstr "" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 msgid "This is the plain username for logging into the account" -msgstr "" +msgstr "Este es el nombre de usuario simple para iniciar sesión en la cuenta" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 msgid "" "This is the prefix routed to you by the tunnel broker for use by clients" msgstr "" +"Este es el prefijo que le envía el agente de túneles para que lo utilicen " +"los clientes" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 msgid "This is the system crontab in which scheduled tasks can be defined." @@ -5202,37 +5377,37 @@ msgstr "" msgid "" "This list gives an overview over currently running system processes and " "their status." -msgstr "Procesos de sistema que se están ejecutando actualmente y su estado." +msgstr "Procesos del sistema que se están ejecutando actualmente y su estado." #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Conexiones de red activas." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "No hay reglas definidas" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronización horaria" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Sincronización horaria no configurada." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" -msgstr "" +msgstr "Intervalo de tiempo para reprogramar GTK" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zona horaria" #: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 msgid "To login…" -msgstr "" +msgstr "Iniciar sesión…" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" @@ -5240,13 +5415,14 @@ msgid "" "archive here. To reset the firmware to its initial state, click \"Perform " "reset\" (only possible with squashfs images)." msgstr "" -"Para restaurar los ficheros de configuración, debe subir primero una copia " -"de seguridad. Para reiniciar el firmware a su estado inicial pulse " -"\"Reiniciar\" (sólo posible con imágenes squashfs)." +"Para restaurar los archivos de configuración, debe subir primero una copia " +"de seguridad. Para reiniciar el firmware a sus configuraciones " +"predeterminadas pulse \"Realizar restablecimiento\" (sólo posible con " +"imágenes squashfs)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 msgid "Tone" -msgstr "" +msgstr "Tono" #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 @@ -5268,24 +5444,24 @@ msgstr "Tráfico" msgid "Transfer" msgstr "Transferencia" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" -msgstr "Tasa de Transmisión" +msgstr "Tasa de transmisión" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 msgid "Transmit" msgstr "Transmitir" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Potencia de transmisión" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" -msgstr "Antena Transmisora" +msgstr "Antena transmisora" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 msgid "Trigger" @@ -5299,7 +5475,7 @@ msgstr "Modo de disparador" msgid "Tunnel ID" msgstr "ID de túnel" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interfaz de túnel" @@ -5307,14 +5483,14 @@ msgstr "Interfaz de túnel" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 msgid "Tunnel Link" -msgstr "" +msgstr "Enlace del túnel" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 msgid "Tx-Power" msgstr "Potencia-TX" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" @@ -5337,7 +5513,7 @@ msgstr "Dispositivo USB" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 msgid "USB Ports" -msgstr "" +msgstr "Puertos USB" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 @@ -5347,15 +5523,15 @@ msgstr "UUID" #: modules/luci-base/luasrc/model/network.lua:34 #: modules/luci-base/luasrc/model/network.lua:35 msgid "Unable to determine device name" -msgstr "" +msgstr "No se puede determinar el nombre del dispositivo" #: modules/luci-base/luasrc/model/network.lua:36 msgid "Unable to determine external IP address" -msgstr "" +msgstr "No se puede determinar la dirección IP externa" #: modules/luci-base/luasrc/model/network.lua:37 msgid "Unable to determine upstream interface" -msgstr "" +msgstr "No se puede determinar la interfaz ascendente" #: modules/luci-base/luasrc/view/error404.htm:10 msgid "Unable to dispatch" @@ -5363,43 +5539,42 @@ msgstr "Imposible repartir" #: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 msgid "Unable to obtain client ID" -msgstr "" +msgstr "No se puede obtener la identificación del cliente" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 msgid "Unable to resolve AFTR host name" -msgstr "" +msgstr "No se puede resolver el nombre de host AFTR" #: modules/luci-base/luasrc/model/network.lua:38 msgid "Unable to resolve peer host name" -msgstr "" +msgstr "No se puede resolver el nombre de host del par" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" -msgstr "" +msgstr "Segundos no disponibles (UAS)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Desconocido" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" -msgstr "" +msgstr "Error desconocido (%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" -msgstr "No gestionado" +msgstr "No administrado" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" -msgstr "" +msgstr "Desmontar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 msgid "Unnamed key" -msgstr "" +msgstr "Clave sin nombre" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5408,19 +5583,19 @@ msgstr "Cambios no guardados" #: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 msgid "Unsupported MAP type" -msgstr "" +msgstr "Tipo de MAP no soportado" #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 msgid "Unsupported modem" -msgstr "" +msgstr "Módem no soportado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Tipo de protocolo no soportado." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 msgid "Up" -msgstr "" +msgstr "Arriba" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" @@ -5429,8 +5604,8 @@ msgid "" "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 sea compatible)." +"actual. Puede marcar \"Conservar la configuración del router\" si lo desea " +"(es necesario que la imagen sea compatible)." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 msgid "Upload archive..." @@ -5452,7 +5627,7 @@ msgstr "Usar <code>/etc/ethers</code>" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 msgid "Use DHCP gateway" -msgstr "Usar pasarela DHCP" +msgstr "Usar puerta de enlace DHCP" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 @@ -5465,10 +5640,10 @@ msgstr "Usar pasarela DHCP" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 msgid "Use DNS servers advertised by peer" -msgstr "Utiliza servidores DNS anunciados por otros" +msgstr "Usar otros servidores DNS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Usa códigos de país ISO/IEC 3166 alpha2." @@ -5491,19 +5666,19 @@ msgstr "TTL a usar en el interfaz de túnel" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 msgid "Use as external overlay (/overlay)" -msgstr "" +msgstr "Utilizar como superposición externa (/overlay)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 msgid "Use as root filesystem (/)" -msgstr "" +msgstr "Utilizar como sistema de archivos raíz (/)" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 msgid "Use broadcast flag" -msgstr "Usar marca de propagación" +msgstr "Usar marca de difusión" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 msgid "Use builtin IPv6-management" -msgstr "" +msgstr "Utilizar la gestión integrada de IPv6" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 @@ -5532,7 +5707,7 @@ msgstr "Usar servidores DNS personalizados" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 msgid "Use default gateway" -msgstr "Usar pasarela por defecto" +msgstr "Utilizar la puerta de enlace predeterminada" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 @@ -5552,7 +5727,7 @@ msgstr "Usar pasarela por defecto" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 msgid "Use gateway metric" -msgstr "Usar métrica de la pasarela" +msgstr "Usar métrica de puerta de enlace" #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 msgid "Use routing table" @@ -5566,32 +5741,34 @@ msgid "" "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 "" -"Pulse el botón <em>Añadir</em> para insertar una nueva cesión. <em>Dirección " -"MAC</em> identificará la máquina, <em>dirección IPv4</em> especificará la " -"dirección fija a usar y <em>Nombre de máquina</em> se asignará como nombre " -"simbólico." +"Pulse el botón <em>Añadir</em> para insertar una nueva dirección. " +"<em>Dirección MAC</em> identificará el dispositivo, <em>Dirección IPv4</em> " +"especificará la dirección fija a usar y <em>Nombre de host</em> se asignará " +"como nombre identificativo." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 msgid "Used" msgstr "Usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Espacio de clave usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." msgstr "" +"Se utiliza para dos propósitos diferentes: RADIUS NAS ID y 802.11r R0KH-ID. " +"No es necesario con WPA normal (2)-PSK." #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 msgid "User certificate (PEM encoded)" -msgstr "" +msgstr "Certificado de usuario (Codificado PEM)" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 msgid "User key (PEM encoded)" -msgstr "" +msgstr "Clave de usuario (codificada PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 @@ -5605,23 +5782,23 @@ msgstr "VC-Mux" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 msgid "VDSL" -msgstr "" +msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs en %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs en %q (%s)" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 msgid "VPN Local address" -msgstr "" +msgstr "VPN dirección local" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 msgid "VPN Local port" -msgstr "" +msgstr "VPN puerto local" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 @@ -5631,19 +5808,19 @@ msgstr "Servidor VPN" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 msgid "VPN Server port" -msgstr "" +msgstr "Puerto del servidor VPN" #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 msgid "VPN Server's certificate SHA1 hash" -msgstr "" +msgstr "Hash SHA1 del certificado del servidor VPN" #: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" +msgstr "VPNC (CISCO 3000 (y otros) VPN)" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 msgid "Vendor" -msgstr "" +msgstr "Proveedor" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 msgid "Vendor Class to send when requesting DHCP" @@ -5655,49 +5832,49 @@ msgstr "Verificar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 msgid "Virtual dynamic interface" -msgstr "" +msgstr "Interfaz dinámica virtual" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Sistema abierto WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Clave compartida WEP" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 msgid "WEP passphrase" -msgstr "Frase de paso WEP" +msgstr "Contraseña WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Modo WMM" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 msgid "WPA passphrase" -msgstr "Frase de paso WPA" +msgstr "Contraseña WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." msgstr "" -"WPA-Encryption necesita que estén instalados wpa_supplicant (para el modo " -"cliente o hostapd (para los modos AP y ad-hoc)." +"Para el encriptado WPA se necesita que estén instalados \"wpa_supplicant\" " +"para el modo cliente o \"hostapd\" para los modos AP y ad-hoc." #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 msgid "Waiting for changes to be applied..." -msgstr "Esperando a que se realicen los cambios..." +msgstr "Esperando a que se apliquen los cambios..." #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 msgid "Waiting for command to complete..." @@ -5705,115 +5882,122 @@ msgstr "Esperando a que termine el comando..." #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" -msgstr "" +msgstr "Esperando a que se aplique la configuración... %ds" #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 msgid "Waiting for device..." -msgstr "" +msgstr "Esperando por el dispositivo..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Aviso" #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" +msgstr "Advertencia: ¡Hay cambios no guardados que se perderán al reiniciar!" + +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "Débil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " "key options." msgstr "" +"Cuando se utiliza un PSK, el PMK se puede generar automáticamente. Cuando " +"está habilitada, las siguientes opciones de teclas R0/R1 no se aplican. " +"Deshabilite esto para usar las opciones de teclas R0 y R1." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 msgid "Wi-Fi activity (%s)" -msgstr "" +msgstr "Actividad WiFi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 msgid "Wi-Fi client association (%s)" -msgstr "" +msgstr "Asociación de clientes de WiFi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 msgid "Wi-Fi data reception (%s)" -msgstr "" +msgstr "Recepción de datos WiFi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 msgid "Wi-Fi data transmission (%s)" -msgstr "" +msgstr "Transmisión de datos WiFi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 msgid "Wi-Fi on (%s)" -msgstr "" +msgstr "WiFi en (%s)" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" -msgstr "" +msgstr "Ancho de banda" #: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 msgid "WireGuard VPN" -msgstr "" +msgstr "WireGuard VPN" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 msgid "Wireless" -msgstr "Red inalámbrica" +msgstr "WiFi" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" -msgstr "Adaptador inalámbrico" +msgstr "Adaptador WiFi" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" -msgstr "Red inalámbrica" +msgstr "Red WiFi" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 msgid "Wireless Overview" -msgstr "Redes inalámbricas" +msgstr "Visión general de WiFi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" -msgstr "Seguridad inalámbrica" +msgstr "Seguridad WiFi" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" -msgstr "Red inalámbrica desconectada" +msgstr "Red WiFi deshabilitada" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" -msgstr "Red inalámbrica no asociada" +msgstr "Red WiFi no asociada" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 msgid "Wireless is restarting..." -msgstr "Rearrancando red inalámbrica..." +msgstr "Reiniciando red WiFi..." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 msgid "Wireless network is disabled" -msgstr "Red inalámbrica desconectada" +msgstr "Red WiFi deshabilitada" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 msgid "Wireless network is enabled" -msgstr "Red inalámbrica conectada" +msgstr "Red WiFi habilitada" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 msgid "Write received DNS requests to syslog" -msgstr "Escribir las peticiones de DNS recibidas en el registro del sistema" +msgstr "Escribe las peticiones de DNS recibidas en el registro del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" -msgstr "" +msgstr "Escribe el registro del sistema al archivo" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 msgid "Yes" -msgstr "" +msgstr "Si" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" @@ -5821,62 +6005,54 @@ msgid "" "after a device reboot.<br /><strong>Warning: If you disable essential init " "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -"Gestione los scripts de inicio. Los cambios serán aplicados tras reiniciar " -"el equipo.<br /><strong>ADVERTENCIA: ¡Si desactiva scripts de inicio " -"esenciales como\"network\", su equipo puede no arrancar o quedar " -"inaccesible!.</strong>" +"Puede habilitar o deshabilitar los scripts de inicio instalados aquí. Los " +"cambios se aplicarán después de que se reinicie el dispositivo.<br /> " +"<strong>Advertencia: Si deshabilitas los scripts de inicio esenciales como " +"\"red\", ¡Tu dispositivo podría volverse inaccesible!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -"Debe activar JavaScript en su navegador o LuCI no funcionará correctamente." - -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" +"Debe habilitar JavaScript en su navegador o LuCI no funcionará correctamente." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" -msgstr "" +msgstr "Algoritmo de compresión ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" -msgstr "" +msgstr "Streams de compresión ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" -msgstr "" +msgstr "Configuración de ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" -msgstr "" +msgstr "Tamaño de ZRam" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 msgid "any" -msgstr "cualquiera" +msgstr "Cualquiera" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 msgid "auto" -msgstr "auto" +msgstr "Auto" #: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 msgid "baseT" @@ -5884,21 +6060,21 @@ msgstr "baseT" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "bridged" -msgstr "puenteado" +msgstr "Puenteado" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 #: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 msgid "create" -msgstr "" +msgstr "Crear" #: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 msgid "create:" -msgstr "crear:" +msgstr "Crear:" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 msgid "creates a bridge over specified interface(s)" -msgstr "crea un puente sobre la interfaz o interfaces asociadas" +msgstr "Crea un puente sobre la interfaz o interfaces asociadas" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 @@ -5923,10 +6099,10 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" -msgstr "desabilitar" +msgstr "Deshabilitar" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 @@ -5934,67 +6110,54 @@ msgstr "desabilitar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 msgid "disabled" -msgstr "" +msgstr "Deshabilitado" #: modules/luci-base/luasrc/view/lease_status.htm:17 #: modules/luci-base/luasrc/view/lease_status.htm:46 msgid "expired" -msgstr "expirado" +msgstr "Expirado" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 msgid "" "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>-leases will be stored" msgstr "" -"archivo en el que se guardarán las direcciones <abbr title=\"Dynamic Host " -"Configuration Protocol\">DHCP</abbr> cedidas" +"Archivo en el que se guardarán las direcciones <abbr title=\"Dynamic Host " +"Configuration Protocol\">DHCP</abbr> asignadas" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 msgid "forward" -msgstr "retransmisión" +msgstr "Reenviar" #: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 msgid "full-duplex" -msgstr "full dúplex" +msgstr "Full dúplex" #: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 msgid "half-duplex" -msgstr "half dúplex" +msgstr "Half dúplex" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 msgid "hexadecimal encoded value" -msgstr "" +msgstr "Valor codificado en hexadecimal" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 msgid "hidden" -msgstr "oculto" +msgstr "Oculto" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 msgid "hybrid mode" -msgstr "" +msgstr "Modo híbrido" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 msgid "if target is a network" -msgstr "si el destino es una red" +msgstr "Si el destino es una red" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 msgid "input" -msgstr "entrada" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "KB" +msgstr "Entrada" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 @@ -6004,7 +6167,7 @@ msgstr "KB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" -msgstr "KB/s" +msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 @@ -6014,329 +6177,341 @@ msgstr "KB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" -msgstr "Kbit/s" +msgstr "kbit/s" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 msgid "key between 8 and 63 characters" -msgstr "" +msgstr "clave entre 8 y 63 caracteres" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 msgid "key with either 5 or 13 characters" -msgstr "" +msgstr "clave con 5 o 13 caracteres" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" -msgstr "Archvo <abbr title=\"Domain Name System\">DNS</abbr> local" +msgstr "Archivo <abbr title=\"Domain Name System\">DNS</abbr> local" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" -msgstr "" +msgstr "Minutos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 msgid "mixed WPA/WPA2" -msgstr "" +msgstr "WPA/WPA2 mixto" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 msgid "no" -msgstr "no" +msgstr "No" #: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 msgid "no link" -msgstr "sin enlace" +msgstr "Sin enlace" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 msgid "non-empty value" -msgstr "" +msgstr "Valor no vacío" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 msgid "not present" -msgstr "" +msgstr "No presente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" -msgstr "parado" +msgstr "Apagado" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" -msgstr "activo" +msgstr "Encendido" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 msgid "" "one of:\n" " - %s" msgstr "" +"uno de:\n" +" - %s" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 msgid "open" -msgstr "abierto" +msgstr "Abierto" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 msgid "output" -msgstr "" +msgstr "Salida" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 msgid "overlay" -msgstr "" +msgstr "Overlay" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 msgid "positive decimal value" -msgstr "" +msgstr "Valor decimal positivo" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 msgid "positive integer value" -msgstr "" +msgstr "Valor entero positivo" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 msgid "random" -msgstr "" +msgstr "Aleatorio" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 msgid "relay mode" -msgstr "" +msgstr "Modo relé" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 msgid "routed" -msgstr "enrutado" +msgstr "Enrutado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" -msgstr "" +msgstr "Seg" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 msgid "server mode" -msgstr "" +msgstr "Modo servidor" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 msgid "stateful-only" -msgstr "" +msgstr "Con estado solamente" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 msgid "stateless" -msgstr "" +msgstr "Sin estado" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 msgid "stateless + stateful" -msgstr "" +msgstr "Sin estado + Con estado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" -msgstr "marcado" +msgstr "Etiquetado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" +msgstr "Unidades de tiempo (TUs / 1.024 ms) [1000-65535]" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 msgid "unique value" -msgstr "" +msgstr "Valor único" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 msgid "unknown" -msgstr "desconocido" +msgstr "Desconocido" #: modules/luci-base/luasrc/view/lease_status.htm:15 #: modules/luci-base/luasrc/view/lease_status.htm:44 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 msgid "unlimited" -msgstr "ilimitado" +msgstr "Ilimitado" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 #: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 msgid "unspecified" -msgstr "no especificado" +msgstr "No especificado" #: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 msgid "unspecified -or- create:" -msgstr "no especificado -o- crear:" +msgstr "No especificado -o- crear:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" -msgstr "desmarcado" +msgstr "Desetiquetado" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address" -msgstr "" +msgstr "Dirección IP válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address or prefix" -msgstr "" +msgstr "Dirección IP válida o prefijo" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 msgid "valid IPv4 CIDR" -msgstr "" +msgstr "IPv4 válido CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 msgid "valid IPv4 address" -msgstr "" +msgstr "Dirección IPv4 válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 msgid "valid IPv4 address or network" -msgstr "" +msgstr "Dirección IPv4 o red válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 msgid "valid IPv4 address:port" -msgstr "" +msgstr "Dirección IPv4 válida: puerto" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 msgid "valid IPv4 network" -msgstr "" +msgstr "Red IPv4 válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 msgid "valid IPv4 or IPv6 CIDR" -msgstr "" +msgstr "IPv4 válido o IPv6 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 msgid "valid IPv4 prefix value (0-32)" -msgstr "" +msgstr "Valor de prefijo IPv4 válido (0-32)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 msgid "valid IPv6 CIDR" -msgstr "" +msgstr "IPv6 válido CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address" -msgstr "" +msgstr "Dirección IPv6 válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address or prefix" -msgstr "" +msgstr "Dirección IPv6 válida o prefijo" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 msgid "valid IPv6 host id" -msgstr "" +msgstr "ID de host IPv6 válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 msgid "valid IPv6 network" -msgstr "" +msgstr "Red IPv6 válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 msgid "valid IPv6 prefix value (0-128)" -msgstr "" +msgstr "Valor de prefijo IPv6 válido (0-128)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 msgid "valid MAC address" -msgstr "" +msgstr "Dirección MAC válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 msgid "valid UCI identifier" -msgstr "" +msgstr "Identificador UCI válido" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 msgid "valid UCI identifier, hostname or IP address" -msgstr "" +msgstr "Identificador UCI válido, nombre de host o dirección IP" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 msgid "valid address:port" -msgstr "" +msgstr "Dirección válida: puerto" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 msgid "valid date (YYYY-MM-DD)" -msgstr "" +msgstr "Fecha válida (AAAA-MM-DD)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 msgid "valid decimal value" -msgstr "" +msgstr "Valor decimal válido" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 msgid "valid hexadecimal WEP key" -msgstr "" +msgstr "clave WEP hexadecimal válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 msgid "valid hexadecimal WPA key" -msgstr "" +msgstr "clave hexadecimal WPA válida" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 msgid "valid host:port" -msgstr "" +msgstr "host válido: puerto" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 msgid "valid hostname" -msgstr "" +msgstr "Nombre de host válido" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 msgid "valid hostname or IP address" -msgstr "" +msgstr "Nombre de host válido o dirección IP" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 msgid "valid integer value" -msgstr "" +msgstr "Valor entero valido" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 msgid "valid network in address/netmask notation" -msgstr "" +msgstr "Red válida en notación de dirección/máscara de red" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" +msgstr "Dígito de teléfono válido (0-9, \"*\", \"#\", \"!\" o \".\")" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 msgid "valid port or port range (port1-port2)" -msgstr "" +msgstr "puerto válido o rango de puertos (port1-port2)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 msgid "valid port value" -msgstr "" +msgstr "Valor de puerto válido" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 msgid "valid time (HH:MM:SS)" -msgstr "" +msgstr "Tiempo válido (HH: MM: SS)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 msgid "value between %d and %d characters" -msgstr "" +msgstr "Valor entre %d y %d caracteres" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 msgid "value between %f and %f" -msgstr "" +msgstr "Valor entre %f y %f" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 msgid "value greater or equal to %f" -msgstr "" +msgstr "Valor mayor o igual a %f" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 msgid "value smaller or equal to %f" -msgstr "" +msgstr "Valor menor o igual a %f" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 msgid "value with at least %d characters" -msgstr "" +msgstr "Valor con al menos %d caracteres" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 msgid "value with at most %d characters" -msgstr "" +msgstr "Valor con un máximo de %d caracteres" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 msgid "yes" -msgstr "sí" +msgstr "Si" #: modules/luci-base/luasrc/view/cbi/delegator.htm:20 msgid "« Back" msgstr "« Volver" #~ msgid "" +#~ "Your Internet Explorer is too old to display this page correctly. Please " +#~ "upgrade it to at least version 7 or use another browser like Firefox, " +#~ "Opera or Safari." +#~ msgstr "" +#~ "Su Internet Explorer es demasiado viejo para mostrar esta página " +#~ "correctamente. Actualícelo al menos a la versión 7 o use otro navegador " +#~ "como Firefox, Opera o Safari." + +#~ msgid "kB" +#~ msgstr "kB" + +#~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." #~ msgstr "Claves públicas SSH. Ponga una por línea." diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index 3c3fa7d305..e32fe8dc08 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(pas d'interface connectée)" msgid "-- Additional Field --" msgstr "-- Champ Supplémentaire --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Choisir --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- autre --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Charge sur 1 minute :" @@ -98,7 +102,7 @@ msgstr "Charge sur 1 minute :" msgid "15 Minute Load:" msgstr "Charge sur 15 minutes :" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Charge sur 5 minutes :" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "Les serveurs <abbr title=\"Domain Name System\">DNS</abbr> seront<br/" ">interrogés dans l'ordre du fichier de résolution" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -193,7 +197,7 @@ msgstr "Passerelle <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -305,7 +309,7 @@ msgstr "" msgid "ATM device number" msgstr "Numéro de périphérique ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -313,8 +317,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Concentrateur d'accès" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Point d'accès" @@ -344,7 +348,7 @@ msgstr "Bails DHCP actifs" msgid "Active DHCPv6 Leases" msgstr "Bails DHCPv6 actifs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-hoc" @@ -352,8 +356,8 @@ msgstr "Ad-hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -391,8 +395,8 @@ msgstr "Fichiers hosts supplémetaires" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adresse" @@ -401,30 +405,34 @@ msgid "Address to access local relay bridge" msgstr "Adresse pour accéder au pont-relais local" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Paramètres avancés" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerte" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -453,21 +461,21 @@ msgstr "" "Autoriser l'authentification <abbr title=\"Secure Shell\">SSH</abbr> par mot " "de passe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Autoriser tout sauf ce qui est listé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Autoriser seulement ce qui est listé" @@ -513,14 +521,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -592,7 +600,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -604,17 +612,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antenne 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antenne 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configuration de l'antenne" @@ -640,7 +648,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Affecte les interfaces…" @@ -655,7 +663,7 @@ msgstr "" msgid "Associated Stations" msgstr "Équipements associés" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -664,7 +672,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Authentification" @@ -682,12 +690,11 @@ msgstr "Autorisation requise" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Rafraîchissement automatique" @@ -759,7 +766,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -789,7 +796,7 @@ msgstr "Retour aux résultats de la recherche" msgid "Backup" msgstr "Sauvegarder" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Sauvegarde / Mise à jour du micrologiciel" @@ -801,12 +808,12 @@ msgstr "Liste des fichiers de sauvegarde" msgid "Bad address specified!" msgstr "Adresse spécifiée incorrecte!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -836,7 +843,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Débit" @@ -844,7 +851,7 @@ msgstr "Débit" msgid "Bogus NX Domain Override" msgstr "Contourne les « NX Domain » bogués" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Pont" @@ -928,7 +935,7 @@ msgstr "Changements appliqués." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Change le mot de passe administrateur pour accéder à l'équipement" @@ -936,12 +943,12 @@ msgstr "Change le mot de passe administrateur pour accéder à l'équipement" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canal" @@ -984,7 +991,7 @@ msgstr "" "zone associée, ou remplissez le champ <em>créer</em> pour définir une " "nouvelle zone et y inclure cette interface." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -993,7 +1000,7 @@ msgstr "" "sans-fil ou remplissez le <em>créer</em> champ pour définir un nouveau " "réseau. " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Code de chiffrement" @@ -1015,8 +1022,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Client" @@ -1060,7 +1067,7 @@ msgstr "Fermer la liste…" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Récupération de données..." @@ -1076,7 +1083,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuration commune" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1108,7 +1115,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmation" @@ -1117,12 +1124,12 @@ msgid "Connect" msgstr "Se connecter" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Connecté" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Limite de connexion" @@ -1145,9 +1152,9 @@ msgstr "" msgid "Country" msgstr "Pays" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Code pays" @@ -1172,11 +1179,11 @@ msgstr "Créer une interface" msgid "Create a bridge over multiple interfaces" msgstr "Créer un pont par dessus plusieurs interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critique" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Niveau de journalisation de Cron" @@ -1209,15 +1216,15 @@ msgstr "" "Personnaliser le comportement des <abbr title=\"Diode Électro-Luminescente" "\">DEL</abbr>s si possible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1231,7 +1238,7 @@ msgstr "Serveur DHCP" msgid "DHCP and DNS" msgstr "DHCP et DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "client DHCP" @@ -1251,16 +1258,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1293,7 +1300,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1301,7 +1308,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1309,18 +1316,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Deboguage" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "%d par défaut" @@ -1360,7 +1367,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Effacer" @@ -1374,7 +1381,7 @@ msgstr "" msgid "Delete this network" msgstr "Supprimer ce réseau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1390,8 +1397,8 @@ msgstr "Destination" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1446,7 +1453,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1464,11 +1471,11 @@ msgstr "" msgid "Disabled" msgstr "Désactivé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1491,16 +1498,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optimisation de la distance" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distance au membre du réseau le plus éloigné, en mètres." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversité" @@ -1610,7 +1617,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Méthode EAP" @@ -1635,7 +1642,7 @@ msgstr "Éditer cette interface" msgid "Edit this network" msgstr "Éditer ce réseau" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Urgence" @@ -1670,11 +1677,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Activer la négociation IPv6 sur le lien PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Activer la circulation de très grandes trames (Jumbo)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Activer client NTP" @@ -1686,27 +1693,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Activer le serveur TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Acviter la gestion des VLANs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Activer l'apprentissage et la péremption" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1740,7 +1747,7 @@ msgstr "Activé" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1759,9 +1766,9 @@ msgstr "Mode encapsulé" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Chiffrement" @@ -1781,28 +1788,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Effacement…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Erreur" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Module Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Commutateur Ethernet" @@ -1818,7 +1825,7 @@ msgstr "Étendre le nom d'hôte" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Expire" @@ -1834,23 +1841,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Serveur distant de journaux système" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port du serveur distant de journaux système" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1858,15 +1865,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1958,7 +1965,7 @@ msgstr "Écrire l'image du nouveau micrologiciel" msgid "Flash operations" msgstr "Opérations d'écriture" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Écriture…" @@ -1972,11 +1979,11 @@ msgstr "" msgid "Force" msgstr "Forcer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Forcer CCMP (AES)" @@ -1984,11 +1991,11 @@ msgstr "Forcer CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Force le DHCP sur ce réseau même si un autre serveur est détecté." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Forcer TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Forcer TKIP et CCMP (AES)" @@ -2012,7 +2019,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Transmettre le trafic DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2020,7 +2027,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Transmettre le trafic de diffusion" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2028,12 +2035,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Mode de transmission" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Seuil de fragmentation" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Rafale de trames" @@ -2050,7 +2057,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "Ghz" @@ -2059,8 +2066,8 @@ msgstr "Ghz" msgid "GPRS only" msgstr "seulement GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Passerelle" @@ -2083,7 +2090,7 @@ msgstr "Paramètres généraux" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Configuration générale" @@ -2091,7 +2098,7 @@ msgstr "Configuration générale" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2120,7 +2127,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Aller à la configuration du mot de passe…" @@ -2145,7 +2152,7 @@ msgstr "Mot de passe HE.net" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2153,7 +2160,7 @@ msgstr "" msgid "Hang Up" msgstr "Signal (HUP)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2169,9 +2176,9 @@ msgstr "" "Ici, vous pouvez configurer les aspects basiques de votre routeur comme son " "nom ou son fuseau horaire." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Cacher le ESSID" @@ -2205,8 +2212,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Nom d'hôte" @@ -2267,7 +2273,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Pare-feu IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2359,7 +2365,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2426,7 +2432,7 @@ msgstr "IPv6 sur IPv4 (6ème)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 sur IPv4 (6 vers 4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identité" @@ -2540,10 +2546,14 @@ msgstr "Délai d'inactivité" msgid "Inbound:" msgstr "Intérieur :" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2564,7 +2574,7 @@ msgstr "" msgid "Install package %q" msgstr "Installer le paquet %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Installation des extensions de protocole…" @@ -2582,7 +2592,7 @@ msgstr "Interface" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Configuration de l'interface" @@ -2594,12 +2604,12 @@ msgstr "Vue d'ensemble de l'interface" msgid "Interface is reconnecting..." msgstr "L'interface se reconnecte…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "L'interface n'est pas présente ou pas encore connectée." @@ -2618,16 +2628,16 @@ msgid "Internal Server Error" msgstr "Erreur Serveur Interne" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Erreur : donnée entrée invalide" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "Identifiant VLAN invalide !Seuls les IDs entre %d et %d sont autorisés." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" "Identifiant VLAN donné invalide ! Seuls les identifiants uniques sont " @@ -2637,7 +2647,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez !" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2652,10 +2662,9 @@ msgstr "" "image !" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Nécessite un Script Java !" @@ -2684,18 +2693,22 @@ msgstr "Journal du noyau" msgid "Kernel Version" msgstr "Version du noyau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Clé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Clé n° %d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Tuer" @@ -2735,7 +2748,7 @@ msgstr "LLC" msgid "Label" msgstr "Étiquette" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Langue" @@ -2743,7 +2756,7 @@ msgstr "Langue" msgid "Language and Style" msgstr "Langue et apparence" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2794,19 +2807,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2822,7 +2835,7 @@ msgstr "" "Liste des serveurs auquels sont transmis les requêtes <abbr title=\"Domain " "Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2831,7 +2844,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2870,7 +2883,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Port d'écoute des requêtes DNS entrantes" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Charger" @@ -2919,7 +2931,7 @@ msgid "Local Startup" msgstr "Démarrage local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Heure Locale" @@ -2962,7 +2974,7 @@ msgstr "Localiser les requêtes" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Niveau de journalisation" @@ -2982,7 +2994,7 @@ msgstr "Connexion" msgid "Logout" msgstr "Déconnexion" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -3000,24 +3012,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Adresse MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtrage par adresses MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtrage par adresses MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Liste des adresses MAC" @@ -3063,11 +3075,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3101,12 +3113,16 @@ msgstr "Nombre maximum d'adresses allouées." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Mémoire" @@ -3115,7 +3131,7 @@ msgstr "Mémoire" msgid "Memory usage (%)" msgstr "Utilisation Mémoire (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3127,11 +3143,11 @@ msgstr "" msgid "Metric" msgstr "Metrique" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3139,16 +3155,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Extention de protocole manquante pour le proto %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mode" @@ -3176,12 +3192,16 @@ msgstr "" msgid "Modem init timeout" msgstr "Délai max. d'initialisation du modem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Montage" @@ -3191,7 +3211,7 @@ msgstr "Montage" msgid "Mount Point" msgstr "Point de montage" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3241,7 +3261,7 @@ msgstr "Descendre" msgid "Move up" msgstr "Monter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3265,7 +3285,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Serveurs NTP candidats" @@ -3283,18 +3303,17 @@ msgstr "Nom de la nouvelle interface" msgid "Name of the new network" msgstr "Nom du nouveau réseau" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Masque de réseau" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3318,7 +3337,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Réseau sans interfaces." @@ -3343,7 +3362,7 @@ msgid "No files found" msgstr "Aucun fichier trouvé" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Information indisponible" @@ -3365,10 +3384,9 @@ msgid "No network name specified" msgstr "Aucun nom de réseau donné" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Pas de mot de passe positionné !" @@ -3396,7 +3414,7 @@ msgstr "Aucune zone attribuée" msgid "Noise" msgstr "Bruit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3404,7 +3422,7 @@ msgstr "" msgid "Noise:" msgstr "Bruit :" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3417,7 +3435,7 @@ msgstr "" msgid "None" msgstr "Vide" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3430,16 +3448,20 @@ msgstr "Pas trouvé" msgid "Not associated" msgstr "Pas associé" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Non connecté" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Note" @@ -3451,7 +3473,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3531,7 +3553,7 @@ msgstr "Option modifiée" msgid "Option removed" msgstr "Option retirée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3638,7 +3660,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3702,7 +3724,7 @@ msgstr "code PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3755,8 +3777,8 @@ msgid "Part of zone %q" msgstr "Fait partie de la zone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3766,14 +3788,21 @@ msgstr "Mot de passe" msgid "Password authentication" msgstr "Authentification par mot de passe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Mot de passe de la clé privée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3782,27 +3811,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Chemin de la CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Chemin du certificat-client" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Chemin de la clé privée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3880,6 +3909,14 @@ msgstr "Saisissez votre nom d'utilisateur et mot de passe." msgid "Policy" msgstr "Politique" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3888,11 +3925,11 @@ msgstr "Port" msgid "Port status:" msgstr "Statut du port :" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3904,7 +3941,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3929,8 +3966,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Empêche la communication directe entre clients" @@ -3947,7 +3984,7 @@ msgstr "Continuer" msgid "Processes" msgstr "Processus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3957,8 +3994,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocole" @@ -3971,7 +4008,7 @@ msgstr "Protocole de la nouvelle interface" msgid "Protocol support is not installed" msgstr "La gestion du protocole n'est pas installée" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Fournir serveur NTP" @@ -3979,7 +4016,7 @@ msgstr "Fournir serveur NTP" msgid "Provide new network" msgstr "Donner un nouveau réseau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4004,7 +4041,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Qualitée" @@ -4014,11 +4051,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4026,8 +4063,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Seuil RTS/CTS" @@ -4041,27 +4082,27 @@ msgstr "Reçu" msgid "RX Rate" msgstr "Débit en réception" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Port de la comptabilisation Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Secret de la comptabilisation Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Serveur de la comptabilisation Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Port de l'authentification Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Secret de l'authentification Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Serveur de l'authentification Radius" @@ -4119,7 +4160,7 @@ msgstr "Trafic temps-réel" msgid "Realtime Wireless" msgstr "Qualité de réception actuelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4127,7 +4168,7 @@ msgstr "" msgid "Rebind protection" msgstr "Protection contre l'attaque « rebind »" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Redémarrage" @@ -4145,8 +4186,8 @@ msgstr "Redémarrage du système d'exploitation de votre équipement" msgid "Receive" msgstr "Reçoit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antenne émettrice" @@ -4213,7 +4254,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4236,10 +4277,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4294,8 +4335,8 @@ msgid "Restore backup" msgstr "Restaurer une sauvegarde" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Montrer/cacher le mot de passe" @@ -4342,8 +4383,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Mot de passe du routeur" @@ -4382,7 +4423,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Accès SSH" @@ -4399,7 +4440,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Clés SSH" @@ -4407,7 +4448,7 @@ msgstr "Clés SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4418,7 +4459,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Sauvegarder" @@ -4447,7 +4488,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tâches Régulières" @@ -4484,7 +4525,7 @@ msgstr "" "Envoyer des demandes d'échos LCP à intervalles donnés, en secondes ; utile " "uniqument associé à un seuil d'erreurs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Isoler les clients" @@ -4519,7 +4560,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configurer la synchronisation de l'heure" @@ -4536,7 +4577,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Configurer le serveur DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4544,7 +4585,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4567,11 +4608,11 @@ msgstr "Arrêter cet interface" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4587,7 +4628,7 @@ msgstr "Taille" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4596,21 +4637,19 @@ msgstr "" msgid "Skip" msgstr "Passer au suivant" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Skip to content" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Skip to navigation" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Tranche de temps" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4703,7 +4742,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Démarrage" @@ -4723,7 +4762,7 @@ msgstr "Baux Statiques" msgid "Static Routes" msgstr "Routes statiques" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Adresse statique" @@ -4738,7 +4777,7 @@ msgstr "" "interfaces sans configuration dynamique où l'on fournit un bail aux seuls " "hôtes configurés." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4758,6 +4797,10 @@ msgstr "Arrêter" msgid "Strict order" msgstr "Ordre stricte" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Soumettre" @@ -4783,15 +4826,15 @@ msgstr "Élement de partition d'échange" msgid "Switch" msgstr "Commutateur" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Commutateur %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Commutateur %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4800,7 +4843,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4816,8 +4859,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Synchro avec le navigateur" @@ -4842,7 +4889,7 @@ msgstr "Journal système" msgid "System Properties" msgstr "Propriétés système" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Taille du tampon du journal système" @@ -5062,7 +5109,7 @@ msgstr "Le protocole sélectionné nécessite l'attribution d'un périphérique" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5070,7 +5117,7 @@ msgstr "" "Le système est en train d'effacer la partition de configuration et " "redémarrera tout seul une fois cela fini." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5095,7 +5142,7 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Apparence" @@ -5125,10 +5172,9 @@ msgstr "" "périphérique réseau dans l'onglet \"Paramètres du matériel\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5223,24 +5269,24 @@ msgstr "" "actives." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Cette section ne contient pas encore de valeur" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synchronisation de l'heure" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "La synchronisation de l'heure n'est pas encore configurée." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuseau horaire" @@ -5283,7 +5329,7 @@ msgstr "Trafic" msgid "Transfer" msgstr "Transfert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Débit d'émission" @@ -5291,14 +5337,14 @@ msgstr "Débit d'émission" msgid "Transmit" msgstr "Transmet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Puissance d'émission" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antenne émettrice" @@ -5314,7 +5360,7 @@ msgstr "Mode de déclenchement" msgid "Tunnel ID" msgstr "ID du tunnel" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interface du tunnel" @@ -5329,7 +5375,7 @@ msgid "Tx-Power" msgstr "Puissance d'émission" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Type" @@ -5388,19 +5434,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Inconnu" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "non-géré" @@ -5414,7 +5460,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5429,7 +5474,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Type de protocole non pris en charge." @@ -5483,8 +5528,8 @@ msgstr "Utiliser la passerelle DHCP" msgid "Use DNS servers advertised by peer" msgstr "Utiliser les serveurs DNS publiés par le distant" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Utiliser les codes-pays ISO/IEC 3166 alpha2." @@ -5591,11 +5636,11 @@ msgstr "" msgid "Used" msgstr "Utilisé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Clé utilisée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5623,11 +5668,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs sur %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs sur %q (%s)" @@ -5673,18 +5718,18 @@ msgstr "Vérifier" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Système ouvert WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Clé partagée WEP" @@ -5692,8 +5737,8 @@ msgstr "Clé partagée WEP" msgid "WEP passphrase" msgstr "Mot de passe WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Mode WMM" @@ -5701,9 +5746,9 @@ msgstr "Mode WMM" msgid "WPA passphrase" msgstr "Mot de passe WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5727,8 +5772,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Attention" @@ -5736,7 +5781,11 @@ msgstr "Attention" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5763,7 +5812,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5777,12 +5826,12 @@ msgstr "" msgid "Wireless" msgstr "Sans-fil" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Module Wi-Fi" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Réseau sans-fil" @@ -5790,20 +5839,20 @@ msgstr "Réseau sans-fil" msgid "Wireless Overview" msgstr "Présentation des réseaux sans-fil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Sécurité des réseaux sans-fil" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Le Wi-Fi est désactivé" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Le Wi-Fi est non associé" @@ -5823,7 +5872,7 @@ msgstr "Le réseau Wi-Fi est activé" msgid "Write received DNS requests to syslog" msgstr "Écrire les requêtes DNS reçues dans syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5843,36 +5892,28 @@ msgstr "" "\", votre équipement pourrait ne plus être accessible !</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Vous devez activer JavaScript dans votre navigateur pour que LuCI fonctionne " "correctement." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5883,11 +5924,11 @@ msgstr "n'importe lequel" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5940,8 +5981,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "désactiver" @@ -5998,19 +6039,6 @@ msgstr "si la destination est un réseau" msgid "input" msgstr "entrée" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6043,7 +6071,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "fichier de résolution local" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -6071,20 +6099,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "Arrêté" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "Actif" @@ -6128,8 +6154,8 @@ msgstr "" msgid "routed" msgstr "routé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6150,11 +6176,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "marqué" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6181,7 +6207,7 @@ msgstr "non précisé" msgid "unspecified -or- create:" msgstr "non précisé -ou- créer :" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "non marqué" @@ -6351,6 +6377,9 @@ msgstr "oui" msgid "« Back" msgstr "« Retour" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index 37c552e7d4..56c13297b6 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -23,7 +23,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -55,16 +55,16 @@ msgstr "(אין ממשק מצורף)" msgid "-- Additional Field --" msgstr "-- שדה נוסף --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- נא לבחור --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- מותאם אישית --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "עומס במשך דקה:" @@ -96,7 +100,7 @@ msgstr "עומס במשך דקה:" msgid "15 Minute Load:" msgstr "עומס במשך רבע שעה:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "עומס במשך 5 דקות:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -154,7 +158,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -188,7 +192,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "הגדרות <abbr title=\"Light Emitting Diode\">LED</abbr>" @@ -292,7 +296,7 @@ msgstr "" msgid "ATM device number" msgstr "מס' התקן של ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -301,8 +305,8 @@ msgstr "" msgid "Access Concentrator" msgstr "מרכז גישות" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "נקודת גישה" @@ -333,7 +337,7 @@ msgid "Active DHCPv6 Leases" msgstr "הרשאות DHCPv6 פעילות" # צריך אימות של מישהו שמבין יותר במושגים האלו אם צריך בכלל לתרגם את זה או להשאיר כמו שזה -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 #, fuzzy msgid "Ad-Hoc" @@ -342,8 +346,8 @@ msgstr "אד-הוק" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -381,8 +385,8 @@ msgstr "קבצי מארח נוספים" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "כתובת" @@ -391,32 +395,36 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 #, fuzzy msgid "Administration" msgstr "מנהלה" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "הגדרות מתקדמות" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 #, fuzzy msgid "Alert" msgstr "אזעקה" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -443,22 +451,22 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 #, fuzzy msgid "Allow all except listed" msgstr "אפשר הכל חוץ מהרשומים" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "אפשר רשומים בלבד" @@ -500,14 +508,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -579,7 +587,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -591,17 +599,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "אנטנה 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "אנטנה 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "הגדרות אנטנה" @@ -629,7 +637,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "הקצה ממשקים" @@ -644,7 +652,7 @@ msgstr "" msgid "Associated Stations" msgstr "תחנות קשורות" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -653,7 +661,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "אימות" @@ -671,12 +679,11 @@ msgstr "דרוש אימות" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "רענון אוטומטי" @@ -748,7 +755,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -778,7 +785,7 @@ msgstr "חזרה לתוצאות סריקה" msgid "Backup" msgstr "גיבוי" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "גיבוי / קושחת פלאש" @@ -790,12 +797,12 @@ msgstr "גיבוי רשימת קבצים" msgid "Bad address specified!" msgstr "פורטה כתובת לא תקינה" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -825,7 +832,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "" @@ -833,7 +840,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "גשר" @@ -918,7 +925,7 @@ msgstr "השינויים הוחלו" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "משנה את סיסמת המנהל לגישה למכשיר" @@ -926,12 +933,12 @@ msgstr "משנה את סיסמת המנהל לגישה למכשיר" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "ערוץ" @@ -970,13 +977,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -996,8 +1003,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "" @@ -1039,7 +1046,7 @@ msgstr "סגור רשימה..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "אוסף מידע..." @@ -1055,7 +1062,7 @@ msgstr "" msgid "Common Configuration" msgstr "הגדרות נפוצות" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1087,7 +1094,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "אישור" @@ -1096,12 +1103,12 @@ msgid "Connect" msgstr "התחבר" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "מחובר" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "מגבלת חיבורים" @@ -1124,9 +1131,9 @@ msgstr "" msgid "Country" msgstr "מדינה" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "קוד מדינה" @@ -1151,11 +1158,11 @@ msgstr "צור ממשק" msgid "Create a bridge over multiple interfaces" msgstr "צור גשר בין מספר ממשקים" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "קריטי" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1188,15 +1195,15 @@ msgstr "" "מתאים את הגדרות ה-<abbr title=\"Light Emitting Diode\">LED</abbr>-ים במכשיר " "(אם אפשרי)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1210,7 +1217,7 @@ msgstr "שרת DHCP" msgid "DHCP and DNS" msgstr "DHCP ו- DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "לקוח DHCP" @@ -1230,16 +1237,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1272,7 +1279,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1280,7 +1287,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1288,18 +1295,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1338,7 +1345,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "למחוק" @@ -1352,7 +1359,7 @@ msgstr "" msgid "Delete this network" msgstr "מחק רשת זו" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1368,8 +1375,8 @@ msgstr "יעד" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1422,7 +1429,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1440,11 +1447,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1467,16 +1474,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "מרחק לנק' הרשת הרחוקה ביותר במטרים" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "גיוון" @@ -1572,7 +1579,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "" @@ -1597,7 +1604,7 @@ msgstr "ערוך ממשק זה" msgid "Edit this network" msgstr "ערוך רשת זו" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "מצב חרום" @@ -1632,11 +1639,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1648,27 +1655,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "אפשר שרת TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "אפשר תפקוד VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "אפשר למידה והזדקנות" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1702,7 +1709,7 @@ msgstr "אפשר" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1719,9 +1726,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "הצפנה" @@ -1741,28 +1748,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "מוחק..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "שגיאה" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "" @@ -1778,7 +1785,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "" @@ -1791,23 +1798,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1815,15 +1822,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1915,7 +1922,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1929,11 +1936,11 @@ msgstr "" msgid "Force" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1941,11 +1948,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1969,7 +1976,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1977,7 +1984,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1985,12 +1992,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -2007,7 +2014,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2016,8 +2023,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2040,7 +2047,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2048,7 +2055,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2075,7 +2082,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2100,7 +2107,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2108,7 +2115,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2122,9 +2129,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2158,8 +2165,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "" @@ -2220,7 +2226,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2312,7 +2318,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2379,7 +2385,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "" @@ -2485,10 +2491,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2509,7 +2519,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2527,7 +2537,7 @@ msgstr "" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2539,12 +2549,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2563,15 +2573,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חוקיים." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2579,7 +2589,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2590,10 +2600,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2622,18 +2631,22 @@ msgstr "" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "" @@ -2673,7 +2686,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2681,7 +2694,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2732,19 +2745,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2758,7 +2771,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2767,7 +2780,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2805,7 +2818,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "עומס" @@ -2854,7 +2866,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "" @@ -2890,7 +2902,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2910,7 +2922,7 @@ msgstr "" msgid "Logout" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2926,24 +2938,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "" @@ -2989,11 +3001,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3027,12 +3039,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "" @@ -3041,7 +3057,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3053,11 +3069,11 @@ msgstr "" msgid "Metric" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3065,16 +3081,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "" @@ -3102,12 +3118,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3117,7 +3137,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3165,7 +3185,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "" @@ -3189,7 +3209,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3207,18 +3227,17 @@ msgstr "" msgid "Name of the new network" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3242,7 +3261,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3267,7 +3286,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3289,10 +3308,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "לא הוגדרה סיסמה!" @@ -3320,7 +3338,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3328,7 +3346,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3341,7 +3359,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3354,16 +3372,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "לא מחובר" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3375,7 +3397,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3451,7 +3473,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3558,7 +3580,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3620,7 +3642,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3673,8 +3695,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3684,14 +3706,21 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3700,27 +3729,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "נתיב למפתח הפרטי" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3798,6 +3827,14 @@ msgstr "אנא הזן את שם המשתמש והסיסמה שלך:" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3806,11 +3843,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3822,7 +3859,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3845,8 +3882,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "" @@ -3863,7 +3900,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3873,8 +3910,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "" @@ -3887,7 +3924,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3895,7 +3932,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3920,7 +3957,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3930,11 +3967,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3942,8 +3979,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3957,27 +3998,27 @@ msgstr "" msgid "RX Rate" msgstr "קצב קליטה" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4031,7 +4072,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4039,7 +4080,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4057,8 +4098,8 @@ msgstr "" msgid "Receive" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "" @@ -4125,7 +4166,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4148,10 +4189,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4206,8 +4247,8 @@ msgid "Restore backup" msgstr "" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4254,8 +4295,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4291,7 +4332,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4308,7 +4349,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4316,7 +4357,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "" @@ -4327,7 +4368,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "" @@ -4356,7 +4397,7 @@ msgstr "" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "" @@ -4391,7 +4432,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "" @@ -4426,7 +4467,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "סנכרון זמן" @@ -4443,7 +4484,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4451,7 +4492,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4474,11 +4515,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4494,7 +4535,7 @@ msgstr "" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4503,21 +4544,19 @@ msgstr "" msgid "Skip" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "דלג אל התוכן" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "דלג אל הניווט" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4540,7 +4579,7 @@ msgid "" "instructions." msgstr "" "סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה " -"אל ה-wiki של OpenWrt/LEDE עבור הוראות ספציפיות למכשיר שלך." +"אל ה-wiki של OpenWrt עבור הוראות ספציפיות למכשיר שלך." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 @@ -4606,7 +4645,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "אתחול" @@ -4626,7 +4665,7 @@ msgstr "הקצאות סטטיות" msgid "Static Routes" msgstr "ניתובים סטטיים" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "כתובת סטטית" @@ -4640,7 +4679,7 @@ msgstr "" "הן נחוצות גם עבור הגדרות ממשק שאינן דינאמיות, בהן מטופלות רק ישויות בעלות " "הקצאה מתאימה." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4660,6 +4699,10 @@ msgstr "עצור" msgid "Strict order" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "שלח" @@ -4685,15 +4728,15 @@ msgstr "" msgid "Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4702,7 +4745,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4718,8 +4761,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4744,7 +4791,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4934,13 +4981,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4958,7 +5005,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "עיצוב" @@ -4986,10 +5033,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5066,24 +5112,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "דף זה מציג סקירה של חיבורי הרשת הפעילים כרגע." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "אזור זה עדיין לא מכיל ערכים." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "סנכרון זמן" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "סנכרון זמן עדיין לא הוגדר." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "אזור זמן" @@ -5123,7 +5169,7 @@ msgstr "תעבורה" msgid "Transfer" msgstr "העברה" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "קצב שידור" @@ -5131,14 +5177,14 @@ msgstr "קצב שידור" msgid "Transmit" msgstr "שידור" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "עוצמת שידור" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "אנטנת שידור" @@ -5154,7 +5200,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5169,7 +5215,7 @@ msgid "Tx-Power" msgstr "עוצמת שידור" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" @@ -5228,19 +5274,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5254,7 +5300,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5269,7 +5314,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5319,8 +5364,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5423,11 +5468,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5455,11 +5500,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5505,18 +5550,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5524,8 +5569,8 @@ msgstr "" msgid "WEP passphrase" msgstr "סיסמת WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "" @@ -5533,9 +5578,9 @@ msgstr "" msgid "WPA passphrase" msgstr "סיסמת WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5557,8 +5602,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "אזהרה" @@ -5566,7 +5611,11 @@ msgstr "אזהרה" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5593,7 +5642,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5607,12 +5656,12 @@ msgstr "" msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "" @@ -5620,20 +5669,20 @@ msgstr "" msgid "Wireless Overview" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5653,7 +5702,7 @@ msgstr "רשת אלחוטית מאופשרת" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5669,34 +5718,26 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "אתה חייב להפעיל את JavaScript בדפדפן שלך; אחרת, LuCI לא יפעל כראוי." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5707,11 +5748,11 @@ msgstr "כלשהו" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5764,8 +5805,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "בטל" @@ -5822,19 +5863,6 @@ msgstr "אם היעד הוא רשת" msgid "input" msgstr "קלט" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5867,7 +5895,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5895,20 +5923,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "כבוי" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "פועל" @@ -5952,8 +5978,8 @@ msgstr "" msgid "routed" msgstr "מנותב" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5974,11 +6000,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "מתויג" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6005,7 +6031,7 @@ msgstr "לא מוגדר" msgid "unspecified -or- create:" msgstr "לא מוגדר -או- יצר" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "לא מתויג" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 044962498f..d71cc49e1a 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -23,7 +23,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -55,16 +55,16 @@ msgstr "(nincs csatalkoztatott interfész)" msgid "-- Additional Field --" msgstr "-- További mező --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Kérem válasszon --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- egyéni --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Terhelés (utolsó 1 perc):" @@ -96,7 +100,7 @@ msgstr "Terhelés (utolsó 1 perc):" msgid "15 Minute Load:" msgstr "Terhelés (utolsó 15 perc):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Terhelés (utolsó 5 perc):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> szerverek a resolv fájl " "sorrendjében" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -191,7 +195,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-útválasztó" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> konfiguráció" @@ -298,7 +302,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM eszközszám" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -306,8 +310,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Elérési központ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Hozzáférési pont" @@ -339,7 +343,7 @@ msgstr "Aktív DHCP bérletek" msgid "Active DHCPv6 Leases" msgstr "Aktív DHCPv6 bérletek" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -347,8 +351,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -386,8 +390,8 @@ msgstr "További 'hosts' fájlok" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Cím" @@ -396,30 +400,34 @@ msgid "Address to access local relay bridge" msgstr "Helyi közvetítő híd elérési címe" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Adminisztráció" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Haladó beállítások" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Riasztás" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -447,21 +455,21 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "<abbr title=\"Secure Shell\">SSH</abbr> jelszó hitelesítés engedélyezése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Összes engedélyezése a felsoroltakon kívül" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Csak a felsoroltak engedélyezése" @@ -506,14 +514,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -585,7 +593,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -597,17 +605,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "1-es antenna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "2-es antenna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Antenna beállítások" @@ -633,7 +641,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Interfészek összekapcsolása..." @@ -648,7 +656,7 @@ msgstr "" msgid "Associated Stations" msgstr "Kapcsolódó kliensek" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -657,7 +665,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Hitelesítés" @@ -675,12 +683,11 @@ msgstr "Hitelesítés szükséges" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatikus frissítés" @@ -752,7 +759,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -782,7 +789,7 @@ msgstr "Vissza a felderítési eredményekhez" msgid "Backup" msgstr "Mentés" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Mentés / Firmware frissítés" @@ -794,12 +801,12 @@ msgstr "Mentési fájl lista" msgid "Bad address specified!" msgstr "Hibás címet adott meg!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -830,7 +837,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitráta" @@ -838,7 +845,7 @@ msgstr "Bitráta" msgid "Bogus NX Domain Override" msgstr "Hamis NX tartomány felülbírálása" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Híd" @@ -922,7 +929,7 @@ msgstr "A módosítások alkalmazva." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "" "Itt módosíthatja az eszköz eléréséhez szükséges adminisztrátori jelszót" @@ -931,12 +938,12 @@ msgstr "" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Csatorna" @@ -979,7 +986,7 @@ msgstr "" "zónából történő eltávolításához, vagy töltse ki az <em>új</em> mezőt új zóna " "megadásához és csatlakoztassa az interfészt ahhoz." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -988,7 +995,7 @@ msgstr "" "vezetéknélküli interfészhez, vagy töltse ki az <em>új</em> mezőt egy új " "hálózat definiálásához." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Titkosító" @@ -1010,8 +1017,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Ügyfél" @@ -1055,7 +1062,7 @@ msgstr "Lista bezárása..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Adatok összegyűjtése..." @@ -1071,7 +1078,7 @@ msgstr "" msgid "Common Configuration" msgstr "Álatános beállítás" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1103,7 +1110,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Megerősítés" @@ -1112,12 +1119,12 @@ msgid "Connect" msgstr "Kapcsolódás" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Kapcsolódva" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Kapcsolati korlát" @@ -1140,9 +1147,9 @@ msgstr "" msgid "Country" msgstr "Ország" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Országkód" @@ -1167,11 +1174,11 @@ msgstr "Új interfész" msgid "Create a bridge over multiple interfaces" msgstr "Híd létrehozása több interfész között" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritikus" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron naplózási szint" @@ -1204,15 +1211,15 @@ msgstr "" "Az eszköz <abbr title=\"Light Emitting Diode\">LED</abbr>-jei működésének " "testreszabása." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1226,7 +1233,7 @@ msgstr "DHCP kiszolgáló" msgid "DHCP and DNS" msgstr "DHCP és DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP ügyfél" @@ -1246,16 +1253,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1288,7 +1295,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1296,7 +1303,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1304,18 +1311,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Hibakeresés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Alapértelmezés %d" @@ -1354,7 +1361,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Törlés" @@ -1368,7 +1375,7 @@ msgstr "" msgid "Delete this network" msgstr "Hálózat törlése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1384,8 +1391,8 @@ msgstr "Cél" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1440,7 +1447,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1458,11 +1465,11 @@ msgstr "" msgid "Disabled" msgstr "Letiltva" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1485,16 +1492,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Távolság optimalizáció" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "A hálózat legtávolabbi tagjának távolsága méterben." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diverzitás" @@ -1603,7 +1610,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP metódus" @@ -1628,7 +1635,7 @@ msgstr "Interfész szerkesztése" msgid "Edit this network" msgstr "Hálózat szerkesztése" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Vészhelyzet" @@ -1663,11 +1670,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "IPv6 egyeztetés engedélyezése a PPP linken" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Óriás keretek átengedésének engedélyezése" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "NTP-kliens engedélyezése" @@ -1679,27 +1686,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "TFTP kiszolgáló engedélyezése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "VLAN funkció engedélyezése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Tanulás és aging engedélyezése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1733,7 +1740,7 @@ msgstr "Engedélyezve" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1750,9 +1757,9 @@ msgstr "Beágyazási mód" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Titkosítás" @@ -1772,28 +1779,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Törlés..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Hiba" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet adapter" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet switch" @@ -1809,7 +1816,7 @@ msgstr "Gépek kibontása" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Lejárat" @@ -1823,23 +1830,23 @@ msgstr "A bérelt címek lejárati ideje, a minimális érték 2 perc." msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Külső rendszernapló kiszolgáló" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Külső rendszernapló kiszolgáló port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1847,15 +1854,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1947,7 +1954,7 @@ msgstr "Új firmware image flash-elése" msgid "Flash operations" msgstr "Flash műveletek" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Flash-elés..." @@ -1961,11 +1968,11 @@ msgstr "" msgid "Force" msgstr "Kényszerítés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "CCMP (AES) kényszerítése" @@ -1975,11 +1982,11 @@ msgstr "" "DHCP kényszerítése ezen a hálózaton még akkor is ha van másik szerver " "észlelve." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "TKIP kényszerítése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "TKIP és CCMP (AES) kényszerítése" @@ -2003,7 +2010,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "DHCP forgalom továbbítás" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2011,7 +2018,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Broadcast forgalom továbbítás" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2019,12 +2026,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Továbbítás módja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Töredezettségi küszöb" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Keretfűzés" @@ -2041,7 +2048,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2050,8 +2057,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Csak GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Átjáró" @@ -2074,7 +2081,7 @@ msgstr "Általános beállítások" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Általános beállítások" @@ -2082,7 +2089,7 @@ msgstr "Általános beállítások" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2109,7 +2116,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ugrás a jelszó beállításhoz..." @@ -2134,7 +2141,7 @@ msgstr "HE.net jelszó" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2142,7 +2149,7 @@ msgstr "" msgid "Hang Up" msgstr "Befejezés" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2158,9 +2165,9 @@ msgstr "" "Itt állíthatja be az eszköz alapvető tulajdonságait, mint például a gépnév " "vagy az időzóna." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> elrejtése" @@ -2194,8 +2201,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Gépnév" @@ -2256,7 +2262,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 tűzfal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2348,7 +2354,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2415,7 +2421,7 @@ msgstr "IPv6 IPv4 felett (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 IPv4 felett (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identitás" @@ -2530,10 +2536,14 @@ msgstr "Inaktivitási időtúllépés" msgid "Inbound:" msgstr "Bejövő" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Információk" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2554,7 +2564,7 @@ msgstr "" msgid "Install package %q" msgstr "%q csomag telepítése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Protokoll kiterjesztések telepítése..." @@ -2572,7 +2582,7 @@ msgstr "Interfész" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Interfész beállítások" @@ -2584,12 +2594,12 @@ msgstr "Interfész áttekintés" msgid "Interface is reconnecting..." msgstr "Interfész újracsatlakoztatása..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Az interfész nincs jelen, vagy még nincs csatlakoztatva." @@ -2608,17 +2618,17 @@ msgid "Internal Server Error" msgstr "Belső szerverhiba" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Érvénytelen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "A megadott VLAN azonosító érvénytelen. Az azonosítónak %d és %d közé kell " "esnie." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" "A megadott VLAN azonosító érvénytelen! Minden VLAN-hoz egyedi azonosító kell." @@ -2627,7 +2637,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Érvénytelen felhasználói név és/vagy jelszó! Kérem próbálja újra!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2641,10 +2651,9 @@ msgstr "" "ellenőrizze a kép fájlt!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript szükséges!" @@ -2673,18 +2682,22 @@ msgstr "Kernel napló" msgid "Kernel Version" msgstr "Kernel verzió" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Kulcs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Kulcs #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Kilövés" @@ -2724,7 +2737,7 @@ msgstr "LLC" msgid "Label" msgstr "Címke" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Nyelv" @@ -2732,7 +2745,7 @@ msgstr "Nyelv" msgid "Language and Style" msgstr "Nyelv és megjelenés" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2783,19 +2796,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2811,7 +2824,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> szerverek listája, ahová a " "kérések továbbításra kerülnek" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2820,7 +2833,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2860,7 +2873,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Szerver port a beérkező DNS kérések számára" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Terhelés" @@ -2909,7 +2921,7 @@ msgid "Local Startup" msgstr "Helyi indítóscript" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Helyi idő" @@ -2953,7 +2965,7 @@ msgstr "Lekérdezések lokalizációja" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Napló kimeneti szintje" @@ -2973,7 +2985,7 @@ msgstr "Bejelentkezés" msgid "Logout" msgstr "Kijelentkezés" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2989,24 +3001,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-cím" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-cím szűrő" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-szűrő" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-lista" @@ -3052,11 +3064,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3090,12 +3102,16 @@ msgstr "DHCP címek maximális száma" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memória" @@ -3104,7 +3120,7 @@ msgstr "Memória" msgid "Memory usage (%)" msgstr "Memória használat (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3116,11 +3132,11 @@ msgstr "" msgid "Metric" msgstr "Metrika" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3128,16 +3144,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Hiányzó protokoll kiterjesztés a %q progokoll számára" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mód" @@ -3165,12 +3181,16 @@ msgstr "" msgid "Modem init timeout" msgstr "Modem inicializálás időtúllépés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Ellenőrzés" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Csatolási bejegyzés" @@ -3180,7 +3200,7 @@ msgstr "Csatolási bejegyzés" msgid "Mount Point" msgstr "Csatolási pont" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3230,7 +3250,7 @@ msgstr "Mozgatás lefelé" msgid "Move up" msgstr "Mozgatás felfelé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS azonosító" @@ -3254,7 +3274,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Kijelölt NTP kiszolgálók" @@ -3272,18 +3292,17 @@ msgstr "Az új interfész neve" msgid "Name of the new network" msgstr "Az új hálózat neve" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigáció" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Hálózati maszk" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3307,7 +3326,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Interfészhez nem rendelt hálózat" @@ -3332,7 +3351,7 @@ msgid "No files found" msgstr "Nem találhatók fájlok" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Nincs elérhető információ" @@ -3354,10 +3373,9 @@ msgid "No network name specified" msgstr "Nincs megadva hálózatnév" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nincs jelszó!" @@ -3385,7 +3403,7 @@ msgstr "Nincs hozzárendelt zóna" msgid "Noise" msgstr "Zaj" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3393,7 +3411,7 @@ msgstr "" msgid "Noise:" msgstr "Zaj:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3406,7 +3424,7 @@ msgstr "" msgid "None" msgstr "Nincs" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normál" @@ -3419,16 +3437,20 @@ msgstr "Nem található" msgid "Not associated" msgstr "Nincs hozzárendelve" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Nincs kapcsolódva" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Megjegyzés" @@ -3440,7 +3462,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3521,7 +3543,7 @@ msgstr "Beállítás módosítva" msgid "Option removed" msgstr "Beállítás eltávolítva" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3628,7 +3650,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3692,7 +3714,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3745,8 +3767,8 @@ msgid "Part of zone %q" msgstr "A %q zóna része" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3756,14 +3778,21 @@ msgstr "Jelszó" msgid "Password authentication" msgstr "Jelszó hitelesítés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "A privát kulcsh jelszava" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3772,27 +3801,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "CA tanúsítvány elérési útja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Kliens tanúsítvány elérési útja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "A privát kulcs elérési útja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3870,6 +3899,14 @@ msgstr "Adja meg a felhasználónevét és a jelszavát." msgid "Policy" msgstr "Szabály" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3878,11 +3915,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port állapot:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3894,7 +3931,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3919,8 +3956,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Ügyfél-ügyfél közötti kommunikáció megakadályozása" @@ -3937,7 +3974,7 @@ msgstr "Folytatás" msgid "Processes" msgstr "Folyamatok" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3947,8 +3984,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokoll" @@ -3961,7 +3998,7 @@ msgstr "Az új interfész protokollja" msgid "Protocol support is not installed" msgstr "Protokoll támogatás nincs telepítve" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "NTP kiszolgáló" @@ -3969,7 +4006,7 @@ msgstr "NTP kiszolgáló" msgid "Provide new network" msgstr "Új hálózat nyújtása" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ál Ad-hoc (ahdemo)" @@ -3994,7 +4031,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Minőség" @@ -4004,11 +4041,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4016,8 +4053,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS küszöbérték" @@ -4031,27 +4072,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX sebesség" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Radius-Naplózási-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Radius-Naplózás-Kulcs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Radius-Naplózás-Kiszolgáló" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Radius-Hitelesítés-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Radius-Hitelesítés-Kulcs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Radius-Hitelesítés-Kiszolgáló" @@ -4110,7 +4151,7 @@ msgstr "Valósidejű forgalom" msgid "Realtime Wireless" msgstr "Valósidejű vezetéknélküli adatok" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4118,7 +4159,7 @@ msgstr "" msgid "Rebind protection" msgstr "Rebind elleni védelem" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Újraindítás" @@ -4136,8 +4177,8 @@ msgstr "Újraindítja az eszköz operációs rendszerét" msgid "Receive" msgstr "Fogadás" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Vevő antenna" @@ -4204,7 +4245,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4228,10 +4269,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4286,8 +4327,8 @@ msgid "Restore backup" msgstr "Biztonsági mentés visszaállítása" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Jelszó mutatása/elrejtése" @@ -4334,8 +4375,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Router jelszó" @@ -4373,7 +4414,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH hozzáférés" @@ -4390,7 +4431,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH kulcsok" @@ -4398,7 +4439,7 @@ msgstr "SSH kulcsok" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4409,7 +4450,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Mentés" @@ -4438,7 +4479,7 @@ msgstr "Felderítés" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Ütemezett feladatok" @@ -4475,7 +4516,7 @@ msgstr "" "LCP echo kérések küldése a másodpercben megadott időközönként, csak a " "hibaküszöbbel együtt van hatása." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Kliensek szétválasztása" @@ -4510,7 +4551,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Idő szinkronizálás beállítása" @@ -4527,7 +4568,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "DHCP kiszolgáló beállítása" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4535,7 +4576,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4558,11 +4599,11 @@ msgstr "Interfész leállítása" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Jel" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4578,7 +4619,7 @@ msgstr "Méret" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4587,21 +4628,19 @@ msgstr "" msgid "Skip" msgstr "Ugrás" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Ugrás a tartalomhoz" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Ugrás a navigációhoz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Időrés" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4694,7 +4733,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Rendszerindítás" @@ -4714,7 +4753,7 @@ msgstr "Statikus bérletek" msgid "Static Routes" msgstr "Statikus útvonalak" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Statikus cím" @@ -4729,7 +4768,7 @@ msgstr "" "szükségesek, ahol a csak a megfelelő bérlettel rendelkező hosztok kerülnek " "kiszolgálásra." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4749,6 +4788,10 @@ msgstr "Leállítás" msgid "Strict order" msgstr "Kötött sorrend" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Elküldés" @@ -4774,15 +4817,15 @@ msgstr "Lapozóterület" msgid "Switch" msgstr "Kapcsoló" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Kapcsoló %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Kapcsoló %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4791,7 +4834,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4807,8 +4850,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Szinkronizálás a böngészővel" @@ -4833,7 +4880,7 @@ msgstr "Rendszernapló" msgid "System Properties" msgstr "Rendszer tulajdonságok" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Rendszer napló puffer méret" @@ -5053,13 +5100,13 @@ msgstr "A kiválasztott protokoll eszköz hozzárendelést igényel" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "A rendszer most törli a konfigurációs partíciót majd újraindul." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5084,7 +5131,7 @@ msgstr "" "A feltöltött image fájl formátuma nem támogatott. Ügyeljen arra, hogy a " "platformjának megfelelő általános image formátumot válassza ki." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Megjelenés" @@ -5114,10 +5161,9 @@ msgstr "" "beállítások\" fülön." #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5211,24 +5257,24 @@ msgstr "" "Ez a lap a rendszerben jelenleg aktív hálózati kapcsolatokról ad áttekintést." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Ez a szakasz még nem tartalmaz értékeket" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Idő szinkronizálás" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Idő szinkronizálás még nincs beállítva." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Időzóna" @@ -5271,7 +5317,7 @@ msgstr "Forgalom" msgid "Transfer" msgstr "Átvitel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Átviteli sebesség" @@ -5279,14 +5325,14 @@ msgstr "Átviteli sebesség" msgid "Transmit" msgstr "Küldés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Adóteljesítmény" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Adó antenna" @@ -5302,7 +5348,7 @@ msgstr "Trigger mód" msgid "Tunnel ID" msgstr "Tunnel azonosító" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Tunnel interfész" @@ -5317,7 +5363,7 @@ msgid "Tx-Power" msgstr "Adóteljesítmény" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Típus" @@ -5376,19 +5422,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Ismeretlen" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Nem kezelt" @@ -5402,7 +5448,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5417,7 +5462,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Nem támogatott protokoll típus." @@ -5470,8 +5515,8 @@ msgstr "DHCP kiszolgáló használata" msgid "Use DNS servers advertised by peer" msgstr "Másik fél által ajánlott DNS szerverek használata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "ISO/IEC 3166 alpha2 országkódok használata" @@ -5578,11 +5623,11 @@ msgstr "" msgid "Used" msgstr "Használt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Használt kulcsindex" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5610,11 +5655,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLAN-ok %q-n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLAN-ok %q-n (%s)" @@ -5660,18 +5705,18 @@ msgstr "Ellenőrzés" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP nyílt rendszer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP megosztott kulcs" @@ -5679,8 +5724,8 @@ msgstr "WEP megosztott kulcs" msgid "WEP passphrase" msgstr "WEP jelmondat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM mód" @@ -5688,9 +5733,9 @@ msgstr "WMM mód" msgid "WPA passphrase" msgstr "WPA jelmondat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5714,8 +5759,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Figyelmeztetés" @@ -5723,7 +5768,11 @@ msgstr "Figyelmeztetés" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5750,7 +5799,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5764,12 +5813,12 @@ msgstr "" msgid "Wireless" msgstr "Vezetéknélküli rész" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Vezetéknélküli adapter" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Vezetéknélküli hálózat" @@ -5777,20 +5826,20 @@ msgstr "Vezetéknélküli hálózat" msgid "Wireless Overview" msgstr "Vezetéknélküli rész áttekintés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Vezetéknélküli biztonság" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Vezetéknélküli hálózat le van tiltva" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Vezetéknélküli hálózat nincs kapcsolódva" @@ -5810,7 +5859,7 @@ msgstr "Vezetéknélküli hálózat engedélyezve" msgid "Write received DNS requests to syslog" msgstr "A kapott DNS kéréseket írja a rendszernaplóba" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5830,36 +5879,28 @@ msgstr "" "esetén, az eszköz elérhetetlenné válhat!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Engélyezze a Java Szkripteket a böngészőjében, mert anélkül a LuCI nem fog " "megfelelően működni." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5870,11 +5911,11 @@ msgstr "bármelyik" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5927,8 +5968,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "letiltás" @@ -5987,19 +6028,6 @@ msgstr "ha a cél hálózat" msgid "input" msgstr "bemenet" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6032,7 +6060,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "helyi <abbr title=\"Domain Name System\">DNS</abbr> fájl" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -6060,20 +6088,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "ki" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "be" @@ -6117,8 +6143,8 @@ msgstr "" msgid "routed" msgstr "irányított" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6139,11 +6165,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "cimkézett" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6170,7 +6196,7 @@ msgstr "nincs meghatározva" msgid "unspecified -or- create:" msgstr "nincs magadva -vagy- új:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "cimkézetlen" @@ -6340,6 +6366,9 @@ msgstr "igen" msgid "« Back" msgstr "« Vissza" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index ce7e44eade..52569738cc 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(nessuna interfaccia collegata)" msgid "-- Additional Field --" msgstr "-- Campo aggiuntivo --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Per favore scegli --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizzato --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carico in 1 minuto:" @@ -98,7 +102,7 @@ msgstr "Carico in 1 minuto:" msgid "15 Minute Load:" msgstr "Carico in 15 minut:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Carico in 5 minuti:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Servizio basilare di impostazione Identificatore\">BSSID</abbr>" @@ -159,7 +163,7 @@ msgstr "" "<abbr title=\"Sistema Nome Dominio\">DNS</abbr> I server che verranno " "interrogati nell'ordine del resolv file" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Impostazione Identificatore Servizio Esteso\">ESSID</abbr>" @@ -196,7 +200,7 @@ msgstr "Gateway <abbr title=\"Protocollo Internet Versione 6\">IPv6</abbr>" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configurazione <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>" @@ -305,7 +309,7 @@ msgstr "" msgid "ATM device number" msgstr "Numero dispositivo ATM " -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -313,8 +317,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Accesso Concentratore" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Punto di Accesso" @@ -348,7 +352,7 @@ msgstr "Contratti attivi DHCP" msgid "Active DHCPv6 Leases" msgstr "Contratti attivi DHCPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -356,8 +360,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -395,8 +399,8 @@ msgstr "File Hosts Aggiuntivo" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Indirizzo" @@ -405,30 +409,34 @@ msgid "Address to access local relay bridge" msgstr "Indirizzo per accedere al ponte locale di trasmissione" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Amministrazione" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Opzioni Avanzate" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Allerta" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -457,21 +465,21 @@ msgstr "" "Permetti autenticazione <abbr title=\"Secure Shell\">SSH</abbr> tramite " "password" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Consenti tutti tranne quelli nell'elenco" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Consenti solo quelli nell'elenco" @@ -515,14 +523,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -594,7 +602,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -606,17 +614,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antenna 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antenna 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configurazione dell'Antenna" @@ -642,7 +650,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Assegna Interfacce..." @@ -657,7 +665,7 @@ msgstr "" msgid "Associated Stations" msgstr "Dispositivi Wi-Fi connessi" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -666,7 +674,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autenticazione PEAP" @@ -684,12 +692,11 @@ msgstr "Autorizzazione richiesta" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Aggiornamento Automatico" @@ -761,7 +768,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -791,7 +798,7 @@ msgstr "Ritorno ai risultati della scansione" msgid "Backup" msgstr "Copia di Sicurezza" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Copia di Sicurezza / Flash Firmware" @@ -803,12 +810,12 @@ msgstr "Elenco dei file di cui effettuare una copia di sicurezza" msgid "Bad address specified!" msgstr "E' stato specificato un indirizzo errato!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -838,7 +845,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitrate" @@ -846,7 +853,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Ignora Dominio Bogus NX" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Ponte" @@ -930,7 +937,7 @@ msgstr "Modifiche applicate." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Cambia la password di amministratore per accedere al dispositivo" @@ -938,12 +945,12 @@ msgstr "Cambia la password di amministratore per accedere al dispositivo" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canale" @@ -986,7 +993,7 @@ msgstr "" "associata o compilare il campo <em>crea</em> per definire una nuova zona e " "collegare l'interfaccia ad esso." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -994,7 +1001,7 @@ msgstr "" "Scegliere la/le rete/reti a cui vuoi collegare questa interfaccia wireless o " "riempire il campo <em>crea<em> per definire una nuova rete." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Cifratura" @@ -1016,8 +1023,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Cliente" @@ -1061,7 +1068,7 @@ msgstr "Scegliere dall'elenco..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Raccolgo i dati..." @@ -1077,7 +1084,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configurazioni Comuni" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1109,7 +1116,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Conferma" @@ -1118,12 +1125,12 @@ msgid "Connect" msgstr "Connetti" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Connesso" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Limite connessioni" @@ -1146,9 +1153,9 @@ msgstr "" msgid "Country" msgstr "Nazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Codice Nazione" @@ -1173,11 +1180,11 @@ msgstr "Crea Interfaccia" msgid "Create a bridge over multiple interfaces" msgstr "Crea un ponte tra interfacce multiple" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Livello di log del Cron" @@ -1210,15 +1217,15 @@ msgstr "" "Personalizza la configurazione dei <abbr title=\"Light Emitting Diode\">LED</" "abbr> del sistema se possibile." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1232,7 +1239,7 @@ msgstr "Server DHCP" msgid "DHCP and DNS" msgstr "DHCP e DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1252,16 +1259,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1294,7 +1301,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1302,7 +1309,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1310,18 +1317,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Predefinito %d" @@ -1361,7 +1368,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Elimina" @@ -1375,7 +1382,7 @@ msgstr "" msgid "Delete this network" msgstr "Rimuovi questa rete" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1391,8 +1398,8 @@ msgstr "Destinazione" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1447,7 +1454,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Disabilita Crittografia" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1465,11 +1472,11 @@ msgstr "" msgid "Disabled" msgstr "Disabilitato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Disabilitato (default)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1492,16 +1499,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Ottimizzazione distanza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distanza del membro più lontano della rete in metri." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversità" @@ -1607,7 +1614,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Metodo EAP" @@ -1632,7 +1639,7 @@ msgstr "Modifica questa interfaccia" msgid "Edit this network" msgstr "Modifica questa rete" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergenza" @@ -1667,11 +1674,11 @@ msgstr "Abilita negoziazione IPv6" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Attiva la negoziazione IPv6 sul collegamento PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Abilita Jumbo Frame passthrough" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Attiva il cliente NTP" @@ -1683,27 +1690,27 @@ msgstr "Abilita Single DES" msgid "Enable TFTP server" msgstr "Abilita il server TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Abilita la funzionalità VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Abilita pulsante WPS, richiede WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Attivare l'apprendimento e l'invecchiamento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "Abilita mirroring dei pacchetti in ingresso" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "Abilita mirroring dei pacchetti in uscita" @@ -1737,7 +1744,7 @@ msgstr "Abilitato" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1754,9 +1761,9 @@ msgstr "Modalità di incapsulamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Crittografia" @@ -1776,28 +1783,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Cancellazione..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Errore" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Scheda di Rete" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch di Rete" @@ -1813,7 +1820,7 @@ msgstr "Espandi gli hosts" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Scadenze" @@ -1828,23 +1835,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Server Log di Sistema esterno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Porta Server Log di Sistema esterno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1852,15 +1859,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1952,7 +1959,7 @@ msgstr "Flash immagine nuovo firmware" msgid "Flash operations" msgstr "Operazioni Flash" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Flashing..." @@ -1966,11 +1973,11 @@ msgstr "" msgid "Force" msgstr "Forza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Forza CCMP (AES)" @@ -1978,11 +1985,11 @@ msgstr "Forza CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forza DHCP su questa rete, anche se un altro server viene rilevato." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Forza TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Forza TKIP e CCMP (AES)" @@ -2006,7 +2013,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Inoltra il traffico DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2014,7 +2021,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Inoltra il traffico broadcast" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2022,12 +2029,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Modalità di Inoltro" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Soglia di frammentazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Frame Bursting" @@ -2044,7 +2051,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2053,8 +2060,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Solo GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Gateway" @@ -2077,7 +2084,7 @@ msgstr "Opzioni Generali" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Impostazioni Generali" @@ -2085,7 +2092,7 @@ msgstr "Impostazioni Generali" msgid "Generate Config" msgstr "Genera Configurazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2114,7 +2121,7 @@ msgstr "Opzioni rete globale" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Vai alla configurazione della password..." @@ -2139,7 +2146,7 @@ msgstr "Password HE.net" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2147,7 +2154,7 @@ msgstr "" msgid "Hang Up" msgstr "Hangup" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2163,9 +2170,9 @@ msgstr "" "Qui puoi configurare gli aspetti base del tuo dispositivo come l'" "hostname o il fuso orario." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Nascondi <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2200,8 +2207,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Hostname" @@ -2262,7 +2268,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Firewall" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2354,7 +2360,7 @@ msgstr "Impostazioni IPv6" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2421,7 +2427,7 @@ msgstr "IPv6-su-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-su-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identità PEAP" @@ -2538,10 +2544,14 @@ msgstr "Tempo di Inattività" msgid "Inbound:" msgstr "In entrata:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informazioni" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2562,7 +2572,7 @@ msgstr "" msgid "Install package %q" msgstr "Installa il pacchetto %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Installa le estensioni del protocollo..." @@ -2580,7 +2590,7 @@ msgstr "Interfaccia" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Configurazione Interfaccia" @@ -2592,12 +2602,12 @@ msgstr "Riassunto Interfaccia" msgid "Interface is reconnecting..." msgstr "L'interfaccia si sta ricollegando..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Nome Interfaccia" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Interfaccia non presente o non ancora connessa." @@ -2616,15 +2626,15 @@ msgid "Internal Server Error" msgstr "Errore del Server Interno" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Valore immesso non valido" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "ID VLAN non valido! Solo gli ID compresi tra %d e %d sono consentiti." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti" @@ -2632,7 +2642,7 @@ msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti" msgid "Invalid username and/or password! Please try again." msgstr "Username o password non validi! Per favore riprova." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Isola Clienti" @@ -2646,10 +2656,9 @@ msgstr "" "della memoria flash, per favore controlla il file!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Richiesto JavaScript!" @@ -2678,18 +2687,22 @@ msgstr "Registro del Kernel" msgid "Kernel Version" msgstr "Versione del Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Chiave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Chiave #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Uccidi" @@ -2729,7 +2742,7 @@ msgstr "LLC" msgid "Label" msgstr "Etichetta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Lingua" @@ -2737,7 +2750,7 @@ msgstr "Lingua" msgid "Language and Style" msgstr "Lingua e Stile" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2788,19 +2801,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2816,7 +2829,7 @@ msgstr "" "Elenco di Server <abbr title=\"Sistema Nome Dimio\">DNS</abbr>a cui " "inoltrare le richieste in" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2825,7 +2838,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2863,7 +2876,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Porta di ascolto per le richieste DNS in entrata" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Carico" @@ -2912,7 +2924,7 @@ msgid "Local Startup" msgstr "Avvio Locale" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Ora locale" @@ -2954,7 +2966,7 @@ msgstr "Localizza richieste" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Livello di dettaglio registro" @@ -2974,7 +2986,7 @@ msgstr "Login" msgid "Logout" msgstr "Slogga" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2990,24 +3002,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtro indirizzo MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtro MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Lista MAC" @@ -3053,11 +3065,11 @@ msgstr "" msgid "Manual" msgstr "Manuale" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3091,12 +3103,16 @@ msgstr "Numero massimo indirizzi in contratto" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memoria" @@ -3105,7 +3121,7 @@ msgstr "Memoria" msgid "Memory usage (%)" msgstr "Uso Memoria (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3117,11 +3133,11 @@ msgstr "" msgid "Metric" msgstr "Metrica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3129,16 +3145,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Modalità" @@ -3166,12 +3182,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Voce di Mount" @@ -3181,7 +3201,7 @@ msgstr "Voce di Mount" msgid "Mount Point" msgstr "Punto di Mount" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3231,7 +3251,7 @@ msgstr "Muovi giù" msgid "Move up" msgstr "Muovi su" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "ID della NAS" @@ -3255,7 +3275,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidati server NTP" @@ -3273,18 +3293,17 @@ msgstr "Nome della nuova interfaccia" msgid "Name of the new network" msgstr "Nome della nuova rete" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigazione" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Maschera di rete" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3308,7 +3327,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Rete senza interfaccia" @@ -3333,7 +3352,7 @@ msgid "No files found" msgstr "Nessun file trovato" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Nessuna informazione disponibile" @@ -3355,10 +3374,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nessuna password immessa!" @@ -3386,7 +3404,7 @@ msgstr "Nessuna zona assegnata" msgid "Noise" msgstr "Rumore" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "Margine di Rumore (SNR)" @@ -3394,7 +3412,7 @@ msgstr "Margine di Rumore (SNR)" msgid "Noise:" msgstr "Rumore:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3407,7 +3425,7 @@ msgstr "" msgid "None" msgstr "Nessuno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normale" @@ -3420,16 +3438,20 @@ msgstr "Non Trovato" msgid "Not associated" msgstr "Non associato" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Non connesso" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "Nota: lunghezza nome interfaccia" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Notifica" @@ -3441,7 +3463,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3522,7 +3544,7 @@ msgstr "Opzione cambiata" msgid "Option removed" msgstr "Opzione cancellata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3629,7 +3651,7 @@ msgstr "Sovrascrivi TOS" msgid "Override TTL" msgstr "Sovrascrivi TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "Sovrascrivi nome interfaccia di default" @@ -3693,7 +3715,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3746,8 +3768,8 @@ msgid "Part of zone %q" msgstr "Parte della zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3757,14 +3779,21 @@ msgstr "Password" msgid "Password authentication" msgstr "Password di authenticazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Password della chiave privata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3773,27 +3802,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Percorso al certificato CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Percorso alla chiave privata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3871,6 +3900,14 @@ msgstr "Per favore inserisci il tuo username e la password." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3879,11 +3916,11 @@ msgstr "Porta" msgid "Port status:" msgstr "Status porta:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3895,7 +3932,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3918,8 +3955,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Impedisci la comunicazione fra Client" @@ -3936,7 +3973,7 @@ msgstr "Continuare" msgid "Processes" msgstr "Processi" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Profilo" @@ -3946,8 +3983,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocollo" @@ -3960,7 +3997,7 @@ msgstr "Protocollo della nuova interfaccia" msgid "Protocol support is not installed" msgstr "Supporto protocollo non installato" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Fornisci server NTP" @@ -3968,7 +4005,7 @@ msgstr "Fornisci server NTP" msgid "Provide new network" msgstr "Fornisci nuova rete" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3993,7 +4030,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Qualità" @@ -4003,11 +4040,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4015,8 +4052,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Soglia RTS/CTS" @@ -4030,27 +4071,27 @@ msgstr "" msgid "RX Rate" msgstr "Velocità RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4109,7 +4150,7 @@ msgstr "Traffico in Tempo Reale" msgid "Realtime Wireless" msgstr "Wireless in Tempo Reale" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4117,7 +4158,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Riavvia" @@ -4135,8 +4176,8 @@ msgstr "Riavvia il sistema operativo del tuo dispositivo" msgid "Receive" msgstr "Ricezione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antenna Ricevente" @@ -4203,7 +4244,7 @@ msgstr "Richiede indirizzo-IPv6" msgid "Request IPv6-prefix of length" msgstr "Richiede prefisso-IPv6 di lunghezza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "Richiesto" @@ -4226,10 +4267,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4284,8 +4325,8 @@ msgid "Restore backup" msgstr "Ripristina backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Rivela/nascondi password" @@ -4332,8 +4373,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4371,7 +4412,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4388,7 +4429,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4396,7 +4437,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "" @@ -4407,7 +4448,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Salva" @@ -4436,7 +4477,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Operazioni programmate" @@ -4471,7 +4512,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Isola utenti" @@ -4506,7 +4547,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4522,7 +4563,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4530,7 +4571,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4553,11 +4594,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Segnale" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4573,7 +4614,7 @@ msgstr "Dimensione" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4582,21 +4623,19 @@ msgstr "" msgid "Skip" msgstr "Salta" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Salta a contenuto" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Salta a navigazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Slot time" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4691,7 +4730,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Avvio" @@ -4711,7 +4750,7 @@ msgstr "Contratti statici" msgid "Static Routes" msgstr "Instradamenti Statici" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Indirizzo Statico" @@ -4726,7 +4765,7 @@ msgstr "" "di configurazione non dinamici, dove solo gli host col contratto " "corrispondente vengono serviti." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4746,6 +4785,10 @@ msgstr "Ferma" msgid "Strict order" msgstr "Ordine severo" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Invia" @@ -4771,15 +4814,15 @@ msgstr "Scambia ingresso" msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Switch %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Switch %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4788,7 +4831,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4804,8 +4847,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Sincronizza con il browser" @@ -4830,7 +4877,7 @@ msgstr "Registro di Sistema" msgid "System Properties" msgstr "Proprietà di Sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Dimensione Buffer Log di Sistema" @@ -5034,13 +5081,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5065,7 +5112,7 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5093,10 +5140,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5179,24 +5225,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "Questa pagina ti da una riassunto delle connessioni al momento attive." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Questa sezione non contiene ancora valori" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronizzazione Orario" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Sincronizzazione Orario non ancora configurata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuso orario" @@ -5238,7 +5284,7 @@ msgstr "Traffico" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Velocità di transmissione" @@ -5246,14 +5292,14 @@ msgstr "Velocità di transmissione" msgid "Transmit" msgstr "Trasmissione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Potenza di trasmissione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antenna trasmettente" @@ -5269,7 +5315,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5284,7 +5330,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" @@ -5343,19 +5389,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Sconosciuto" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Non gestito" @@ -5369,7 +5415,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5384,7 +5429,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Tipo protocollo non supportato." @@ -5437,8 +5482,8 @@ msgstr "Usa il DHCP del gateway" msgid "Use DNS servers advertised by peer" msgstr "Usa i server DNS annunciati dal peer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Usa i codici delle nazioni ISO/IEC 3166 alpha2." @@ -5547,11 +5592,11 @@ msgstr "" msgid "Used" msgstr "Usato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Slot Chiave Usata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5579,11 +5624,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs su %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs su %q (%s)" @@ -5629,18 +5674,18 @@ msgstr "Verifica" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Sistema Aperto WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Chiave Condivisa WEP" @@ -5648,8 +5693,8 @@ msgstr "Chiave Condivisa WEP" msgid "WEP passphrase" msgstr "frase di accesso WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Modalità WMM" @@ -5657,9 +5702,9 @@ msgstr "Modalità WMM" msgid "WPA passphrase" msgstr "frase di accesso WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5683,8 +5728,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Avviso" @@ -5692,7 +5737,11 @@ msgstr "Avviso" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5719,7 +5768,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5733,12 +5782,12 @@ msgstr "" msgid "Wireless" msgstr "Wireless" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Dispositivo Wireless" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Rete Wireless" @@ -5746,20 +5795,20 @@ msgstr "Rete Wireless" msgid "Wireless Overview" msgstr "Panoramica Wireless" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Sicurezza Wireless" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "La rete Wireless è disattivata" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "La rete Wireless è non associata" @@ -5779,7 +5828,7 @@ msgstr "La rete wireless è attivata" msgid "Write received DNS requests to syslog" msgstr "Scrittura delle richiesta DNS ricevute nel syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Scrivi registro di sistema su file" @@ -5800,36 +5849,28 @@ msgstr "" "potrebbe diventare inaccessibile!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "È necessario attivare JavaScript nel tuo browser o LuCI non funzionerà " "correttamente." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5840,11 +5881,11 @@ msgstr "qualsiasi" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5897,8 +5938,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "disabilita" @@ -5957,19 +5998,6 @@ msgstr "se la destinazione è una rete" msgid "input" msgstr "ingresso" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6002,7 +6030,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "File <abbr title=\"Sistema Nome Dominio\">DNS</abbr> locale" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -6030,20 +6058,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "spento" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "acceso" @@ -6087,8 +6113,8 @@ msgstr "" msgid "routed" msgstr "instradato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6109,11 +6135,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "etichettato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6140,7 +6166,7 @@ msgstr "non specificato" msgid "unspecified -or- create:" msgstr "non specificato - o - creato:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "non etichettato" @@ -6310,6 +6336,9 @@ msgstr "Sì" msgid "« Back" msgstr "« Indietro" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index 8e269a5b17..72e63c3dbd 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2018-12-20 03:00+0900\n" +"PO-Revision-Date: 2019-05-13 18:57+0900\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Language-Team: \n" "Language: ja\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.2\n" +"X-Generator: Poedit 2.2.1\n" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 msgid "%.1f dB" @@ -25,7 +25,7 @@ msgstr "%d ビット" msgid "%d invalid field(s)" msgstr "無効な入力欄: %d 個" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s は複数のVLANにUntaggedしています!" @@ -57,16 +57,16 @@ msgstr "(インターフェースが接続されていません)" msgid "-- Additional Field --" msgstr "-- 追加項目 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 選択してください --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 手動設定 --" @@ -90,6 +90,10 @@ msgstr "-- UUID を指定 --" msgid "-- please select --" msgstr "-- 選択してください --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "0: RSSI しきい値を使用しない, 1: ドライバのデフォルトを使用する" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "過去1分の負荷:" @@ -98,7 +102,7 @@ msgstr "過去1分の負荷:" msgid "15 Minute Load:" msgstr "過去15分の負荷:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "過去5分の負荷:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "802.11r 高速ローミング" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "802.11w アソシエーションSAクエリの最大タイムアウト時間です。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間です。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "802.11w 管理フレーム保護" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "802.11w 最大タイムアウト" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "802.11w 再試行タイムアウト" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "リゾルバファイルの順番に、<abbr title=\"Domain Name System\">DNS</abbr>サー" "バーに問い合わせを行います" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -194,7 +198,7 @@ msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス (16進数)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" @@ -300,7 +304,7 @@ msgstr "" msgid "ATM device number" msgstr "ATMデバイス番号" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -308,8 +312,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Access Concentrator" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "アクセスポイント" @@ -341,7 +345,7 @@ msgstr "アクティブなDHCPリース" msgid "Active DHCPv6 Leases" msgstr "アクティブなDHCPv6リース" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "アドホック" @@ -349,8 +353,8 @@ msgstr "アドホック" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -389,8 +393,8 @@ msgstr "追加のホストファイル" msgid "Additional servers file" msgstr "追加のサーバー ファイル" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "アドレス" @@ -399,30 +403,34 @@ msgid "Address to access local relay bridge" msgstr "ローカル リレーブリッジにアクセスするためのIPアドレス" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "管理画面" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "詳細設定" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "詳細設定" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "警告" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "エイリアス インターフェース" @@ -449,21 +457,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワード認証を許可します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "AP モード動作時に、低 ACK(確認応答)状態の STA の切断を許可します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "リスト内の端末からのアクセスを禁止" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "レガシー 802.11b レートを許可" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "リスト内の端末からのアクセスを許可" @@ -505,7 +513,7 @@ msgstr "常にオフ (%s)" msgid "Always on (%s)" msgstr "常にオン (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -514,7 +522,7 @@ msgstr "" "このオプションの使用は、 IEEE 802.11n-2009 に準拠しません!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -588,7 +596,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -600,17 +608,17 @@ msgstr "アノニマス マウント" msgid "Anonymous Swap" msgstr "アノニマス スワップ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "アンテナ 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "アンテナ 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "アンテナ設定" @@ -636,7 +644,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "インターフェースの割当て..." @@ -651,7 +659,7 @@ msgstr "" msgid "Associated Stations" msgstr "アソシエーション済み端末" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "アソシエーション数" @@ -660,7 +668,7 @@ msgstr "アソシエーション数" msgid "Auth Group" msgstr "認証グループ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "認証" @@ -678,12 +686,11 @@ msgstr "ログイン認証" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "自動更新" @@ -755,7 +762,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -785,7 +792,7 @@ msgstr "スキャン結果へ戻る" msgid "Backup" msgstr "バックアップ" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "バックアップ / ファームウェア更新" @@ -797,12 +804,12 @@ msgstr "バックアップファイル リスト" msgid "Bad address specified!" msgstr "無効なアドレスです!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" -msgstr "" +msgstr "バンド" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "ビーコン間隔" @@ -834,7 +841,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "ビットレート" @@ -842,7 +849,7 @@ msgstr "ビットレート" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "ブリッジ" @@ -926,7 +933,7 @@ msgstr "変更が適用されました。" msgid "Changes have been reverted." msgstr "変更は取り消されました。" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "デバイスの管理者パスワードを変更します" @@ -934,12 +941,12 @@ msgstr "デバイスの管理者パスワードを変更します" msgid "Changing password…" msgstr "パスワードを変更中…" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "チャネル" @@ -985,7 +992,7 @@ msgstr "" "フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインターフェース" "に設定します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -993,7 +1000,7 @@ msgstr "" "無線インターフェースをアタッチするネットワークを選択してください。または、" "<em>作成</em>欄を選択すると新しいネットワークを作成します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "暗号化方式" @@ -1017,8 +1024,8 @@ msgstr "" "指定した mtdblock ファイルをダウンロードするには、 \"mtdblock を保存\" をク" "リックしてください。(注: この機能はプロフェッショナル向けです!)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "クライアント" @@ -1062,7 +1069,7 @@ msgstr "リストを閉じる" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "データ収集中です..." @@ -1078,7 +1085,7 @@ msgstr "コメント" msgid "Common Configuration" msgstr "一般設定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1114,7 +1121,7 @@ msgstr "設定が適用されました。" msgid "Configuration has been rolled back!" msgstr "設定はロールバックされました!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "確認" @@ -1123,12 +1130,12 @@ msgid "Connect" msgstr "接続" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "接続中" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "接続制限" @@ -1154,9 +1161,9 @@ msgstr "" msgid "Country" msgstr "国" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "国コード" @@ -1181,11 +1188,11 @@ msgstr "インターフェースの作成" msgid "Create a bridge over multiple interfaces" msgstr "複数のインタフェースを指定してブリッジを作成します" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "重大" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cronのログ出力レベル" @@ -1220,15 +1227,15 @@ msgstr "" "<abbr title=\"Light Emitting Diode\">LED</abbr> デバイスの挙動をカスタマイズ" "します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1242,7 +1249,7 @@ msgstr "DHCPサーバー" msgid "DHCP and DNS" msgstr "DHCP 及び DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP クライアント" @@ -1262,16 +1269,16 @@ msgstr "DHCPv6-モード" msgid "DHCPv6-Service" msgstr "DHCPv6-サービス" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1304,7 +1311,7 @@ msgstr "DS-Lite AFTR アドレス" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "DSL ステータス" @@ -1312,7 +1319,7 @@ msgstr "DSL ステータス" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "DTIM インターバル" @@ -1320,18 +1327,18 @@ msgstr "DTIM インターバル" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "デバッグ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "標準設定 %d" @@ -1370,7 +1377,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "削除" @@ -1384,7 +1391,7 @@ msgstr "公開鍵を削除" msgid "Delete this network" msgstr "ネットワークを削除します" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "Delivery Traffic Indication Message インターバル" @@ -1400,8 +1407,8 @@ msgstr "宛先" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1456,7 +1463,7 @@ msgstr "" msgid "Disable Encryption" msgstr "暗号化を無効にする" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "非アクティブ状態ポーリングを無効化" @@ -1474,11 +1481,11 @@ msgstr "このネットワークを無効にします" msgid "Disabled" msgstr "無効" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "無効(デフォルト)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "低 Acknowledgement 時のアソシエーション解除" @@ -1499,18 +1506,18 @@ msgstr "切断の試行が失敗しました" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 msgid "Dismiss" -msgstr "警告の除去" +msgstr "閉じる" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "距離の最適化" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "最も遠い端末との距離(メートル)を設定してください。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "ダイバシティ" @@ -1614,9 +1621,9 @@ msgstr "" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 msgid "EA-bits length" -msgstr "" +msgstr "EA ビット長" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAPメソッド" @@ -1643,7 +1650,7 @@ msgstr "インターフェースを編集します" msgid "Edit this network" msgstr "ネットワークを編集" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "緊急" @@ -1680,11 +1687,11 @@ msgstr "IPv6 ネゴシエーションの有効化" msgid "Enable IPv6 negotiation on the PPP link" msgstr "PPPリンクのIPv6 ネゴシエーションを有効にする" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "ジャンボフレーム パススルーを有効にする" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "NTPクライアント機能を有効にする" @@ -1696,27 +1703,27 @@ msgstr "シングルDESの有効化" msgid "Enable TFTP server" msgstr "TFTPサーバーを有効にする" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "VLAN機能を有効にする" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSKが必要です。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Key Reinstallation (KRACK) 対策の有効化" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "ラーニング エイジング機能を有効にする" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "受信パケットのミラーリングを有効化" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "送信パケットのミラーリングを有効化" @@ -1750,7 +1757,7 @@ msgstr "有効" msgid "Enables IGMP snooping on this bridge" msgstr "ブリッジの IGMP スヌーピングを有効にします" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1769,9 +1776,9 @@ msgstr "カプセル化モード" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "暗号化モード" @@ -1791,28 +1798,28 @@ msgstr "カスタム値を入力" msgid "Enter custom values" msgstr "カスタム値を入力" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "消去中..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "エラー" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "イーサネットアダプタ" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "イーサネットスイッチ" @@ -1828,7 +1835,7 @@ msgstr "拡張ホスト設定" msgid "Expecting %s" msgstr "期待される値: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "期限切れ" @@ -1843,23 +1850,23 @@ msgstr "" msgid "External" msgstr "外部" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "外部システムログ サーバー" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "外部システムログ・サーバー ポート" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "外部システムログ・サーバー プロトコル" @@ -1867,15 +1874,15 @@ msgstr "外部システムログ・サーバー プロトコル" msgid "Extra SSH command options" msgstr "拡張 SSHコマンドオプション" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1969,7 +1976,7 @@ msgstr "ファームウェアの更新" msgid "Flash operations" msgstr "更新機能" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "更新中..." @@ -1983,11 +1990,11 @@ msgstr "フラッシュメモリー 書込アクセス (%s)" msgid "Force" msgstr "強制" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "強制 40MHz モード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "CCMP (AES) を使用" @@ -1996,11 +2003,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "別のDHCPサーバーが検出された場合でも、DHCPサーバー機能を強制的に起動します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "TKIP を使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "TKIP 及びCCMP (AES) を使用" @@ -2024,7 +2031,7 @@ msgstr "フォーム トークンの不一致" msgid "Forward DHCP traffic" msgstr "DHCPトラフィックを転送する" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2032,7 +2039,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "ブロードキャスト トラフィックを転送する" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2040,12 +2047,12 @@ msgstr "" msgid "Forwarding mode" msgstr "転送モード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "フラグメンテーションしきい値" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "フレームバースト" @@ -2064,7 +2071,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2073,8 +2080,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "GPRSのみ" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "ゲートウェイ" @@ -2097,7 +2104,7 @@ msgstr "一般設定" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "一般設定" @@ -2105,7 +2112,7 @@ msgstr "一般設定" msgid "Generate Config" msgstr "コンフィグ生成" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2132,7 +2139,7 @@ msgstr "グローバル ネットワークオプション" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "パスワード設定へ移動..." @@ -2157,7 +2164,7 @@ msgstr "HE.net パスワード" msgid "HE.net username" msgstr "HE.net ユーザー名" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "HT モード (802.11n)" @@ -2165,7 +2172,7 @@ msgstr "HT モード (802.11n)" msgid "Hang Up" msgstr "再起動" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2180,9 +2187,9 @@ msgid "" msgstr "" "このページではホスト名やタイムゾーンなどの基本的な設定を行うことが出来ます。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>の隠匿" @@ -2217,8 +2224,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "ホスト名" @@ -2279,7 +2285,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 ファイアウォール" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "IPv4 アップストリーム" @@ -2371,7 +2377,7 @@ msgstr "IPv6 設定" msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA-プレフィクス" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "IPv6 アップストリーム" @@ -2438,7 +2444,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "識別子" @@ -2484,7 +2490,7 @@ msgstr "" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 msgid "If unchecked, no default route is configured" -msgstr "チェックされていない場合、デフォルト ルートを設定しません" +msgstr "チェックされていない場合、デフォルト ルートは構成されません" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 @@ -2554,10 +2560,14 @@ msgstr "未使用時タイムアウト" msgid "Inbound:" msgstr "受信:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "情報" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "情報" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2580,7 +2590,7 @@ msgstr "" msgid "Install package %q" msgstr "%q パッケージをインストールします" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "プロトコル拡張機能をインストールします..." @@ -2598,7 +2608,7 @@ msgstr "インターフェース" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "インターフェース設定" @@ -2610,12 +2620,12 @@ msgstr "インターフェース一覧" msgid "Interface is reconnecting..." msgstr "インターフェース再接続中..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "インターフェース名" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "インターフェースが存在しないか、接続していません" @@ -2634,15 +2644,15 @@ msgid "Internal Server Error" msgstr "内部サーバー エラー" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "入力値が不正です" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "無効なVLAN IDです! IDは%dから%dまでの値のみ入力可能です。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "無効なVLAN IDです! ユニークなIDを入力してください。" @@ -2651,7 +2661,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "ユーザー名かパスワード、もしくは両方が不正です!もう一度入力してください。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "クライアント間の分離" @@ -2664,10 +2674,9 @@ msgstr "" "ジファイルを確認してください!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScriptを有効にしてください!" @@ -2696,18 +2705,22 @@ msgstr "カーネル ログ" msgid "Kernel Version" msgstr "カーネル バージョン" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "暗号キー" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "キー #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "KiB" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "強制終了" @@ -2747,7 +2760,7 @@ msgstr "LLC" msgid "Label" msgstr "ラベル" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "言語" @@ -2755,7 +2768,7 @@ msgstr "言語" msgid "Language and Style" msgstr "言語とスタイル" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "レイテンシー" @@ -2808,19 +2821,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "待ち受けをこれらのインターフェースとループバックに制限します。" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2836,7 +2849,7 @@ msgstr "" "問い合わせを転送する<abbr title=\"Domain Name System\">DNS</abbr> サーバーの" "リストを設定します" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2845,7 +2858,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2885,7 +2898,6 @@ msgid "Listening port for inbound DNS queries" msgstr "DNSクエリを受信するポート" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "負荷" @@ -2934,7 +2946,7 @@ msgid "Local Startup" msgstr "ローカル スタートアップ" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "時刻" @@ -2976,7 +2988,7 @@ msgstr "ローカライズクエリ" msgid "Locked to channel %s used by: %s" msgstr "チャネル %s にロックされています。次で使用されています: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "ログ出力レベル" @@ -2996,7 +3008,7 @@ msgstr "ログイン" msgid "Logout" msgstr "ログアウト" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -3013,24 +3025,24 @@ msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-アドレス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-アドレス フィルタ" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-フィルタ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-リスト" @@ -3077,11 +3089,11 @@ msgstr "" msgid "Manual" msgstr "手動" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "許容される最大 Listen 間隔" @@ -3107,8 +3119,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文字です。" +"名前の長さは、自動的に含まれるプロトコル/ブリッジ プレフィクス (br-, 6in4-, " +"pppoe- など)と合わせて最大15文字です。" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 msgid "Maximum number of leased addresses." @@ -3117,12 +3129,16 @@ msgstr "リースされるアドレスの最大数です。" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "中" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "メモリー" @@ -3131,9 +3147,9 @@ msgstr "メモリー" msgid "Memory usage (%)" msgstr "メモリ使用率 (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" -msgstr "" +msgstr "メッシュ ID" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 @@ -3143,11 +3159,11 @@ msgstr "" msgid "Metric" msgstr "メトリック" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "ミラー監視ポート" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "ミラー元ポート" @@ -3155,16 +3171,16 @@ msgstr "ミラー元ポート" msgid "Missing protocol extension for proto %q" msgstr "プロトコル %qのプロトコル拡張が見つかりません" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "モビリティ ドメイン" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "モード" @@ -3192,12 +3208,16 @@ msgstr "" msgid "Modem init timeout" msgstr "モデム初期化タイムアウト" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "モニター" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "文字数不足" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "マウント機能" @@ -3207,7 +3227,7 @@ msgstr "マウント機能" msgid "Mount Point" msgstr "マウントポイント" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3257,7 +3277,7 @@ msgstr "下へ移動" msgid "Move up" msgstr "上へ移動" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3281,7 +3301,7 @@ msgstr "NDP-プロキシ" msgid "NT Domain" msgstr "NT ドメイン" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTPサーバー候補" @@ -3299,18 +3319,17 @@ msgstr "新しいインターフェースの名前" msgid "Name of the new network" msgstr "新しいネットワークの名前" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "ナビゲーション" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "ネットマスク" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3334,7 +3353,7 @@ msgstr "ネットワークデバイス アクティビティ (%s)" msgid "Network device is not present" msgstr "ネットワーク デバイスが存在しません" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "インターフェースの無いネットワークです。" @@ -3359,7 +3378,7 @@ msgid "No files found" msgstr "ファイルが見つかりませんでした" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "情報がありません" @@ -3381,10 +3400,9 @@ msgid "No network name specified" msgstr "ネットワーク名が設定されていません" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "パスワードが設定されていません!" @@ -3412,7 +3430,7 @@ msgstr "ゾーンが設定されていません" msgid "Noise" msgstr "ノイズ" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3420,7 +3438,7 @@ msgstr "" msgid "Noise:" msgstr "ノイズ:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3433,7 +3451,7 @@ msgstr "非ワイルドカード" msgid "None" msgstr "なし" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "標準" @@ -3446,16 +3464,20 @@ msgstr "見つかりません" msgid "Not associated" msgstr "アソシエーションされていません" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "未接続" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "システム起動時に開始されません" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "注意: インターフェース名の長さ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "注意" @@ -3469,7 +3491,7 @@ msgstr "" "キャッシュされる DNS エントリーの数です。(最大 10000 件。 0の場合はキャッ" "シュしません)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "圧縮に使用される、並列スレッド数です。" @@ -3551,7 +3573,7 @@ msgstr "変更されるオプション" msgid "Option removed" msgstr "削除されるオプション" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "オプション" @@ -3662,7 +3684,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "デフォルトのインターフェース名を上書きします。" @@ -3726,7 +3748,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN コードが拒否されました" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3756,11 +3778,11 @@ msgstr "PPtP" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 msgid "PSID offset" -msgstr "" +msgstr "PSID オフセット" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 msgid "PSID-bits length" -msgstr "" +msgstr "PSID ビット長" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 msgid "PTM/EFM (Packet Transfer Mode)" @@ -3779,8 +3801,8 @@ msgid "Part of zone %q" msgstr "ゾーン %q の一部" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3790,14 +3812,21 @@ msgstr "パスワード" msgid "Password authentication" msgstr "パスワード認証" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "秘密鍵のパスワード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "秘密鍵のパスワード" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "パスワード強度" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "パスワード2" @@ -3806,27 +3835,27 @@ msgstr "パスワード2" msgid "Paste or drag SSH key file…" msgstr "貼付けまたは SSH 鍵ファイルをドラッグ…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "CA証明書のパス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "クライアント証明書のパス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "秘密鍵のパス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "CA 証明書のパス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "クライアント証明書のパス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "秘密鍵のパス" @@ -3904,6 +3933,14 @@ msgstr "ユーザー名とパスワードを入力してください。" msgid "Policy" msgstr "ポリシー" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "ポーリング間隔" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "ステータス クエリのポーリング間隔(秒)です。" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "ポート" @@ -3912,11 +3949,11 @@ msgstr "ポート" msgid "Port status:" msgstr "ポート ステータス:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3928,7 +3965,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "委任されたプレフィクス (PD)" @@ -3953,8 +3990,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "これらのインターフェースでの待ち受けを停止します。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "クライアント同士の通信を制限します" @@ -3971,7 +4008,7 @@ msgstr "続行" msgid "Processes" msgstr "プロセス" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "プロファイル" @@ -3981,8 +4018,8 @@ msgstr "プロトコル" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "プロトコル" @@ -3995,7 +4032,7 @@ msgstr "新しいインターフェースのプロトコル" msgid "Protocol support is not installed" msgstr "プロトコル サポートがインストールされていません" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "NTPサーバー機能を有効にする" @@ -4003,7 +4040,7 @@ msgstr "NTPサーバー機能を有効にする" msgid "Provide new network" msgstr "新しいネットワークを設定します" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "擬似アドホック (ahdemo)" @@ -4032,7 +4069,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "クオリティ" @@ -4044,11 +4081,11 @@ msgstr "" "アップストリームの利用可能な全 <abbr title=\"Domain Name System\">DNS</abbr> " "サーバを問い合わせます" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4056,8 +4093,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 NAT-Tモード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "ネットワーク参加の RSSI しきい値" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTSしきい値" @@ -4071,27 +4112,27 @@ msgstr "RX" msgid "RX Rate" msgstr "受信レート" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Radiusアカウントサーバー ポート番号" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Radiusアカウント秘密鍵" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Radiusアカウントサーバー" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Radius認証サーバー ポート番号" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Radius認証秘密鍵" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Radius認証サーバー" @@ -4154,15 +4195,15 @@ msgstr "リアルタイム・トラフィック" msgid "Realtime Wireless" msgstr "リアルタイム・無線LAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" -msgstr "" +msgstr "再アソシエーション制限時間" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 msgid "Rebind protection" msgstr "DNSリバインディング・プロテクション" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "再起動" @@ -4180,8 +4221,8 @@ msgstr "デバイスのオペレーティングシステムを再起動します msgid "Receive" msgstr "受信" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "受信アンテナ" @@ -4248,7 +4289,7 @@ msgstr "IPv6-アドレスのリクエスト" msgid "Request IPv6-prefix of length" msgstr "リクエストするIPv6-プレフィクス長" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "必須" @@ -4271,13 +4312,13 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "'フル' バージョンの wpad/hostapd と、無線LANドライバーによるサポートが必要で" -"す。<br />(2017年2月現在: ath9k 及び ath10k、LEDE内では mwlwifi 及び mt76)" +"す。<br />(2019年1月現在: ath9k、ath10k、mwlwifi 及び mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4331,8 +4372,8 @@ msgid "Restore backup" msgstr "バックアップから復元する" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "パスワードを表示する/隠す" @@ -4379,8 +4420,8 @@ msgstr "ルート タイプ" msgid "Router Advertisement-Service" msgstr "ルーター アドバタイズメント-サービス" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "ルーター パスワード" @@ -4418,7 +4459,7 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH アクセス" @@ -4435,7 +4476,7 @@ msgstr "SSH サーバーポート" msgid "SSH username" msgstr "SSH ユーザー名" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH キー" @@ -4443,7 +4484,7 @@ msgstr "SSH キー" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4454,7 +4495,7 @@ msgstr "スワップ" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "保存" @@ -4483,7 +4524,7 @@ msgstr "スキャン" msgid "Scan request failed" msgstr "スキャン要求が失敗しました" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "スケジュールタスク" @@ -4523,7 +4564,7 @@ msgstr "" "設定された秒間隔でLCP echoリクエストを送信します。失敗数しきい値を設定した場" "合のみ、機能が有効になります。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "クライアントの分離" @@ -4558,7 +4599,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "時刻同期設定" @@ -4574,7 +4615,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "DHCPサーバーを設定" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4582,7 +4623,7 @@ msgstr "" msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Short Preamble" @@ -4605,11 +4646,11 @@ msgstr "インターフェースを終了します" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "信号強度" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4625,7 +4666,7 @@ msgstr "サイズ" msgid "Size of DNS query cache" msgstr "DNS クエリ キャッシュのサイズ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "ZRam デバイスのサイズ (MB) です。" @@ -4634,23 +4675,21 @@ msgstr "ZRam デバイスのサイズ (MB) です。" msgid "Skip" msgstr "スキップ" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "コンテンツへ移動" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "ナビゲーションへ移動" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "スロット時間" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" -msgstr "" +msgstr "ソフトウェア VLAN" #: modules/luci-base/luasrc/view/cbi/header.htm:2 msgid "Some fields are invalid, cannot save values!" @@ -4702,19 +4741,23 @@ msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 msgid "Specify a TOS (Type of Service)." -msgstr "" +msgstr "TOS (Type of Service) を指定します。" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64)." msgstr "" +"デフォルト値 (64) 以外のカプセル化パケットの TTL (Time to Live) を指定しま" +"す。" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes)." msgstr "" +"デフォルト値 (1280 bytes) 以外の MTU (Maximum Transmission Unit) を指定しま" +"す。" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 @@ -4738,7 +4781,7 @@ msgstr "設定の適用を開始しています..." msgid "Starting wireless scan..." msgstr "無線LANのスキャンを開始しています..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "スタートアップ" @@ -4758,7 +4801,7 @@ msgstr "静的リース" msgid "Static Routes" msgstr "静的ルーティング" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "静的アドレス" @@ -4772,7 +4815,7 @@ msgstr "" "名をアサインします。また、クライアントは対応するリースを使用するホストがその1" "台のみで、かつ静的なインターフェース設定にする必要があります。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "非アクティブなステーションの制限" @@ -4792,6 +4835,10 @@ msgstr "停止" msgid "Strict order" msgstr "問い合わせの制限" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "強" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "送信" @@ -4817,15 +4864,15 @@ msgstr "スワップ機能" msgid "Switch" msgstr "スイッチ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "スイッチ %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "スイッチ %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4836,9 +4883,9 @@ msgstr "" msgid "Switch Port Mask" msgstr "スイッチポート マスク" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" -msgstr "" +msgstr "スイッチ VLAN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 msgid "Switch protocol" @@ -4852,8 +4899,12 @@ msgstr "CIDR リスト表記へ切替" msgid "Switchport activity (%s)" msgstr "スイッチポート アクティビティ (%s)" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "NTP サーバーと同期" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "ブラウザの時刻と同期" @@ -4878,7 +4929,7 @@ msgstr "システムログ" msgid "System Properties" msgstr "システム プロパティ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "システムログ バッファサイズ" @@ -4996,9 +5047,8 @@ msgstr "" "未適用の変更を適用後、デバイスは %d 秒以内に完了できなかった可能性がありま" "す。これは、安全上の理由によりロールバックされる設定に起因するものです。それ" "でも設定の変更が正しいと思う場合は、チェックなしの変更の適用を行ってくださ" -"い。もしくは、再度適用を試行する前にこの警告を除去して設定内容の編集を行う" -"か、現在動作している設定状況を維持するために未適用の変更を取り消してくださ" -"い。" +"い。もしくは、再度適用を試行する前にこの警告を閉じて設定内容の編集を行うか、" +"現在動作している設定状況を維持するために未適用の変更を取り消してください。" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 @@ -5067,6 +5117,7 @@ msgid "" "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " "addresses." msgstr "" +"IPv4 プレフィクスの長さ (bit) です。残りは IPv6 アドレスで使用されます。" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 @@ -5102,13 +5153,13 @@ msgstr "選択中のプロトコルを使用する場合、デバイスを設定 msgid "The submitted security token is invalid or already expired!" msgstr "送信されたセキュリティ トークンは無効もしくは期限切れです!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "システムは設定領域を消去中です。完了後、自動的に再起動します。" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -5133,7 +5184,7 @@ msgstr "" "マットではありません。このプラットフォームに適合したイメージファイルかどう" "か、確認してください。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "テーマ" @@ -5163,10 +5214,9 @@ msgstr "" "選択してください。" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5261,24 +5311,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "このページでは、現在アクティブなネットワーク接続を表示します。" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "このセクションは未設定です。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "時刻設定" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "時刻同期機能はまだ設定されていません。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "Group Temporal Key (GTK) 再生成間隔" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "タイムゾーン" @@ -5320,7 +5370,7 @@ msgstr "トラフィック" msgid "Transfer" msgstr "転送" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "転送レート" @@ -5328,14 +5378,14 @@ msgstr "転送レート" msgid "Transmit" msgstr "送信" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "電波出力" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "送信アンテナ" @@ -5351,7 +5401,7 @@ msgstr "トリガーモード" msgid "Tunnel ID" msgstr "トンネル ID" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "トンネルインターフェース" @@ -5366,7 +5416,7 @@ msgid "Tx-Power" msgstr "送信電力" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "タイプ" @@ -5425,19 +5475,19 @@ msgstr "AFTR ホスト名を解決できません" msgid "Unable to resolve peer host name" msgstr "ピアのホスト名を解決できません" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "不明" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "不明なエラー (%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Unmanaged" @@ -5451,7 +5501,6 @@ msgid "Unnamed key" msgstr "名称未設定の公開鍵" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5466,7 +5515,7 @@ msgstr "非対応の MAP タイプです" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "サポートされていないプロトコルタイプ" @@ -5520,8 +5569,8 @@ msgstr "DHCPゲートウェイを使用する" msgid "Use DNS servers advertised by peer" msgstr "ピアから通知されたDNSサーバーを使用する" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "ISO/IEC 3166 alpha2の国コードを使用します。" @@ -5628,11 +5677,11 @@ msgstr "" msgid "Used" msgstr "使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "使用するキースロット" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5660,11 +5709,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "%q上のVLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "%q上のVLAN (%s)" @@ -5710,18 +5759,18 @@ msgstr "確認" msgid "Virtual dynamic interface" msgstr "仮想ダイナミックインターフェース" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP オープンシステム" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP 共有キー" @@ -5729,8 +5778,8 @@ msgstr "WEP 共有キー" msgid "WEP passphrase" msgstr "WEP 暗号フレーズ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM モード" @@ -5738,9 +5787,9 @@ msgstr "WMM モード" msgid "WPA passphrase" msgstr "WPA 暗号フレーズ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5765,8 +5814,8 @@ msgstr "設定を適用中です... %d 秒" msgid "Waiting for device..." msgstr "デバイスを起動中です..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "警告" @@ -5774,12 +5823,19 @@ msgstr "警告" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "警告: 再起動すると消えてしまう、保存されていない設定があります!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "弱" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " "key options." msgstr "" +"PSK を使用する場合、 PMK は自動的に生成されることができます。このオプションが" +"有効な場合、以下の R0/R1 キー オプションは適用されません。 R0 と R1 キーのオ" +"プションを使用するには、これを無効化してください。" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 msgid "Wi-Fi activity (%s)" @@ -5801,7 +5857,7 @@ msgstr "無線データ送信状態 (%s)" msgid "Wi-Fi on (%s)" msgstr "無線オン (%s)" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "帯域幅" @@ -5815,12 +5871,12 @@ msgstr "WireGuard VPN" msgid "Wireless" msgstr "無線" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "無線アダプタ" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "無線ネットワーク" @@ -5828,20 +5884,20 @@ msgstr "無線ネットワーク" msgid "Wireless Overview" msgstr "無線LANデバイス一覧" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "無線LANセキュリティ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "無線LAN機能は無効になっています" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "無線LAN機能がアソシエーションされていません" @@ -5861,7 +5917,7 @@ msgstr "無線LAN機能は有効になっています" msgid "Write received DNS requests to syslog" msgstr "受信したDNSリクエストをsyslogへ記録します" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "システムログをファイルに書き込む" @@ -5881,37 +5937,26 @@ msgstr "" "</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "JavaScriptを有効にしない場合、LuCIは正しく動作しません。" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Internet Explorerが古すぎるため、このページを正しく表示することができません。" -"バージョン 7以上にアップグレードするか、FirefoxやOpera、Safariなど別のブラウ" -"ザーを使用してください。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "ZRam 圧縮アルゴリズム" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "ZRam 圧縮ストリーム" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ZRam 設定" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "ZRam サイズ" @@ -5922,11 +5967,11 @@ msgstr "全て" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5979,8 +6024,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "無効" @@ -6039,19 +6084,6 @@ msgstr "ターゲットがネットワークの場合" msgid "input" msgstr "入力" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6084,7 +6116,7 @@ msgstr "5 文字または 13 文字のキー" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "ローカル <abbr title=\"Domain Name System\">DNS</abbr>ファイル" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "分" @@ -6112,20 +6144,18 @@ msgstr "空ではない値" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "オフ" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "オン" @@ -6171,8 +6201,8 @@ msgstr "リレー モード" msgid "routed" msgstr "routed" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "秒" @@ -6193,11 +6223,11 @@ msgstr "ステートレス" msgid "stateless + stateful" msgstr "ステートレス + ステートフル" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "tagged" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6224,7 +6254,7 @@ msgstr "設定しない" msgid "unspecified -or- create:" msgstr "設定しない -又は- 作成:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "untagged" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index d60fd88dcd..2d9458bc87 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 분 부하:" @@ -98,7 +102,7 @@ msgstr "1 분 부하:" msgid "15 Minute Load:" msgstr "15 분 부하:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 분 부하:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -156,7 +160,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -189,7 +193,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 설정" @@ -293,7 +297,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -301,8 +305,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "" @@ -334,7 +338,7 @@ msgstr "Active DHCP 임대 목록" msgid "Active DHCPv6 Leases" msgstr "Active DHCPv6 임대 목록" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "" @@ -342,8 +346,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -380,8 +384,8 @@ msgstr "추가적인 Hosts 파일들" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "주소" @@ -390,30 +394,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "관리" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "고급 설정" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -440,21 +448,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "<abbr title=\"Secure Shell\">SSH</abbr> 암호 인증을 허용합니다" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "" @@ -495,14 +503,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -574,7 +582,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -586,17 +594,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -622,7 +630,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "" @@ -637,7 +645,7 @@ msgstr "" msgid "Associated Stations" msgstr "연결된 station 들" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -646,7 +654,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "" @@ -664,12 +672,11 @@ msgstr "인증이 필요합니다" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "자동 Refresh" @@ -741,7 +748,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "" @@ -771,7 +778,7 @@ msgstr "" msgid "Backup" msgstr "백업" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Firmware 백업 / Flash" @@ -783,12 +790,12 @@ msgstr "" msgid "Bad address specified!" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -818,7 +825,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "" @@ -826,7 +833,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "" @@ -910,7 +917,7 @@ msgstr "" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "장비 접근을 위한 관리자 암호를 변경합니다" @@ -918,12 +925,12 @@ msgstr "장비 접근을 위한 관리자 암호를 변경합니다" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "" @@ -966,7 +973,7 @@ msgstr "" "운 zone 을 정의하고 인터페이스 연결을 원한다면 <em>create</em> 항목을 입력하" "세요." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -974,7 +981,7 @@ msgstr "" "이 무선랜 인터페이스와 연결하고자 하는 네트워크(들)을 선택하세요. 혹은 새로" "운 네트워크를 정의할려면 <em>create</em> 을 작성하세요." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -996,8 +1003,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "" @@ -1039,7 +1046,7 @@ msgstr "목록 닫기..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Data 를 수집중입니다..." @@ -1055,7 +1062,7 @@ msgstr "" msgid "Common Configuration" msgstr "공통 설정" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1087,7 +1094,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "다시 확인" @@ -1096,12 +1103,12 @@ msgid "Connect" msgstr "연결" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "연결 시간" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "" @@ -1124,9 +1131,9 @@ msgstr "" msgid "Country" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "" @@ -1151,11 +1158,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1188,15 +1195,15 @@ msgstr "" "원한다면 장치에 부착된 <abbr title=\"Light Emitting Diode\">LED</abbr> 들의 " "행동을 마음대로 변경할 수 있습니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1210,7 +1217,7 @@ msgstr "DHCP 서버" msgid "DHCP and DNS" msgstr "DHCP 와 DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP client" @@ -1230,16 +1237,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "" @@ -1272,7 +1279,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1280,7 +1287,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1288,18 +1295,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1339,7 +1346,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "삭제" @@ -1353,7 +1360,7 @@ msgstr "" msgid "Delete this network" msgstr "이 네트워크를 삭제합니다" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1369,8 +1376,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1425,7 +1432,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1443,11 +1450,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1470,16 +1477,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "" @@ -1580,7 +1587,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "" @@ -1605,7 +1612,7 @@ msgstr "이 인터페이스를 수정합니다" msgid "Edit this network" msgstr "이 네트워크를 수정합니다" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1640,11 +1647,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "NTP client 활성화" @@ -1656,27 +1663,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "TFTP 서버 활성화" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "VLAN 기능 활성화" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1710,7 +1717,7 @@ msgstr "활성화됨" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1727,9 +1734,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "암호화" @@ -1749,28 +1756,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet 스위치" @@ -1786,7 +1793,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "만료 시간" @@ -1799,23 +1806,23 @@ msgstr "임대한 주소의 유효 시간. 최소값은 2 분 (<code>2m</code> msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "외부 system log 서버" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "외부 system log 서버 포트" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "외부 system log 서버 프로토콜" @@ -1823,15 +1830,15 @@ msgstr "외부 system log 서버 프로토콜" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1923,7 +1930,7 @@ msgstr "새로운 firmware 이미지로 flash" msgid "Flash operations" msgstr "Flash 작업" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1937,11 +1944,11 @@ msgstr "" msgid "Force" msgstr "강제하기" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1949,11 +1956,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "다른 DHCP 서버가 탐지되더라도 이 네트워크에 DHCP 를 강제합니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1977,7 +1984,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1985,7 +1992,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1993,12 +2000,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -2015,7 +2022,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2024,8 +2031,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2048,7 +2055,7 @@ msgstr "기본 설정" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "기본 설정" @@ -2056,7 +2063,7 @@ msgstr "기본 설정" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2083,7 +2090,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "암호 설정 하기" @@ -2108,7 +2115,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2116,7 +2123,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2131,9 +2138,9 @@ msgid "" msgstr "" "여기서 호스트이름이나 시간대와 같은 기본적인 장비 설정을 할 수 있습니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> 숨기기" @@ -2167,8 +2174,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "호스트이름" @@ -2229,7 +2235,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "IPv4 방화벽" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2321,7 +2327,7 @@ msgstr "IPv6 설정" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2388,7 +2394,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "" @@ -2494,10 +2500,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2518,7 +2528,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2536,7 +2546,7 @@ msgstr "인터페이스" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "인터페이스 설정" @@ -2548,12 +2558,12 @@ msgstr "인터페이스 개요" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "인터페이스 이름" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2572,15 +2582,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2588,7 +2598,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2599,10 +2609,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2631,18 +2640,22 @@ msgstr "Kernel 로그" msgid "Kernel Version" msgstr "Kernel 버전" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "" @@ -2682,7 +2695,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "언어" @@ -2690,7 +2703,7 @@ msgstr "언어" msgid "Language and Style" msgstr "언어와 스타일" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2742,19 +2755,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2768,7 +2781,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2777,7 +2790,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2816,7 +2829,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "부하" @@ -2865,7 +2877,7 @@ msgid "Local Startup" msgstr "Local 시작 프로그램" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "지역 시간" @@ -2901,7 +2913,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Log output 레벨" @@ -2921,7 +2933,7 @@ msgstr "로그인" msgid "Logout" msgstr "로그아웃" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2937,24 +2949,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-주소" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-주소 필터" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-필터" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "" @@ -3000,11 +3012,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3038,12 +3050,16 @@ msgstr "임대될 수 있는 주소의 최대 숫자." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "메모리" @@ -3052,7 +3068,7 @@ msgstr "메모리" msgid "Memory usage (%)" msgstr "메모리 사용량 (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3064,11 +3080,11 @@ msgstr "" msgid "Metric" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3076,16 +3092,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "" @@ -3113,12 +3129,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3128,7 +3148,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3176,7 +3196,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "" @@ -3200,7 +3220,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP 서버 목록" @@ -3218,18 +3238,17 @@ msgstr "" msgid "Name of the new network" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3253,7 +3272,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3278,7 +3297,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "이용 가능한 정보가 없습니다" @@ -3300,10 +3319,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "암호 설정을 해주세요!" @@ -3331,7 +3349,7 @@ msgstr "" msgid "Noise" msgstr "노이즈" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3339,7 +3357,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3352,7 +3370,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3365,16 +3383,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "연결되지 않음" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3386,7 +3408,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3468,7 +3490,7 @@ msgstr "변경된 option" msgid "Option removed" msgstr "삭제된 option" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3575,7 +3597,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "기본 인터페이스 이름을 덮어씁니다" @@ -3639,7 +3661,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3692,8 +3714,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3703,14 +3725,21 @@ msgstr "암호" msgid "Password authentication" msgstr "암호 인증" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3719,27 +3748,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3817,6 +3846,14 @@ msgstr "사용자이름과 암호를 입력해 주세요." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "포트" @@ -3825,11 +3862,11 @@ msgstr "포트" msgid "Port status:" msgstr "포트 상태:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3841,7 +3878,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3864,8 +3901,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "" @@ -3882,7 +3919,7 @@ msgstr "" msgid "Processes" msgstr "프로세스" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3892,8 +3929,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "프로토콜" @@ -3906,7 +3943,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3914,7 +3951,7 @@ msgstr "" msgid "Provide new network" msgstr "새로운 네트워크를 추가합니다" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3939,7 +3976,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3949,11 +3986,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3961,8 +3998,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3976,27 +4017,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4052,7 +4093,7 @@ msgstr "실시간 트래픽" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4060,7 +4101,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "재부팅" @@ -4078,8 +4119,8 @@ msgstr "장치의 운영체제를 재부팅합니다" msgid "Receive" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "" @@ -4146,7 +4187,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4169,10 +4210,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4227,8 +4268,8 @@ msgid "Restore backup" msgstr "백업 복구" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "암호 보이기/숨기기" @@ -4275,8 +4316,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "라우터 암호" @@ -4314,7 +4355,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4331,7 +4372,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4339,7 +4380,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4350,7 +4391,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "저장" @@ -4379,7 +4420,7 @@ msgstr "Scan 하기" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "작업 관리" @@ -4414,7 +4455,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "" @@ -4449,7 +4490,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4465,7 +4506,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4473,7 +4514,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4496,11 +4537,11 @@ msgstr "이 인터페이스를 정지합니다" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "신호" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4516,7 +4557,7 @@ msgstr "Size" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4525,21 +4566,19 @@ msgstr "" msgid "Skip" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4626,7 +4665,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "시작 프로그램" @@ -4646,7 +4685,7 @@ msgstr "Static Lease 들" msgid "Static Routes" msgstr "Static Route 경로" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4660,7 +4699,7 @@ msgstr "" "할 때 사용됩니다. 이 기능은 또한 지정된 host 에 대해서만 주소 임대를 하도록 " "하는 non-dynamic 인터페이스 설정에도 사용됩니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4680,6 +4719,10 @@ msgstr "정지" msgid "Strict order" msgstr "Strict order" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "제출하기" @@ -4705,15 +4748,15 @@ msgstr "" msgid "Switch" msgstr "스위치" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "스위치 %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "스위치 %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4722,7 +4765,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "스위치 VLAN" @@ -4738,8 +4781,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "브라우저 시간대로 동기화" @@ -4764,7 +4811,7 @@ msgstr "시스템 로그" msgid "System Properties" msgstr "시스템 등록 정보" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "System log 버퍼 크기" @@ -4963,13 +5010,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4987,7 +5034,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "디자인" @@ -5015,10 +5062,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5103,24 +5149,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "이 페이지는 현재 active 상태인 네트워크 연결을 보여줍니다." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "이 section 은 아직 입력된 값이 없습니다" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "시간 동기화" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "시간 동기화가 아직 설정되지 않았습니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "시간대" @@ -5162,7 +5208,7 @@ msgstr "트래픽" msgid "Transfer" msgstr "전송량" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "" @@ -5170,14 +5216,14 @@ msgstr "" msgid "Transmit" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "" @@ -5193,7 +5239,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5208,7 +5254,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "유형" @@ -5267,19 +5313,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "알수없음" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5293,7 +5339,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5308,7 +5353,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5361,8 +5406,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "Peer 가 권장한 DNS 서버 사용" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5470,11 +5515,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5502,11 +5547,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLAN 설정: %q (%s)" @@ -5552,18 +5597,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5571,8 +5616,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM Mode" @@ -5580,9 +5625,9 @@ msgstr "WMM Mode" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5604,8 +5649,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5613,7 +5658,11 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5640,7 +5689,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5654,12 +5703,12 @@ msgstr "" msgid "Wireless" msgstr "무선" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "무선랜 네트워크" @@ -5667,20 +5716,20 @@ msgstr "무선랜 네트워크" msgid "Wireless Overview" msgstr "무선랜 개요" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "무선랜 보안" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "무선이 비활성화되어" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "무선이 연결되어 있지 않습니다" @@ -5700,7 +5749,7 @@ msgstr "무선 네트워크가 켜져 있음" msgid "Write received DNS requests to syslog" msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "System log 출력 파일 경로" @@ -5720,34 +5769,26 @@ msgstr "" "다!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5758,11 +5799,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5815,8 +5856,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "" @@ -5875,19 +5916,6 @@ msgstr "Target 이 네트워크일 경우" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5920,7 +5948,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파일" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5948,20 +5976,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -6005,8 +6031,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6027,11 +6053,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6058,7 +6084,7 @@ msgstr "" msgid "unspecified -or- create:" msgstr "unspecified -혹은- create:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 5e1f47a4d7..3e9c59d189 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(tiada interface dipasang)" msgid "-- Additional Field --" msgstr "-- Gelanggang Tambahan --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Sila pilih --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- memperibadi --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -98,7 +102,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"perkhidmatan set mengenalpasti diperpanjangkan\">ESSID</abbr>" @@ -190,7 +194,7 @@ msgstr "IPv6-Pintu gerbang" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Konfigurasi lampu LED" @@ -290,7 +294,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -298,8 +302,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Pusat akses" @@ -329,7 +333,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -337,8 +341,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -375,8 +379,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "" @@ -385,30 +389,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Pentadbiran" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Tetapan Lanjutan" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -435,21 +443,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Membenarkan pengesahan kata laluan SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Izinkan semua kecualian yang disenaraikan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Izinkan senarai saja" @@ -490,14 +498,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -569,7 +577,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -581,17 +589,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -617,7 +625,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "" @@ -632,7 +640,7 @@ msgstr "" msgid "Associated Stations" msgstr "Associated Stesen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -641,7 +649,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Authentifizierung" @@ -659,12 +667,11 @@ msgstr "Otorisasi Diperlukan" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -736,7 +743,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "" @@ -766,7 +773,7 @@ msgstr "Kembali ke keputusan scan" msgid "Backup" msgstr "Sandaran" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "" @@ -778,12 +785,12 @@ msgstr "" msgid "Bad address specified!" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -810,7 +817,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "" @@ -818,7 +825,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Bridge" @@ -902,7 +909,7 @@ msgstr "Laman diterapkan." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "" @@ -910,12 +917,12 @@ msgstr "" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Saluran" @@ -954,13 +961,13 @@ msgid "" "interface to it." msgstr "Pilih zon firewall yang anda ingin tetapkan untuk antar muka ini." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -980,8 +987,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 #, fuzzy msgid "Client" msgstr "Pelanggan" @@ -1024,7 +1031,7 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "" @@ -1040,7 +1047,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1072,7 +1079,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Pengesahan" @@ -1081,12 +1088,12 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Sambungan Batas" @@ -1109,9 +1116,9 @@ msgstr "" msgid "Country" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Kod negara" @@ -1136,11 +1143,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1171,15 +1178,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "Mengkustomisasi perilaku peranti LED jika mungkin." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1193,7 +1200,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "" @@ -1213,16 +1220,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "" @@ -1255,7 +1262,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1263,7 +1270,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1271,18 +1278,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1319,7 +1326,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Padam" @@ -1333,7 +1340,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1349,8 +1356,8 @@ msgstr "Tempat tujuan" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1403,7 +1410,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1421,11 +1428,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1448,16 +1455,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Jarak Optimasi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Jarak ke rangkaian terjauh ahli dalam meter." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Keanekaragaman" @@ -1557,7 +1564,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-Kaedah" @@ -1582,7 +1589,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1617,11 +1624,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1633,27 +1640,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1687,7 +1694,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1704,9 +1711,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Enkripsi" @@ -1726,28 +1733,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Kesalahan" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet Adapter" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet Beralih" @@ -1763,7 +1770,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "" @@ -1776,23 +1783,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1800,15 +1807,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1900,7 +1907,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1914,11 +1921,11 @@ msgstr "" msgid "Force" msgstr "Paksa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1926,11 +1933,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1954,7 +1961,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1962,7 +1969,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1970,12 +1977,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Fragmentasi Ambang" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Bingkai Meletup" @@ -1992,7 +1999,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2001,8 +2008,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2025,7 +2032,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Setup Umum" @@ -2033,7 +2040,7 @@ msgstr "Setup Umum" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2060,7 +2067,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2085,7 +2092,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2093,7 +2100,7 @@ msgstr "" msgid "Hang Up" msgstr "Menutup" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2109,9 +2116,9 @@ msgstr "" "Di sini anda boleh mengkonfigurasi aspek asas peranti anda seperti nama host " "atau zon." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Menyembunyikan ESSID" @@ -2145,8 +2152,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Nama Host" @@ -2207,7 +2213,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2299,7 +2305,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2366,7 +2372,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identiti" @@ -2477,10 +2483,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2501,7 +2511,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2519,7 +2529,7 @@ msgstr "Interface" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2531,12 +2541,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2555,15 +2565,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Tak Sah" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2571,7 +2581,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Username dan / atau password tak sah! Sila cuba lagi." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2585,10 +2595,9 @@ msgstr "" "memori flash, sila buat pengesahan pada fail gambar!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2618,18 +2627,22 @@ msgstr "Log Kernel" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Kunci" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Tamatkan" @@ -2669,7 +2682,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Bahasa" @@ -2677,7 +2690,7 @@ msgstr "Bahasa" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2728,19 +2741,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2754,7 +2767,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2763,7 +2776,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2801,7 +2814,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Load" @@ -2850,7 +2862,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Masa Tempatan" @@ -2886,7 +2898,7 @@ msgstr "Soalan tempatan" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2906,7 +2918,7 @@ msgstr "Login" msgid "Logout" msgstr "Logout" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2922,24 +2934,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Penapis alamat MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Penapis MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Senarai MAC" @@ -2985,11 +2997,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3023,12 +3035,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memori" @@ -3037,7 +3053,7 @@ msgstr "Memori" msgid "Memory usage (%)" msgstr "Penggunaan Memori (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3049,11 +3065,11 @@ msgstr "" msgid "Metric" msgstr "Metrik" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3061,16 +3077,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mode" @@ -3098,12 +3114,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3113,7 +3133,7 @@ msgstr "" msgid "Mount Point" msgstr "Mount Point" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3163,7 +3183,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3187,7 +3207,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3205,18 +3225,17 @@ msgstr "" msgid "Name of the new network" msgstr "Nama rangkaian baru" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3240,7 +3259,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3265,7 +3284,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3287,10 +3306,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3318,7 +3336,7 @@ msgstr "" msgid "Noise" msgstr "Kebisingan" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3326,7 +3344,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3339,7 +3357,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3352,16 +3370,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3373,7 +3395,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3454,7 +3476,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3561,7 +3583,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3623,7 +3645,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3676,8 +3698,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3687,14 +3709,21 @@ msgstr "Kata laluan" msgid "Password authentication" msgstr "Kata laluan pengesahan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Kata Laluan Kunci Swasta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3703,27 +3732,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Path ke CA-Sijil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Path ke Kunci Swasta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3801,6 +3830,14 @@ msgstr "Sila masukkan username dan kata laluan anda." msgid "Policy" msgstr "Dasar" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3809,11 +3846,11 @@ msgstr "Port" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3825,7 +3862,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3848,8 +3885,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Mencegah komunikasi sesama Pelanggan" @@ -3866,7 +3903,7 @@ msgstr "Teruskan" msgid "Processes" msgstr "Proses" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3876,8 +3913,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokol" @@ -3890,7 +3927,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3898,7 +3935,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3923,7 +3960,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3933,11 +3970,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3945,8 +3982,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS-Ambang" @@ -3961,27 +4002,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4035,7 +4076,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4043,7 +4084,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4061,8 +4102,8 @@ msgstr "Reboot sistem operasi peranti anda" msgid "Receive" msgstr "Menerima" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena Penerima" @@ -4129,7 +4170,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4152,10 +4193,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4210,8 +4251,8 @@ msgid "Restore backup" msgstr "Kembalikan sandaran" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4258,8 +4299,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4297,7 +4338,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4314,7 +4355,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4322,7 +4363,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4333,7 +4374,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Simpan" @@ -4362,7 +4403,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tugas Jadual" @@ -4397,7 +4438,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Pisahkan Pelanggan" @@ -4432,7 +4473,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4448,7 +4489,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4456,7 +4497,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4479,11 +4520,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Isyarat" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4499,7 +4540,7 @@ msgstr "Saiz" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4508,21 +4549,19 @@ msgstr "" msgid "Skip" msgstr "Skip" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Skip ke kadar" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Skip ke navigation" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Slot masa" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4609,7 +4648,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4629,7 +4668,7 @@ msgstr "Statische Einträge" msgid "Static Routes" msgstr "Laluan Statik" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4640,7 +4679,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4660,6 +4699,10 @@ msgstr "" msgid "Strict order" msgstr "Order Ketat" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Menyerahkan" @@ -4685,15 +4728,15 @@ msgstr "" msgid "Switch" msgstr "Beralih" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4702,7 +4745,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4718,8 +4761,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4744,7 +4791,7 @@ msgstr "Log Sistem" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4940,13 +4987,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4971,7 +5018,7 @@ msgstr "" "Format Fail gambar yang diupload tidak disokongkan. Pastikan anda memilih " "fail format gambar yang generik untuk platform anda." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -4999,10 +5046,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5085,24 +5131,24 @@ msgstr "" "aktif." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Bahagian ini belum mengandungi nilai-nilai lagi" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zon masa" @@ -5141,7 +5187,7 @@ msgstr "Lalu lintas" msgid "Transfer" msgstr "Pemindahan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Kelajuan Penghantaran" @@ -5149,14 +5195,14 @@ msgstr "Kelajuan Penghantaran" msgid "Transmit" msgstr "Pancar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Daya Pancar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antena Pemancar" @@ -5172,7 +5218,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5187,7 +5233,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Jenis" @@ -5246,19 +5292,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5272,7 +5318,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5287,7 +5332,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5337,8 +5382,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5441,11 +5486,11 @@ msgstr "" msgid "Used" msgstr "Diguna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5473,11 +5518,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5523,18 +5568,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5542,8 +5587,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM Mod" @@ -5551,9 +5596,9 @@ msgstr "WMM Mod" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5577,8 +5622,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5586,7 +5631,11 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5613,7 +5662,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5627,12 +5676,12 @@ msgstr "" msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Adapter Wayarles" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Rangkaian Wayarles" @@ -5640,20 +5689,20 @@ msgstr "Rangkaian Wayarles" msgid "Wireless Overview" msgstr "Gambaran keseluruhan Wayarles" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Keselamatan WLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5673,7 +5722,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5689,34 +5738,26 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5727,11 +5768,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5784,8 +5825,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "mematikan" @@ -5842,19 +5883,6 @@ msgstr "jika target itu ialah rangkaian" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5887,7 +5915,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Fail DNS tempatan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5915,20 +5943,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5972,8 +5998,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5994,11 +6020,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6025,7 +6051,7 @@ msgstr "" msgid "unspecified -or- create:" msgstr "Tidak dirinci -atau- buat:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/no/base.po b/modules/luci-base/po/no/base.po index 36c0f83c73..9486b3a227 100644 --- a/modules/luci-base/po/no/base.po +++ b/modules/luci-base/po/no/base.po @@ -20,7 +20,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -52,16 +52,16 @@ msgstr "(ingen grensesnitt tilknyttet)" msgid "-- Additional Field --" msgstr "-- Tilleggs Felt --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Vennligst velg --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- egendefinert --" @@ -85,6 +85,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 minutts belastning:" @@ -93,7 +97,7 @@ msgstr "1 minutts belastning:" msgid "15 Minute Load:" msgstr "15 minutters belastning:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -105,35 +109,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 minutters belastning:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -153,7 +157,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servere skal følge rekkefølgen " "i oppslagsfilen ved spørringer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -188,7 +192,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurasjon" @@ -299,7 +303,7 @@ msgstr "" msgid "ATM device number" msgstr "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> enhetsnummer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -307,8 +311,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Tilgangskonsentrator" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Aksesspunkt" @@ -338,7 +342,7 @@ msgstr "Aktive DHCP Leier" msgid "Active DHCPv6 Leases" msgstr "Aktive DHCPv6 Leier" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc (Uavhengig)" @@ -346,8 +350,8 @@ msgstr "Ad-Hoc (Uavhengig)" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -384,8 +388,8 @@ msgstr "Tilleggs vertsfiler" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adresse" @@ -394,30 +398,34 @@ msgid "Address to access local relay bridge" msgstr "Adresse for tilgang til lokal relébro" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administrasjon" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Avanserte Innstillinger" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Varsle" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -444,21 +452,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Tillat <abbr title=\"Secure Shell\">SSH</abbr> passord godkjenning" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Tillat alle unntatt oppførte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Tillat kun oppførte" @@ -499,14 +507,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -578,7 +586,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -590,17 +598,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antenne 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antenne 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Antennekonfigurasjon" @@ -626,7 +634,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Tilknytt grensesnitt..." @@ -641,7 +649,7 @@ msgstr "" msgid "Associated Stations" msgstr "Tilkoblede Klienter" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -650,7 +658,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Godkjenning" @@ -668,12 +676,11 @@ msgstr "Autorisasjon er nødvendig" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatisk oppdatering" @@ -745,7 +752,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -775,7 +782,7 @@ msgstr "Tilbake til skanne resultat" msgid "Backup" msgstr "Sikkerhetskopi" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Sikkerhetskopiering/Firmware oppgradering" @@ -787,12 +794,12 @@ msgstr "Sikkerhetskopier filliste" msgid "Bad address specified!" msgstr "Ugyldig adresse oppgitt!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -822,7 +829,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitrate" @@ -830,7 +837,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Overstyr falske NX Domener" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Bro" @@ -914,7 +921,7 @@ msgstr "Endringer utført." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Endrer administrator passordet for tilgang til enheten" @@ -922,12 +929,12 @@ msgstr "Endrer administrator passordet for tilgang til enheten" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kanal" @@ -970,7 +977,7 @@ msgstr "" "Eller fyll ut <em>Opprett</em> feltet for å definere en ny sone og tilknytte " "grensesnittet til det." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -978,7 +985,7 @@ msgstr "" "Velg det eller de nettverk du vil legge til dette trådløse grensesnittet, " "eller fyll ut <em>Opprett</em> feltet for å definere et nytt nettverk." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Krypteringsmetode" @@ -1000,8 +1007,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Klient" @@ -1045,7 +1052,7 @@ msgstr "Lukk liste..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Henter data..." @@ -1061,7 +1068,7 @@ msgstr "" msgid "Common Configuration" msgstr "Vanlige Innstillinger" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1093,7 +1100,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Bekreftelse" @@ -1102,12 +1109,12 @@ msgid "Connect" msgstr "Koble til" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Tilkoblet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Tilkoblingsgrense (antall)" @@ -1130,9 +1137,9 @@ msgstr "" msgid "Country" msgstr "Land" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Landskode" @@ -1157,11 +1164,11 @@ msgstr "Opprett Grensesnitt" msgid "Create a bridge over multiple interfaces" msgstr "Opprett en bro over flere grensesnitt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritisk" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron logg nivå" @@ -1194,15 +1201,15 @@ msgstr "" "Tilpasser oppførselen til enhetens <abbr title=\"Light Emitting Diode\">LED</" "abbr>s om mulig." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1216,7 +1223,7 @@ msgstr "DHCP Server" msgid "DHCP and DNS" msgstr "DHCP og DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP klient" @@ -1236,16 +1243,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1278,7 +1285,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1286,7 +1293,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1294,18 +1301,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Feilsøking" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Standard %d" @@ -1344,7 +1351,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Fjern" @@ -1358,7 +1365,7 @@ msgstr "" msgid "Delete this network" msgstr "Fjern dette nettverket" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1374,8 +1381,8 @@ msgstr "Destinasjon" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1430,7 +1437,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1448,11 +1455,11 @@ msgstr "" msgid "Disabled" msgstr "Deaktivert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1475,16 +1482,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Avstand Optimalisering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Avstand i meter til det medlem av nettverket som er lengst unna." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Antennevariasjon" @@ -1591,7 +1598,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-metode" @@ -1616,7 +1623,7 @@ msgstr "Endre dette grensesnittet" msgid "Edit this network" msgstr "Endre dette nettverket" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Krisesituasjon" @@ -1651,11 +1658,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Aktiver IPv6 på PPP lenke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Aktiver Jumbo Frames gjennomgang" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Aktiver NTP klient" @@ -1667,27 +1674,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Aktiver TFTP server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Aktiver VLAN funksjonalitet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Aktiver 'læring' og 'aldring'" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1721,7 +1728,7 @@ msgstr "Aktivert" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1738,9 +1745,9 @@ msgstr "Innkapsling modus" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Kryptering" @@ -1760,28 +1767,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Sletter..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Feil" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet Tilslutning" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet Svitsj" @@ -1797,7 +1804,7 @@ msgstr "Utvid vertsliste" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Utgår" @@ -1811,23 +1818,23 @@ msgstr "Utløpstid på leide adresser, minimum er 2 minutter (<code>2m</code>)." msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Ekstern systemlogg server" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Ekstern systemlogg server port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1835,15 +1842,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1935,7 +1942,7 @@ msgstr "Flash nytt firmware image" msgid "Flash operations" msgstr "Flash operasjoner" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Flasher..." @@ -1949,11 +1956,11 @@ msgstr "" msgid "Force" msgstr "Bruk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Bruk CCMP (AES)" @@ -1962,11 +1969,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Bruk DHCP i dette nettverket, selv om en annen DHCP server er oppdaget." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Bruk TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Bruk TKIP og CCMP (AES)" @@ -1990,7 +1997,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Videresend DHCP trafikk" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1998,7 +2005,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Videresend kringkastingstrafikk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2006,12 +2013,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Videresending modus" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Fragmenterings Terskel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Frame Bursting" @@ -2028,7 +2035,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2037,8 +2044,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Kun GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Gateway" @@ -2061,7 +2068,7 @@ msgstr "Generelle Innstillinger" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Generelt Oppsett" @@ -2069,7 +2076,7 @@ msgstr "Generelt Oppsett" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2096,7 +2103,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Gå til passord konfigurasjon..." @@ -2121,7 +2128,7 @@ msgstr "HE.net passord" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2129,7 +2136,7 @@ msgstr "" msgid "Hang Up" msgstr "Slå av" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2145,9 +2152,9 @@ msgstr "" "Her kan du konfigurere grunnleggende aspekter av enheten som f.eks. dens " "vertsnavn eller tidssone." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Skjul <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2182,8 +2189,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Vertsnavn" @@ -2244,7 +2250,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Brannmur" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2336,7 +2342,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2403,7 +2409,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6til4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identitet" @@ -2513,10 +2519,14 @@ msgstr "Tidsavbrudd etter innaktivitet" msgid "Inbound:" msgstr "Innkommende:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informasjon" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2537,7 +2547,7 @@ msgstr "" msgid "Install package %q" msgstr "Installer pakken %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Installer protokoll utvidelser..." @@ -2555,7 +2565,7 @@ msgstr "Grensesnitt" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Grensesnitt Konfigurasjon" @@ -2567,12 +2577,12 @@ msgstr "Grensesnitt Oversikt" msgid "Interface is reconnecting..." msgstr "Grensesnittet kobler til igjen..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Grensesnittet er ikke tilgjengelig eller er ikke tilknyttet." @@ -2591,15 +2601,15 @@ msgid "Internal Server Error" msgstr "Intern server feil" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Ugyldig" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "Ugyldig VLAN ID gitt! Bare IDer mellom %d og %d er tillatt." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt" @@ -2607,7 +2617,7 @@ msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt" msgid "Invalid username and/or password! Please try again." msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2621,10 +2631,9 @@ msgstr "" "flash-minnet, vennligst kontroller firmware filen!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript kreves!" @@ -2653,18 +2662,22 @@ msgstr "Kjerne Logg" msgid "Kernel Version" msgstr "Kjerne Versjon" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Nøkkel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Nøkkel #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Drep" @@ -2704,7 +2717,7 @@ msgstr "LLC" msgid "Label" msgstr "Volumnavn" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Språk" @@ -2712,7 +2725,7 @@ msgstr "Språk" msgid "Language and Style" msgstr "Språk og Utseende" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2763,19 +2776,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2791,7 +2804,7 @@ msgstr "" "Liste med <abbr title=\"Domain Name System\">DNS</abbr> servere som " "forespørsler blir videresendt til" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2800,7 +2813,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2839,7 +2852,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Lytte-port for innkommende DNS-spørring" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Belastning" @@ -2888,7 +2900,7 @@ msgid "Local Startup" msgstr "Lokal Oppstart" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Lokal tid" @@ -2929,7 +2941,7 @@ msgstr "Lokalisere søk" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Logg nivå" @@ -2949,7 +2961,7 @@ msgstr "Logg inn" msgid "Logout" msgstr "Logg ut" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2965,24 +2977,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-Addresse Filter" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-Filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-Liste" @@ -3028,11 +3040,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3066,12 +3078,16 @@ msgstr "Maksimalt antall utleide adresser." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Minne" @@ -3080,7 +3096,7 @@ msgstr "Minne" msgid "Memory usage (%)" msgstr "Minne forbruk (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3092,11 +3108,11 @@ msgstr "" msgid "Metric" msgstr "Metrisk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3104,16 +3120,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Mangler protokoll utvidelse for proto %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Modus" @@ -3141,12 +3157,16 @@ msgstr "" msgid "Modem init timeout" msgstr "Modem initiering tidsavbrudd" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Monterings Enhet" @@ -3156,7 +3176,7 @@ msgstr "Monterings Enhet" msgid "Mount Point" msgstr "Monterings Punkt" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3206,7 +3226,7 @@ msgstr "Flytt ned" msgid "Move up" msgstr "Flytt opp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3230,7 +3250,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP server kandidater" @@ -3248,18 +3268,17 @@ msgstr "Navnet til det nye grensesnittet" msgid "Name of the new network" msgstr "Navnet til det nye nettverket" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigasjon" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Nettmaske" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3283,7 +3302,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Nettverk uten grensesnitt." @@ -3308,7 +3327,7 @@ msgid "No files found" msgstr "Ingen filer funnet" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Ingen informasjon tilgjengelig" @@ -3330,10 +3349,9 @@ msgid "No network name specified" msgstr "Ingen nettverksnavn spesifisert" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Ruteren er ikke passordbeskyttet!" @@ -3361,7 +3379,7 @@ msgstr "Ingen sone tilknyttet" msgid "Noise" msgstr "Støy" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3369,7 +3387,7 @@ msgstr "" msgid "Noise:" msgstr "Støy:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3382,7 +3400,7 @@ msgstr "" msgid "None" msgstr "Ingen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3395,16 +3413,20 @@ msgstr "Ikke funnet" msgid "Not associated" msgstr "Ikke tilknyttet" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Ikke tilkoblet" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Merk" @@ -3416,7 +3438,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3498,7 +3520,7 @@ msgstr "Innstilling endret" msgid "Option removed" msgstr "Innstilling fjernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3605,7 +3627,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3669,7 +3691,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3722,8 +3744,8 @@ msgid "Part of zone %q" msgstr "En del av sone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3733,14 +3755,21 @@ msgstr "Passord" msgid "Password authentication" msgstr "Passord godkjenning" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Passord for privatnøkkel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3749,27 +3778,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Sti til CA-sertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Sti til klient-sertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Sti til privatnøkkel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3847,6 +3876,14 @@ msgstr "Skriv inn ditt brukernavn og passord." msgid "Policy" msgstr "Policy" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3855,11 +3892,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port status:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3871,7 +3908,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3896,8 +3933,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Hindrer klient-til-klient kommunikasjon" @@ -3914,7 +3951,7 @@ msgstr "Fortsett" msgid "Processes" msgstr "Prosesser" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3924,8 +3961,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokoll" @@ -3938,7 +3975,7 @@ msgstr "Protokoll til det nye grensesnittet" msgid "Protocol support is not installed" msgstr "Protokoll støtte er ikke installert" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Funger som NTP Server" @@ -3946,7 +3983,7 @@ msgstr "Funger som NTP Server" msgid "Provide new network" msgstr "Lag nytt nettverk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3971,7 +4008,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Kvalitet" @@ -3981,11 +4018,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3993,8 +4030,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Terskel" @@ -4008,27 +4049,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX Rate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Radius-Accounting-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Radius-Accounting-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Radius-Accounting-Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Radius-Authentication-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Radius-Authentication-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Radius-Authentication-Server" @@ -4086,7 +4127,7 @@ msgstr "Trafikk Sanntid" msgid "Realtime Wireless" msgstr "Trådløst i sanntid" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4094,7 +4135,7 @@ msgstr "" msgid "Rebind protection" msgstr "Binde beskyttelse" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Omstart" @@ -4112,8 +4153,8 @@ msgstr "Omstarter operativsystemet på enheten" msgid "Receive" msgstr "Motta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Mottak antenne" @@ -4180,7 +4221,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4203,10 +4244,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4261,8 +4302,8 @@ msgid "Restore backup" msgstr "Gjenopprett sikkerhetskopi" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Vis/Skjul passord" @@ -4309,8 +4350,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Ruter Passord" @@ -4348,7 +4389,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH Tilgang" @@ -4365,7 +4406,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH-Nøkler" @@ -4373,7 +4414,7 @@ msgstr "SSH-Nøkler" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4384,7 +4425,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Lagre" @@ -4413,7 +4454,7 @@ msgstr "Skann" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Planlagte Oppgaver" @@ -4450,7 +4491,7 @@ msgstr "" "Send LCP ekko forespørsler etter angitt intervall i sekunder, dette er kun " "gjeldene dersom feilterskelen er nådd" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Separerte Klienter" @@ -4485,7 +4526,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Oppsett tidssynkronisering" @@ -4502,7 +4543,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Oppsett DHCP server" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4510,7 +4551,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4533,11 +4574,11 @@ msgstr "Slå av dette grensesnittet" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4553,7 +4594,7 @@ msgstr "Størrelse" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4562,21 +4603,19 @@ msgstr "" msgid "Skip" msgstr "Gå videre" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Gå til innhold" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Gå til navigasjon" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Slot tid" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4667,7 +4706,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Oppstart" @@ -4687,7 +4726,7 @@ msgstr "Statiske Leier" msgid "Static Routes" msgstr "Statiske Ruter" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Statisk adresse" @@ -4701,7 +4740,7 @@ msgstr "" "vertsnavn til DHCP klienter. Dette er nødvendig om grensesnittet ikke er " "dynamisk konfigurert og kun klienter med dhcp leieavtale får IP." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4721,6 +4760,10 @@ msgstr "Stop" msgid "Strict order" msgstr "Streng overholdelse" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Send" @@ -4746,15 +4789,15 @@ msgstr "Swap Enhet" msgid "Switch" msgstr "Svitsj" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Svitsj %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Svitsj %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4763,7 +4806,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4779,8 +4822,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Synkroniser med nettleser" @@ -4805,7 +4852,7 @@ msgstr "System Logg" msgid "System Properties" msgstr "System Egenskaper" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "System logg buffer størrelse" @@ -5023,7 +5070,7 @@ msgstr "Den valgte protokoll må ha en enhet tilknyttet" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5031,7 +5078,7 @@ msgstr "" "Systemet sletter konfigurasjonspartisjonen nå, enheten vil bli startet på " "nytt når dette er utført." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5055,7 +5102,7 @@ msgstr "" "Den opplastede programvaren er av et format som ikke støttes. Sørg for at du " "velger det generelle firmware-bildet for din plattform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5085,10 +5132,9 @@ msgstr "" "nettverksenhet i \"Fysiske Innstillinger\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5178,24 +5224,24 @@ msgstr "" "Denne siden gir en oversikt over gjeldende aktive nettverkstilkoblinger." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Denne seksjonen inneholder ennå ingen verdier" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Tidssynkronisering" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Tiden Synkroniseringen er ikke konfigurert ennå." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Tidssone" @@ -5238,7 +5284,7 @@ msgstr "Trafikk" msgid "Transfer" msgstr "Overføring" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Overførings rate" @@ -5246,14 +5292,14 @@ msgstr "Overførings rate" msgid "Transmit" msgstr "Sende" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Sende styrke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Sende Antenne" @@ -5269,7 +5315,7 @@ msgstr "Utløsende Tilstand" msgid "Tunnel ID" msgstr "Tunnel ID" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Tunnel grensesnitt" @@ -5284,7 +5330,7 @@ msgid "Tx-Power" msgstr "Tx-Styrke" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Type" @@ -5343,19 +5389,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Ukjent" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Uhåndtert" @@ -5369,7 +5415,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5384,7 +5429,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Protokoll type er ikke støttet." @@ -5437,8 +5482,8 @@ msgstr "Bruk DHCP gateway" msgid "Use DNS servers advertised by peer" msgstr "Bruk DNS servere annonsert av peer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Bruk ISO/IEC 3166 alpha2 landskoder." @@ -5545,11 +5590,11 @@ msgstr "" msgid "Used" msgstr "Brukt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Brukte Nøkler" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5577,11 +5622,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs på %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs på %q (%s)" @@ -5627,18 +5672,18 @@ msgstr "Bekreft" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP åpent system" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP delt nøkkel" @@ -5646,8 +5691,8 @@ msgstr "WEP delt nøkkel" msgid "WEP passphrase" msgstr "WEP passord" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM Modus" @@ -5655,9 +5700,9 @@ msgstr "WMM Modus" msgid "WPA passphrase" msgstr "WPA passord" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5681,8 +5726,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Advarsel" @@ -5690,7 +5735,11 @@ msgstr "Advarsel" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5717,7 +5766,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5731,12 +5780,12 @@ msgstr "" msgid "Wireless" msgstr "Trådløs" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Trådløs Tilslutning" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Trådløst Nettverk" @@ -5744,20 +5793,20 @@ msgstr "Trådløst Nettverk" msgid "Wireless Overview" msgstr "Trådløs Oversikt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Trådløs Sikkerhet" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Trådløs er deaktiver" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Trådløs er ikke tilknyttet" @@ -5777,7 +5826,7 @@ msgstr "Trådløst nettverk er aktivert" msgid "Write received DNS requests to syslog" msgstr "Skriv mottatte DNS forespørsler til syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5797,36 +5846,28 @@ msgstr "" "utilgjengelig! </strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Du må aktivere JavaScript i nettleseren din ellers vil ikke LuCI fungere " "skikkelig." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5837,11 +5878,11 @@ msgstr "enhver" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5894,8 +5935,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "Deaktiver" @@ -5954,19 +5995,6 @@ msgstr "Dersom målet er et nettverk" msgid "input" msgstr "inndata" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5999,7 +6027,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "lokal <abbr title=\"Domain Navn System\">DNS</abbr>-fil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -6027,20 +6055,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "av" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "på" @@ -6084,8 +6110,8 @@ msgstr "" msgid "routed" msgstr "rutet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6106,11 +6132,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "tagget" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6137,7 +6163,7 @@ msgstr "uspesifisert" msgid "unspecified -or- create:" msgstr "uspesifisert --eller-- opprett:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "utagget" @@ -6307,6 +6333,9 @@ msgstr "ja" msgid "« Back" msgstr "« Tilbake" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 5bdfb738f0..f0a23b4542 100644 --- a/modules/luci-base/po/pl/base.po +++ b/modules/luci-base/po/pl/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LuCI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 09:40+0200\n" -"PO-Revision-Date: 2018-09-02 15:25+0200\n" +"PO-Revision-Date: 2019-01-05 19:30+0200\n" "Last-Translator: Rixerx <krystian.kozak20@gmail.com>\n" "Language-Team: Polish\n" "Language: pl\n" @@ -24,9 +24,9 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:307 msgid "%d invalid field(s)" -msgstr "" +msgstr "%d nieprawidłowe pole(pola)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s jest nieotagowany w wielu grupach VLAN!" @@ -58,16 +58,16 @@ msgstr "(brak podłączonych interfejsów)" msgid "-- Additional Field --" msgstr "-- Dodatkowe pole --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Proszę wybrać --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- własne --" @@ -91,6 +91,10 @@ msgstr "-- dopasuj po uuid --" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Obciążenie 1 min.:" @@ -99,7 +103,7 @@ msgstr "Obciążenie 1 min.:" msgid "15 Minute Load:" msgstr "Obciążenie 15 min.:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -111,35 +115,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Obciążenie 5 min.:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "Identyfikator 6-oktetowy jako ciąg szesnastkowy - bez dwukropków" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "802.11w maksymalny czas oczekiwania" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "802.11w interwał ponawiania prób" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -159,7 +163,7 @@ msgstr "" "Nazwa <abbr title=\"Domain Name System\">DNS</abbr> będzie rozwijana przez " "kolejne serwery w porządku podanym w resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -193,7 +197,7 @@ msgstr "Brama <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "Sufiks <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>(hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Konfiguracja diod <abbr title=\"Light Emitting Diode\">LED</abbr>" @@ -241,7 +245,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 msgid "A new login is required since the authentication session expired." -msgstr "" +msgstr "Wymagane jest ponowne zalogowanie ponieważ sesja wygasła." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 msgid "A43C + J43 + A43" @@ -304,7 +308,7 @@ msgstr "" msgid "ATM device number" msgstr "Numer urządzenia ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "ID dostawcy systemu ATU-C" @@ -313,8 +317,8 @@ msgstr "ID dostawcy systemu ATU-C" msgid "Access Concentrator" msgstr "Koncentrator dostępowy (ATM)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Punkt dostępowy" @@ -348,7 +352,7 @@ msgstr "Aktywne dzierżawy DHCP" msgid "Active DHCPv6 Leases" msgstr "Aktywne dzierżawy DHCPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -356,8 +360,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -365,18 +369,18 @@ msgstr "Dodaj" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 msgid "Add IPv4 address…" -msgstr "" +msgstr "Dodaj adres IPv4…" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 msgid "Add IPv6 address…" -msgstr "" +msgstr "Dodaj adres IPv6…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 msgid "Add key" -msgstr "" +msgstr "Dodaj klucz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" @@ -394,8 +398,8 @@ msgstr "Dodatkowe pliki Hosts" msgid "Additional servers file" msgstr "Dodatkowe pliki serwera" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adres" @@ -405,30 +409,34 @@ msgid "Address to access local relay bridge" msgstr "Adres dostępowy do \"relay bridge\"" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Zarządzanie" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Agregacja siły transmisji (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alarm" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "Alias Interfejsu" @@ -456,21 +464,21 @@ msgstr "Przydzielaj adresy IP po kolei" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Pozwól na logowanie <abbr title=\"Secure Shell\">SSH</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "Pozwól aby tryb AP rozłączał stacje STA w oparciu o niski stan ACK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Pozwól wszystkim oprócz wymienionych" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "Zezwalaj na starsze wersje 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Pozwól tylko wymienionym" @@ -507,13 +515,13 @@ msgstr "Zawsze rozgłaszaj domyślny router" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 msgid "Always off (%s)" -msgstr "" +msgstr "Zawsze wyłączony (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 msgid "Always on (%s)" -msgstr "" +msgstr "Zawsze włączony (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -522,7 +530,7 @@ msgstr "" "Używanie tej opcji nie jest zgodne z IEEE 802.11n-2009!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -596,7 +604,7 @@ msgstr "Rozgłaszaj domeny DNS" msgid "Announced DNS servers" msgstr "Rozgłaszaj serwery DNS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -608,17 +616,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Ustawienia anteny" @@ -628,11 +636,11 @@ msgstr "Dowolna strefa" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" -msgstr "" +msgstr "Zatwierdź mimo to" #: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" -msgstr "" +msgstr "Żądanie zatwierdzenia nie powiodło się ze statusem <code>%h</code>" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 msgid "Architecture" @@ -646,7 +654,7 @@ msgstr "" "Przypisz część danej długości każdego publicznego prefiksu IPv6 do tego " "interfejsu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Przypisz interfejsy..." @@ -663,7 +671,7 @@ msgstr "" msgid "Associated Stations" msgstr "Połączone stacje" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "Połączeni" @@ -672,7 +680,7 @@ msgstr "Połączeni" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Uwierzytelnianie" @@ -690,12 +698,11 @@ msgstr "Wymagana autoryzacja" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatyczne odświeżanie" @@ -767,7 +774,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -797,7 +804,7 @@ msgstr "Wróć do wyników skanowania" msgid "Backup" msgstr "Kopia zapasowa" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Kopia zapasowa / aktualizacja firmware" @@ -809,12 +816,12 @@ msgstr "Kopia zapasowa listy plików" msgid "Bad address specified!" msgstr "Wprowadzono zły adres" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "Interwał Beaconu" @@ -844,7 +851,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Szybkość transmisji" @@ -852,7 +859,7 @@ msgstr "Szybkość transmisji" msgid "Bogus NX Domain Override" msgstr "Podrób statystyki NXDOMAIN" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Most" @@ -921,7 +928,7 @@ msgstr "Łańcuch" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 msgid "Change login password" -msgstr "" +msgstr "Zmień hasło logowania" #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 @@ -936,20 +943,20 @@ msgstr "Zmiany zostały zastosowane." msgid "Changes have been reverted." msgstr "Zmiany zostały cofnięte." -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Zmienia hasło administratora" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 msgid "Changing password…" -msgstr "" +msgstr "Zmieniam hasło…" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kanał" @@ -977,7 +984,7 @@ msgstr "Suma kontrolna" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 msgid "Choose mtdblock" -msgstr "" +msgstr "Wybierz mtdblock" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 @@ -992,7 +999,7 @@ msgstr "" "pole <em>utwórz</em> aby zdefiniować nową strefę i przypisać ją do " "interfejsu." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1000,7 +1007,7 @@ msgstr "" "Wybierz sieć/sieci które chcesz przyłączyć do tego interfejsu " "bezprzewodowego lub wypełnij pole <em>utwórz</em> aby utworzyć nową sieć." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Szyfr" @@ -1021,9 +1028,11 @@ msgid "" "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " "FEATURE IS FOR PROFESSIONALS! )" msgstr "" +"Kliknij \"Zapisz mtdblock\", aby pobrać określony plik mtdblock. (UWAGA: TA " +"FUNKCJA JEST DLA PROFESJONALISTÓW! )" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Klient" @@ -1035,7 +1044,7 @@ msgstr "Nazwa (ID) klienta do wysłania podczas negocjacji DHCP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 msgid "Close" -msgstr "" +msgstr "Zamknij" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 @@ -1067,7 +1076,7 @@ msgstr "Zamknij listę..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Zbieranie danych..." @@ -1077,13 +1086,13 @@ msgstr "Polecenie" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 msgid "Comment" -msgstr "" +msgstr "Komentarz" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 msgid "Common Configuration" msgstr "Konfiguracja podstawowa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1120,7 +1129,7 @@ msgstr "Konfiguracja została zastosowana." msgid "Configuration has been rolled back!" msgstr "Konfiguracja została wycofana!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Potwierdzenie" @@ -1129,12 +1138,12 @@ msgid "Connect" msgstr "Połącz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Połączony" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Limit połączeń" @@ -1157,9 +1166,9 @@ msgstr "" msgid "Country" msgstr "Kraj" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Kod kraju" @@ -1185,11 +1194,11 @@ msgstr "Utwórz interfejs" msgid "Create a bridge over multiple interfaces" msgstr "Utwórz most pomiędzy wieloma interfejsami" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Krytyczne" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Poziom logowania Cron`a" @@ -1214,7 +1223,7 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 msgid "Custom flash intervall (%s)" -msgstr "" +msgstr "Własny interwał flash (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "" @@ -1224,15 +1233,15 @@ msgstr "" "Dostosuj zachowanie diod <abbr title=\"Light Emitting Diode\">LED</abbr> " "urządzenia jeśli jest to możliwe." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" -msgstr "" +msgstr "DAE-Klient" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" -msgstr "" +msgstr "DAE-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1246,7 +1255,7 @@ msgstr "Serwer DHCP" msgid "DHCP and DNS" msgstr "DHCP i DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Klient DHCP" @@ -1266,16 +1275,16 @@ msgstr "Tryb DHCPv6" msgid "DHCPv6-Service" msgstr "Serwis DHCPv6" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1308,7 +1317,7 @@ msgstr "" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "Status DSL" @@ -1316,7 +1325,7 @@ msgstr "Status DSL" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "Interwał DTIM" @@ -1324,24 +1333,24 @@ msgstr "Interwał DTIM" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "Szybkość przesyłania danych" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Domyślne %d" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 msgid "Default Route" -msgstr "" +msgstr "Domyślna ścieżka routingu" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 @@ -1374,7 +1383,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Usuń" @@ -1382,13 +1391,13 @@ msgstr "Usuń" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 msgid "Delete key" -msgstr "" +msgstr "Usuń klucz" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 msgid "Delete this network" msgstr "Usuń tą sieć" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "Interwał komunikatu o wskazaniu dostawy ruchu" @@ -1404,8 +1413,8 @@ msgstr "Przeznaczenie" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1460,7 +1469,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Wyłącz szyfrowanie" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1478,11 +1487,11 @@ msgstr "Wyłącz tą sieć" msgid "Disabled" msgstr "Wyłączony" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Wyłączone (domyślnie)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "Rozłączaj przy niskim stanie ramek ACK" @@ -1505,17 +1514,17 @@ msgstr "Próba rozłączenia nie powiodła się" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optymalizacja odległości" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Odległość do najdalej oddalonego członka sieci w metrach." # Jak poprzednio trzymam się konwencji -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Wielorakość" @@ -1547,7 +1556,7 @@ msgstr "Nie przekazuj odwrotnych lookup`ów do sieci lokalnych" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 msgid "Do you really want to delete the following SSH key?" -msgstr "" +msgstr "Czy na pewno chcesz usunąć następujący klucz SSH?" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" @@ -1579,7 +1588,7 @@ msgstr "Pobierz kopię zapasową" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 msgid "Download mtdblock" -msgstr "" +msgstr "Pobierz mtdblock" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 msgid "Downstream SNR offset" @@ -1623,7 +1632,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Metoda EAP" @@ -1648,7 +1657,7 @@ msgstr "Edytuj ten interfejs" msgid "Edit this network" msgstr "Edytuj tą sieć" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Zagrożenie" @@ -1685,11 +1694,11 @@ msgstr "Włącz negocjację IPv6" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Włącz negocjację IPv6 na łączu PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Włącz przechodzenie ramek Jumbo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Włącz klienta NTP" @@ -1701,27 +1710,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Włącz serwer TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Włącz funkcjonalność VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Włącz przycisk WPS, wymaga WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Włącz środki zaradcze dotyczące ponownej instalacji kluczy (KRACK)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Włącz uczenie się i starzenie" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1755,7 +1764,7 @@ msgstr "Włączony" msgid "Enables IGMP snooping on this bridge" msgstr "Włącz nasłuchiwanie IGMP na tym moście" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1776,9 +1785,9 @@ msgstr "Sposób enkapsulacji" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Szyfrowanie" @@ -1798,28 +1807,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Usuwanie..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Błąd" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "Ilość błędów (ES)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Karta Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch Ethernet" @@ -1833,9 +1842,9 @@ msgstr "Rozwiń hosty" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 msgid "Expecting %s" -msgstr "" +msgstr "Oczekiwano %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Wygasa" @@ -1850,23 +1859,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Serwer zewnętrzny dla logów systemowych" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port zewnętrznego serwera logów systemowych" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Protokół zewnętrznego serwera logów systemowych" @@ -1874,15 +1883,15 @@ msgstr "Protokół zewnętrznego serwera logów systemowych" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1974,7 +1983,7 @@ msgstr "Wgraj nowy firmware" msgid "Flash operations" msgstr "Operacje aktualizacji" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Flashowanie..." @@ -1982,17 +1991,17 @@ msgstr "Flashowanie..." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 msgid "Flashmemory write access (%s)" -msgstr "" +msgstr "Dostęp do zapisu flashmemory (%s)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 msgid "Force" msgstr "Wymuś" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "Wymuś tryb 40MHz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Wymuś CCMP (AES)" @@ -2001,11 +2010,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Wymuś uruchomienie serwera DHCP w tej sieci nawet gdy wykryto inny serwer." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Wymuś TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Wymuś TKIP i CCMP (AES)" @@ -2029,7 +2038,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Przekazuj ruch DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "Próby korekcji błędów (FECS)" @@ -2037,7 +2046,7 @@ msgstr "Próby korekcji błędów (FECS)" msgid "Forward broadcast traffic" msgstr "Przekazuj broadcast`y" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2045,12 +2054,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Tryb przekazywania" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Próg Fragmentacji" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Dzielenie ramek" @@ -2067,7 +2076,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2076,8 +2085,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Tylko GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Brama" @@ -2100,7 +2109,7 @@ msgstr "Ustawienia główne" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Ustawienia podstawowe" @@ -2108,7 +2117,7 @@ msgstr "Ustawienia podstawowe" msgid "Generate Config" msgstr "Wygeneruj konfigurację" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "Wygeneruj PMK lokalnie" @@ -2137,7 +2146,7 @@ msgstr "Globalne opcje sieciowe" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Przejdź do konfiguracji hasła..." @@ -2162,7 +2171,7 @@ msgstr "Hasło HE.net" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2170,13 +2179,13 @@ msgstr "" msgid "Hang Up" msgstr "Rozłącz" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "Błędy kodu nagłówka (HEC)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 msgid "Heartbeat intervall (%s)" -msgstr "" +msgstr "Interwał Heartbeata (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 msgid "" @@ -2186,9 +2195,9 @@ msgstr "" "Tutaj możesz skonfigurować podstawowe ustawienia twojego urządzenia, np. " "nazwę hosta, strefę czasową." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Ukryj <abbr title=\"Extended Service Set Identifier (Nazwę sieci)\">ESSID</" @@ -2197,7 +2206,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 msgid "Hide empty chains" -msgstr "" +msgstr "Ukryj puste łańcuchy" #: modules/luci-base/luasrc/view/lease_status.htm:86 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 @@ -2224,8 +2233,7 @@ msgstr "Zawartość znacznika Host-Uniq" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Nazwa hosta" @@ -2286,7 +2294,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "Źródłowy IPv4" @@ -2378,7 +2386,7 @@ msgstr "Ustawienia IPv6" msgid "IPv6 ULA-Prefix" msgstr "IPv6 Prefiks-ULA" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "Źródłowy IPv6" @@ -2446,7 +2454,7 @@ msgstr "IPv6-przez-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-przez-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Tożsamość" @@ -2561,10 +2569,14 @@ msgstr "Czas bezczynności" msgid "Inbound:" msgstr "Przychodzący:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "Błąd inicjalizacji" @@ -2586,7 +2598,7 @@ msgstr "" msgid "Install package %q" msgstr "Instaluj pakiet %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Instaluj rozszerzenia protokołów..." @@ -2604,7 +2616,7 @@ msgstr "Interfejs" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Konfiguracja Interfejsu" @@ -2616,12 +2628,12 @@ msgstr "Przegląd Interfejsów" msgid "Interface is reconnecting..." msgstr "Ponowne łączenie interfejsu..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Nazwa interfejsu" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Interfejs nie istnieje lub nie jest jeszcze podłączony." @@ -2640,15 +2652,15 @@ msgid "Internal Server Error" msgstr "Wewnętrzny błąd serwera" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Niewłaściwy" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko ID pomiędzy %d a %d." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko unikalne ID." @@ -2656,7 +2668,7 @@ msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko unikalne ID." msgid "Invalid username and/or password! Please try again." msgstr "Niewłaściwy login i/lub hasło! Spróbuj ponownie." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Izoluj klientów" @@ -2670,10 +2682,9 @@ msgstr "" "proszę sprawdź czy to właściwy obraz!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript jest wymagany!" @@ -2702,18 +2713,22 @@ msgstr "Log jądra" msgid "Kernel Version" msgstr "Wersja jądra" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Klucz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Klucz #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Zabij" @@ -2753,7 +2768,7 @@ msgstr "LLC" msgid "Label" msgstr "Oznaczenie" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Język" @@ -2761,7 +2776,7 @@ msgstr "Język" msgid "Language and Style" msgstr "Wygląd i język" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "Opoźnienie" @@ -2813,19 +2828,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "Ogranicz nasłuchiwanie do tych interfesjów, oraz loopbacku." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "Tłumienie linii (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "Tryb linii" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "Stan linii" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "Czas działania linii" @@ -2841,7 +2856,7 @@ msgstr "" "Lista serwerów <abbr title=\"Domain Name System\">DNS</abbr> do których będą " "przekazywane zapytania" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2850,7 +2865,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2889,7 +2904,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Port nasłuchu dla przychodzących zapytań DNS" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Obciążenie" @@ -2906,7 +2920,7 @@ msgstr "Ładowanie" #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 msgid "Loading SSH keys…" -msgstr "" +msgstr "Ładowanie kluczy SSH…" #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -2938,7 +2952,7 @@ msgid "Local Startup" msgstr "Lokalny autostart" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Czas lokalny" @@ -2980,7 +2994,7 @@ msgstr "Zapytania lokalizujące" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Poziom logowania" @@ -3000,7 +3014,7 @@ msgstr "Zaloguj" msgid "Logout" msgstr "Wyloguj" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "Utrata sygnału (LOSS)" @@ -3016,24 +3030,24 @@ msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Adres MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtr adresów MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtr adresów MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Lista MAC" @@ -3081,11 +3095,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. Osiągalna przepustowość danych (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3119,12 +3133,16 @@ msgstr "Maksymalna liczba dzierżawionych adresów." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Pamięć" @@ -3133,7 +3151,7 @@ msgstr "Pamięć" msgid "Memory usage (%)" msgstr "Użycie pamięci (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3145,11 +3163,11 @@ msgstr "" msgid "Metric" msgstr "Metryka" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3157,16 +3175,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Brakujące rozszerzenie protokołu dla protokołu %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Tryb" @@ -3194,12 +3212,16 @@ msgstr "Zapytanie dotyczące modemu nie powiodło się" msgid "Modem init timeout" msgstr "Limit czasu inicjacji modemu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Wpis montowania" @@ -3209,7 +3231,7 @@ msgstr "Wpis montowania" msgid "Mount Point" msgstr "Punkt montowania" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3259,7 +3281,7 @@ msgstr "Przesuń w dół" msgid "Move up" msgstr "Przesuń w górę" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3283,7 +3305,7 @@ msgstr "Proxy NDP" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Lista serwerów NTP" @@ -3301,18 +3323,17 @@ msgstr "Nazwa nowego interfejsu" msgid "Name of the new network" msgstr "Nazwa nowej sieci" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Nawigacja" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Maska sieci" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3330,13 +3351,13 @@ msgstr "Sieciowy obraz startowy" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 msgid "Network device activity (%s)" -msgstr "" +msgstr "Aktywność urządzenia sieciowego (%s)" #: modules/luci-base/luasrc/model/network.lua:33 msgid "Network device is not present" msgstr "Urządzenie sieciowe nie jest obecne" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Sieć bez interfejsów" @@ -3361,7 +3382,7 @@ msgid "No files found" msgstr "Nie znaleziono plików" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Brak dostępnych informacji" @@ -3383,20 +3404,19 @@ msgid "No network name specified" msgstr "Nie podano nazwy sieci" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nie ustawiono hasła!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 msgid "No public keys present yet." -msgstr "" +msgstr "Nie ma jeszcze kluczy publicznych." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 msgid "No rules in this chain." -msgstr "Brak zasad w tym łańcuchu" +msgstr "Brak zasad w tym łańcuchu." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 msgid "No scan results available yet..." @@ -3414,7 +3434,7 @@ msgstr "Brak przypisanej strefy" msgid "Noise" msgstr "Szum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "Margines szumów (SNR)" @@ -3422,7 +3442,7 @@ msgstr "Margines szumów (SNR)" msgid "Noise:" msgstr "Szum:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Nieprzewidziane błedy CRC (CRC_P)" @@ -3435,7 +3455,7 @@ msgstr "Bez symboli wieloznacznych" msgid "None" msgstr "Brak" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normalny" @@ -3448,16 +3468,20 @@ msgstr "Nie znaleziono" msgid "Not associated" msgstr "Nie powiązany" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Nie podłączony" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Spostrzeżenie" @@ -3471,7 +3495,7 @@ msgstr "" "Liczba buforowanych wpisów DNS (max wynosi 10000, 0 oznacza brak pamięci " "podręcznej)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3552,7 +3576,7 @@ msgstr "Wartość zmieniona" msgid "Option removed" msgstr "Usunięto wartość" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Opcjonalny" @@ -3663,7 +3687,7 @@ msgstr "Nadpisz TOS" msgid "Override TTL" msgstr "Nadpisz TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "Nadpisz domyślną nazwę interfejsu" @@ -3727,7 +3751,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "Kod PIN został odrzucony" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "PMK R1 Push" @@ -3780,8 +3804,8 @@ msgid "Part of zone %q" msgstr "Część strefy %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3791,43 +3815,50 @@ msgstr "Hasło" msgid "Password authentication" msgstr "Uwierzytelnianie hasłem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Hasło lub klucz prywatny" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "Wewnętrzne hasło klucza prywatnego" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 msgid "Paste or drag SSH key file…" -msgstr "" +msgstr "Wklej lub przeciągnij plik klucza SSH…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Ścieżka do certyfikatu CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Ścieżka do certyfikatu klienta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Ścieżka do Klucza Prywatnego" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "Ścieżka do wewnętrznego certyfikatu CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "Ścieżka do wewnętrznego certyfikatu Klienta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "Ścieżka do wewnętrznego klucza prywatnego " @@ -3905,6 +3936,14 @@ msgstr "Proszę wprowadź swój login i hasło." msgid "Policy" msgstr "Zasada" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3913,11 +3952,11 @@ msgstr "Port" msgid "Port status:" msgstr "Status portu:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "Tryb zarządzania energią" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Przewidziane błedy CRC (CRCP_P)" @@ -3929,7 +3968,7 @@ msgstr "Preferuj LTE" msgid "Prefer UMTS" msgstr "Preferuj UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3954,8 +3993,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Zapobiegaj nasłuchiwaniu na tych interfejsach." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Zapobiega komunikacji między klientem a klientem" @@ -3972,7 +4011,7 @@ msgstr "Wykonaj" msgid "Processes" msgstr "Procesy" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Profil" @@ -3982,8 +4021,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokół" @@ -3996,7 +4035,7 @@ msgstr "Protokół nowego interfejsu" msgid "Protocol support is not installed" msgstr "Wsparcie dla protokołu nie jest zainstalowane" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Włącz serwer NTP" @@ -4004,7 +4043,7 @@ msgstr "Włącz serwer NTP" msgid "Provide new network" msgstr "Utwórz nową sieć" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4019,6 +4058,10 @@ msgid "" "device, paste an OpenSSH compatible public key line or drag a <code>.pub</" "code> file into the input field." msgstr "" +"Klucze publiczne pozwalają na logowanie bez haseł SSH z wyższymi " +"zabezpieczeniami w porównaniu do użycia zwykłych haseł. Aby przesłać nowy " +"klucz do urządzenia, wklej klucz publiczny zgodny z OpenSSH lub przeciągnij " +"plik <code>.pub</code> do pola wejściowego." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 msgid "Public prefix routed to this device for distribution to clients." @@ -4029,7 +4072,7 @@ msgid "QMI Cellular" msgstr "Komórkowy QMI" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Jakość" @@ -4041,11 +4084,11 @@ msgstr "" "Zapytaj o wszystkie dostępne serwery <abbr title=\"Domain Name System\">DNS</" "abbr> " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4053,8 +4096,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Próg RTS/CTS" @@ -4068,27 +4115,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Szybkość RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Port Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Sekret Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Serwer Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Port Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Sekret Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Serwer Radius-Authentication" @@ -4149,7 +4196,7 @@ msgstr "Ruch w czasie rzeczywistym" msgid "Realtime Wireless" msgstr "Wi-Fi w czasie rzeczywistym" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "Termin reasocjacji" @@ -4157,7 +4204,7 @@ msgstr "Termin reasocjacji" msgid "Rebind protection" msgstr "Przypisz ochronę" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Restart" @@ -4175,8 +4222,8 @@ msgstr "Uruchamia ponownie system na twoim urządzeniu" msgid "Receive" msgstr "Odebrane" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena odbiorcza" @@ -4243,7 +4290,7 @@ msgstr "Zażądaj adresu IPv6" msgid "Request IPv6-prefix of length" msgstr "Zażądaj długość prefiksu IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "Wymagany" @@ -4266,10 +4313,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4311,7 +4358,7 @@ msgstr "Uruchom ponownie" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 msgid "Restart Firewall" -msgstr "Uruchom ponownie firewalla" +msgstr "Uruchom ponownie Firewalla" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 msgid "Restart radio interface" @@ -4326,8 +4373,8 @@ msgid "Restore backup" msgstr "Przywróć kopię zapasową" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Odsłoń/Ukryj hasło" @@ -4374,8 +4421,8 @@ msgstr "Typ trasy" msgid "Router Advertisement-Service" msgstr "Serwis rozgłoszeniowy routera" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Hasło routera" @@ -4395,7 +4442,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 msgid "Rule" -msgstr "" +msgstr "Reguła" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" @@ -4414,7 +4461,7 @@ msgstr "" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Dostęp SSH" @@ -4431,7 +4478,7 @@ msgstr "Port serwera SSH" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Klucze SSH" @@ -4439,18 +4486,18 @@ msgstr "Klucze SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 msgid "SWAP" -msgstr "" +msgstr "SWAP" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Zapisz" @@ -4461,11 +4508,11 @@ msgstr "Zapisz i zastosuj" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 msgid "Save mtdblock" -msgstr "" +msgstr "Zapisz mtdblock" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 msgid "Save mtdblock contents" -msgstr "" +msgstr "Zapisz zawartość mtdblock" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 msgid "Saving keys…" @@ -4479,7 +4526,7 @@ msgstr "Skanuj" msgid "Scan request failed" msgstr "Próba skanowania nie powiodła się" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Zaplanowane Zadania" @@ -4519,7 +4566,7 @@ msgstr "" "Wysyłaj żądania echa LCP w określonym przedziale czasowym, efektywne tylko " "wtedy gdy jest ustawiony próg błedu LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Rozdziel klientów" @@ -4542,7 +4589,7 @@ msgstr "Serwisy" #: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 msgid "Session expired" -msgstr "" +msgstr "Sesja wygasła" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 msgid "Set VPN as Default Route" @@ -4556,7 +4603,7 @@ msgstr "" "Ustaw właściwości interfejsu, niezależnie od operatora łącza (nie wpływa na " "programy operatora które ustanawiają połączenie)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Ustawienia synchronizacji czasu" @@ -4573,7 +4620,7 @@ msgstr "Ustawienie trybu nie powiodło się" msgid "Setup DHCP Server" msgstr "Ustawienia serwera DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "Ilość poważnych błedów (SES)" @@ -4581,7 +4628,7 @@ msgstr "Ilość poważnych błedów (SES)" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Krótki Wstęp" @@ -4591,7 +4638,7 @@ msgstr "Pokaż aktualną listę plików do backupu" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 msgid "Show empty chains" -msgstr "" +msgstr "Pokaż puste łańcuchy" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 msgid "Shutdown this interface" @@ -4604,11 +4651,11 @@ msgstr "Wyłącz ten interfejs" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Sygnał" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "Tłumienie sygnału (SATN)" @@ -4624,7 +4671,7 @@ msgstr "Rozmiar" msgid "Size of DNS query cache" msgstr "Rozmiar pamięci podręcznej zapytań DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4633,21 +4680,19 @@ msgstr "" msgid "Skip" msgstr "Pomiń" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Pomiń do zawartości" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Pomiń do nawigacji" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Szczelina czasowa" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "Programowy VLAN" @@ -4740,7 +4785,7 @@ msgstr "Zatwierdzanie konfiguracji…" msgid "Starting wireless scan..." msgstr "Rozpoczynanie skanowania..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Autostart" @@ -4760,7 +4805,7 @@ msgstr "Dzierżawy statyczne" msgid "Static Routes" msgstr "Statyczne ścieżki routingu" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Stały adres" @@ -4775,9 +4820,9 @@ msgstr "" "niedynamicznych konfiguracji interfejsu, gdzie obsługiwane są tylko hosty z " "odpowiednim dzierżawami." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" -msgstr "" +msgstr "Station inactivity limit" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 @@ -4795,6 +4840,10 @@ msgstr "Stop" msgid "Strict order" msgstr "Zachowaj kolejność" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Wyślij" @@ -4809,7 +4858,7 @@ msgstr "Pomiń rejestrowanie rutynowych operacji dla tych protokołów" #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 msgid "Swap" -msgstr "" +msgstr "Swap" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 msgid "Swap Entry" @@ -4820,15 +4869,15 @@ msgstr "Zamień wpis" msgid "Switch" msgstr "Przełącznik" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Przełącznik %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Przełącznik %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4837,7 +4886,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4847,14 +4896,18 @@ msgstr "Protokół przełącznika" #: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 msgid "Switch to CIDR list notation" -msgstr "" +msgstr "Przejdź do notacji listy CIDR" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 msgid "Switchport activity (%s)" +msgstr "Aktywność Switchportu (%s)" + +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Synchronizuj z przeglądarką" @@ -4880,7 +4933,7 @@ msgid "System Properties" msgstr "Właściwości systemu" # Wszędzie używane jest "loga" z małej litery. -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Rozmiar bufora loga systemu" @@ -4996,6 +5049,12 @@ msgid "" "warning and edit changes before attempting to apply again, or revert all " "pending changes to keep the currently working configuration state." msgstr "" +"Nie można uzyskać dostępu do urządzenia w ciągu %d sekund po zastosowaniu " +"oczekujących zmian, które spowodowały wycofanie konfiguracji ze względów " +"bezpieczeństwa. Jeśli jednak uważasz, że zmiany konfiguracji są poprawne, " +"kontynuuj, stosując je mimo to. Możesz też odrzucić to ostrzeżenie i " +"edytować zmiany przed ponownym zastosowaniem lub odrzucić wszystkie " +"oczekujące zmiany, aby zachować aktualnie działający stan konfiguracji." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 @@ -5037,13 +5096,15 @@ msgstr "Następujące zasady są obecnie aktywne w tym systemie." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 msgid "The given SSH public key has already been added." -msgstr "" +msgstr "Podany klucz publiczny SSH został już dodany." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 msgid "" "The given SSH public key is invalid. Please supply proper public RSA or " "ECDSA keys." msgstr "" +"Podany klucz publiczny SSH jest nieprawidłowy. Podaj odpowiedni publiczny " +"RSA lub klucze ECDSA." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" @@ -5073,7 +5134,7 @@ msgstr "Długość prefiksu IPv6 w bitach" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" +msgstr "Lokalny adres IPv4, na którym tworzony jest tunel (opcjonalnie)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 msgid "" @@ -5099,16 +5160,16 @@ msgstr "Wybrany protokół potrzebuje przypisanego urządzenia" #: modules/luci-base/luasrc/view/csrftoken.htm:11 msgid "The submitted security token is invalid or already expired!" -msgstr "" +msgstr "The submitted security token is invalid or already expired!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" "System usuwa teraz partycję konfiguracji i zrestartuje się po zakończeniu." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5123,7 +5184,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 msgid "The system password has been successfully changed." -msgstr "" +msgstr "Hasło systemowe zostało pomyślnie zmienione." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" @@ -5133,7 +5194,7 @@ msgstr "" "Przesłany plik obrazu nie zawiera obsługiwanego formatu. Upewnij się, że " "wybrałeś odpowiedni format obrazu dla danej platformy." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Motyw" @@ -5163,10 +5224,9 @@ msgstr "" "sieciowe na karcie \"Ustawienia sprzętowe\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5263,30 +5323,30 @@ msgid "This page gives an overview over currently active network connections." msgstr "Poniższa strona przedstawia aktualnie aktywne połączenia sieciowe." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Ta sekcja nie zawiera jeszcze żadnych wartości" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synchronizacja czasu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Synchronizacja czasu nie jest jeszcze skonfigurowana." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Strefa czasowa" #: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 msgid "To login…" -msgstr "" +msgstr "Zaloguj się…" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" @@ -5322,7 +5382,7 @@ msgstr "Ruch" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Prędkość transmisji" @@ -5330,14 +5390,14 @@ msgstr "Prędkość transmisji" msgid "Transmit" msgstr "Nadawanie" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Siła nadawania" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antena nadajnika" @@ -5353,7 +5413,7 @@ msgstr "Rodzaj Triggeru" msgid "Tunnel ID" msgstr "Numer identyfikacyjny tunelu" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interfejs tunelu" @@ -5368,7 +5428,7 @@ msgid "Tx-Power" msgstr "Moc nadawania" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" @@ -5427,19 +5487,19 @@ msgstr "Nie można rozpoznać nazwy AFTR hosta" msgid "Unable to resolve peer host name" msgstr "Nie można rozpoznać nazwy peera" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "Czas niedostępnośći (UAS)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Nieznany" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "Nieznany błąd (%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Niezarządzalny" @@ -5450,10 +5510,9 @@ msgstr "Odmontuj" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 msgid "Unnamed key" -msgstr "" +msgstr "Klucz beznazwy" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5468,7 +5527,7 @@ msgstr "Nieobsługiwany typ MAP" msgid "Unsupported modem" msgstr "Nieobsługiwany modem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Nieobsługiwany typ protokołu." @@ -5522,8 +5581,8 @@ msgstr "Użyj bramy DHCP" msgid "Use DNS servers advertised by peer" msgstr "Użyj serwerów DNS rozgłaszanych przez peera" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Użyj kodów kraju ISO/IEC 3166 alpha2" @@ -5631,11 +5690,11 @@ msgstr "" msgid "Used" msgstr "Użyte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Użyte gniazdo klucza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5663,11 +5722,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "Sieci VLAN na %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "Sieci VLAN na %q (%s)" @@ -5713,18 +5772,18 @@ msgstr "Zweryfikuj" msgid "Virtual dynamic interface" msgstr "Wirtualny interfejs dynamiczny" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Otwarty system WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Współdzielony klucz WEP" @@ -5732,8 +5791,8 @@ msgstr "Współdzielony klucz WEP" msgid "WEP passphrase" msgstr "Hasło WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Tryb WMM" @@ -5741,9 +5800,9 @@ msgstr "Tryb WMM" msgid "WPA passphrase" msgstr "Hasło WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5767,8 +5826,8 @@ msgstr "Oczekiwanie na zastosowanie konfiguracji… %ds" msgid "Waiting for device..." msgstr "Oczekiwanie na urządzenie..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Ostrzeżenie" @@ -5778,7 +5837,11 @@ msgstr "" "Ostrzeżenie: Istnieją niezapisane zmiany, które zostaną utracone po ponownym " "uruchomieniu urządzenia!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5787,31 +5850,31 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 msgid "Wi-Fi activity (%s)" -msgstr "" +msgstr "Aktywność Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 msgid "Wi-Fi client association (%s)" -msgstr "" +msgstr "Powiązanie klienta Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 msgid "Wi-Fi data reception (%s)" -msgstr "" +msgstr "Odbiór danych Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 msgid "Wi-Fi data transmission (%s)" -msgstr "" +msgstr "Transmisja danych Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 msgid "Wi-Fi on (%s)" -msgstr "" +msgstr "Wi-Fi włączone (%s)" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Szerokość" #: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 msgid "WireGuard VPN" -msgstr "" +msgstr "WireGuard VPN" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 @@ -5819,12 +5882,12 @@ msgstr "" msgid "Wireless" msgstr "Sieć bezprzewodowa" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Adapter bezprzewodowy" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Sieć bezprzewodowa" @@ -5832,20 +5895,20 @@ msgstr "Sieć bezprzewodowa" msgid "Wireless Overview" msgstr "Przegląd sieci bezprzewodowych" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Zabezpieczenia sieci bezprzewodowych" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Sieć bezprzewodowa jest wyłączona" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Sieć bezprzewodowa jest niepołączona" @@ -5865,7 +5928,7 @@ msgstr "Sieć bezprzewodowa jest włączona" msgid "Write received DNS requests to syslog" msgstr "Zapisz otrzymane żądania DNS do syslog'a" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Zapisz log systemowy do pliku" @@ -5885,41 +5948,30 @@ msgstr "" "się nieosiągalne!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Musisz włączyć obsługę JavaScript w swojej przeglądarce, inaczej LuCI nie " "będzie działać poprawnie." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Twój Internet Explorer jest za stary, aby poprawnie wyświetlić tę stronę " -"zaktualizuj go do wersji co najmniej 7 lub użyj innej przeglądarki, takiej " -"jak Firefox, Opera czy Safari." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" -msgstr "" +msgstr "Alogrytm kompresji ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" -msgstr "" +msgstr "Strumienie kompresji ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" -msgstr "" +msgstr "Ustawienia ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" -msgstr "" +msgstr "Rozmiar ZRam" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 msgid "any" @@ -5928,11 +5980,11 @@ msgstr "dowolny" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5985,8 +6037,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "wyłącz" @@ -6045,19 +6097,6 @@ msgstr "jeżeli celem jest sieć" msgid "input" msgstr "wejście" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6080,17 +6119,17 @@ msgstr "kbit/s" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 msgid "key between 8 and 63 characters" -msgstr "" +msgstr "klucz od 8 do 63 znaków" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 msgid "key with either 5 or 13 characters" -msgstr "" +msgstr "klucz z 5 lub 13 znakami" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "lokalny plik <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "minuty" @@ -6119,20 +6158,18 @@ msgstr "" msgid "not present" msgstr "nieobecny" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "wyłączone" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "włączone" @@ -6176,8 +6213,8 @@ msgstr "" msgid "routed" msgstr "routowane" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6198,11 +6235,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "otagowane" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "jednostki czasu (TUs / 1.024 ms) [1000-65535]" @@ -6229,7 +6266,7 @@ msgstr "nieokreślone" msgid "unspecified -or- create:" msgstr "nieokreślone -lub- utwórz:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "nieotagowane" @@ -6399,6 +6436,18 @@ msgstr "tak" msgid "« Back" msgstr "« Wróć" +#~ msgid "" +#~ "Your Internet Explorer is too old to display this page correctly. Please " +#~ "upgrade it to at least version 7 or use another browser like Firefox, " +#~ "Opera or Safari." +#~ msgstr "" +#~ "Twój Internet Explorer jest za stary, aby poprawnie wyświetlić tę stronę " +#~ "zaktualizuj go do wersji co najmniej 7 lub użyj innej przeglądarki, " +#~ "takiej jak Firefox, Opera czy Safari." + +#~ msgid "kB" +#~ msgstr "kB" + # nie ma słowa "autentykacji". Uwierzytelnianie! #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " diff --git a/modules/luci-base/po/pt-br/base.po b/modules/luci-base/po/pt-br/base.po index 36e5c7161d..a9638ad587 100644 --- a/modules/luci-base/po/pt-br/base.po +++ b/modules/luci-base/po/pt-br/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s está sem etiqueta em múltiplas VLANs!" @@ -57,16 +57,16 @@ msgstr "(nenhuma interface conectada)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Por favor, escolha --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizado --" @@ -92,6 +92,10 @@ msgstr "" msgid "-- please select --" msgstr "-- por favor, selecione --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga 1 Minuto:" @@ -100,7 +104,7 @@ msgstr "Carga 1 Minuto:" msgid "15 Minute Load:" msgstr "Carga 15 Minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "Identificador hexadecimal de 4 caracteres" @@ -112,37 +116,37 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Carga 5 Minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" "Identificador de 6 octetos como uma cadeia hexadecimal - sem dois pontos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "802.11r Fast Transition" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "Tempo de expiração máximo da consulta da Associação SA do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" "Tempo de expiração de tentativa de consulta da Associação SA do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "Proteção do Quadro de Gerenciamento do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "Estouro de tempo máximo do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "Estouro de tempo da nova tentativa do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>" @@ -165,7 +169,7 @@ msgstr "" "O servidor <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr> irá " "consultar na ordem do arquivo resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" @@ -204,7 +208,7 @@ msgstr "" "<abbr title=\"Internet Protocol Version 6/Protocolo Internet Versão " "6\">IPv6</abbr>-Suffix (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" @@ -321,7 +325,7 @@ msgstr "" msgid "ATM device number" msgstr "Número do dispositivo ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "Identificador de" @@ -329,8 +333,8 @@ msgstr "Identificador de" msgid "Access Concentrator" msgstr "Concentrador de Acesso" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Ponto de Acceso (AP)" @@ -362,7 +366,7 @@ msgstr "Alocações DHCP ativas" msgid "Active DHCPv6 Leases" msgstr "Alocações DHCPv6 ativas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -370,8 +374,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -408,8 +412,8 @@ msgstr "Arquivos adicionais de equipamentos conhecidos (hosts)" msgid "Additional servers file" msgstr "Arquivo de servidores adicionais" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Endereço" @@ -418,32 +422,36 @@ msgid "Address to access local relay bridge" msgstr "Endereço para acessar a ponte por retransmissão local" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administração" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Opções Avançadas" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" "Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit Power" "\">ACTATP</abbr>)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "Interface Adicional" @@ -473,23 +481,23 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Permitir, em modo AP, a desconexão de estações baseada na baixa qualidade " "das confirmações (ACK)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Permitir todos, exceto os listados" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "Permitir taxas legadas do 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Permitir somente os listados" @@ -534,7 +542,7 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -543,7 +551,7 @@ msgstr "" "sobreposto. Esta opção não está de acordo com IEEE 802.11n-2009!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "Anexo" @@ -616,7 +624,7 @@ msgstr "Domínios DNS anunciados" msgid "Announced DNS servers" msgstr "Servidores DNS anunciados" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "Identidade Anônima" @@ -628,17 +636,17 @@ msgstr "Montagem Anônima" msgid "Anonymous Swap" msgstr "Espaço de Troca (swap) Anônimo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configuração da antena" @@ -666,7 +674,7 @@ msgstr "" "Atribua uma parte do comprimento de cada prefixo IPv6 público para esta " "interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Atribuir as interfaces..." @@ -683,7 +691,7 @@ msgstr "" msgid "Associated Stations" msgstr "Estações associadas" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "Associações" @@ -692,7 +700,7 @@ msgstr "Associações" msgid "Auth Group" msgstr "Grupo de Autenticação" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autenticação" @@ -710,12 +718,11 @@ msgstr "Autorização Necessária" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Atualização Automática" @@ -791,7 +798,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -821,7 +828,7 @@ msgstr "Voltar para os resultados da busca" msgid "Backup" msgstr "Cópia de Segurança" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Cópia de Segurança / Gravar Firmware" @@ -833,12 +840,12 @@ msgstr "Lista de arquivos para a cópia de segurança" msgid "Bad address specified!" msgstr "Endereço especificado está incorreto!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "Banda" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "Intervalo do quadro de monitoramento (Beacon)" @@ -868,7 +875,7 @@ msgstr "Vincule o túnel a esta interface (opcional)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Taxa de bits" @@ -876,7 +883,7 @@ msgstr "Taxa de bits" msgid "Bogus NX Domain Override" msgstr "Substituir Domínio NX Falsos" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Ponte" @@ -961,7 +968,7 @@ msgstr "Alterações aplicadas." msgid "Changes have been reverted." msgstr "As mudanças foram revertidas." -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Muda a senha do administrador para acessar este dispositivo" @@ -969,12 +976,12 @@ msgstr "Muda a senha do administrador para acessar este dispositivo" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canal" @@ -1020,7 +1027,7 @@ msgstr "" "zona associada ou preencha o campo para criar uma nova zona associada a esta " "interface." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1028,7 +1035,7 @@ msgstr "" "Escolha a rede (s) que deseja anexar a este interface wireless ou preencha o " "<em> criar </em> campo para definir uma nova rede." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Cifra" @@ -1052,8 +1059,8 @@ msgstr "" "Clique em \"Salvar o bloco mtd\" para baixar o arquivo do bloco mtd " "especificado. (NOTA: ESTE RECURSO É PARA PROFISSIONAIS!)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Cliente" @@ -1098,7 +1105,7 @@ msgstr "Fechar a lista..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Coletando dados..." @@ -1114,7 +1121,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuração Comum" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1151,7 +1158,7 @@ msgstr "A configuração foi aplicada." msgid "Configuration has been rolled back!" msgstr "A configuração foi revertida!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmação" @@ -1160,12 +1167,12 @@ msgid "Connect" msgstr "Conectar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Conectado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Limite de conexão" @@ -1192,9 +1199,9 @@ msgstr "" msgid "Country" msgstr "País" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Código do País" @@ -1219,11 +1226,11 @@ msgstr "Criar Interface" msgid "Create a bridge over multiple interfaces" msgstr "Criar uma ponte juntando múltiplas interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Crítico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Nível de Registro da Cron" @@ -1258,15 +1265,15 @@ msgstr "" "Se possível, personaliza o comportamento dos <abbr title=\"Diodo Emissor de " "Luz\">LED</abbr>s." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1280,7 +1287,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP e DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1300,16 +1307,16 @@ msgstr "Modo DHCPv6" msgid "DHCPv6-Service" msgstr "Serviço DHCPv6" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1342,7 +1349,7 @@ msgstr "Endereço DS-Lite AFTR" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "Estado da DSL" @@ -1350,7 +1357,7 @@ msgstr "Estado da DSL" msgid "DSL line mode" msgstr "Modo de linha DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" "Intervalo <abbr title=\"Mensagem Indicativa de Envio de Tráfego/Delivery " @@ -1360,18 +1367,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "Taxa de Dados" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depurar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Padrão %d" @@ -1411,7 +1418,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Apagar" @@ -1425,7 +1432,7 @@ msgstr "" msgid "Delete this network" msgstr "Apagar esta rede" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego" @@ -1441,8 +1448,8 @@ msgstr "Destino" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1498,7 +1505,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Desabilitar Cifragem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1516,11 +1523,11 @@ msgstr "Desabilitar esta rede" msgid "Disabled" msgstr "Desabilitado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Desabilitado (padrão)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "Desassociar quando tiver baixa confirmação de recebimento" @@ -1544,16 +1551,16 @@ msgstr "A tentativa de desconexão falhou" msgid "Dismiss" msgstr "Dispensar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Otimização de Distância" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distância para o computador mais distante da rede (em metros)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversidade" @@ -1667,7 +1674,7 @@ msgstr "" msgid "EA-bits length" msgstr "Comprimento dos bits EA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Método EAP" @@ -1694,7 +1701,7 @@ msgstr "Editar esta interface" msgid "Edit this network" msgstr "Editar esta rede" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergência" @@ -1732,11 +1739,11 @@ msgstr "Ativar a negociação de IPv6" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Ativar a negociação de IPv6 no enlace PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Ativar o encaminhamento de quadros jumbos (Jumbo Frames)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Ativar o cliente <abbr title=\"Network Time Protocol\">NTP</abbr>" @@ -1748,28 +1755,28 @@ msgstr "Habilitar DES Simples" msgid "Enable TFTP server" msgstr "Ativar servidor TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Ativar funcionalidade de VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Habilite o botão WPS. requer WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" "Habilitar contramedidas contra o ataque de reinstalação de chave (KRACK)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Ativar o aprendizado e obsolescência" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "Habilitar espelhamento dos pacotes entrantes" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "Habilitar espelhamento dos pacotes saintes" @@ -1806,7 +1813,7 @@ msgstr "" "Grupos da Internet/Internet Group Management Protocol\">IGMP</abbr> " "(Snooping) nesta ponte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1825,9 +1832,9 @@ msgstr "Modo de encapsulamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Cifragem" @@ -1847,28 +1854,28 @@ msgstr "Entre com valor personalizado" msgid "Enter custom values" msgstr "Entre com valores personalizados" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Apagando..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Erro" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "Segundos com erro (ES)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Adaptador Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch Ethernet" @@ -1884,7 +1891,7 @@ msgstr "Expandir arquivos de equipamentos conhecidos (hosts)" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Expira" @@ -1899,23 +1906,23 @@ msgstr "" msgid "External" msgstr "Externo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "Lista dos Detentor de Chave R0 Externa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "Lista dos Detentor de Chave R1 Externa" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor externo de registros do sistema (syslog)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Porta do servidor externo de registro do sistema (syslog)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Protocolo do servidor externo de registro do sistema (syslog)" @@ -1923,17 +1930,17 @@ msgstr "Protocolo do servidor externo de registro do sistema (syslog)" msgid "Extra SSH command options" msgstr "Opções adicionais do comando SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" "<abbr title=\"Transição Rápida/Fast Transition\">FT</abbr> sobre <abbr " "title=\"Sistema Distribuído/Distributed System\">DS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "<abbr title=\"Transição Rápida/Fast Transition\">FT</abbr> pelo ar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" "Protocolo de <abbr title=\"Transição Rápida/Fast Transition\">FT</abbr>" @@ -2031,7 +2038,7 @@ msgstr "Gravar nova imagem do firmware" msgid "Flash operations" msgstr "Operações na memória flash" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Gravando na flash..." @@ -2045,11 +2052,11 @@ msgstr "" msgid "Force" msgstr "Forçar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "Force o modo 40MHz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Forçar CCMP (AES)" @@ -2057,11 +2064,11 @@ msgstr "Forçar CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forçar o DHCP nesta rede mesmo se outro servidor for detectado." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Forçar TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Forçar TKIP e CCMP (AES)" @@ -2085,7 +2092,7 @@ msgstr "Chave eletrônica do formulário não casa" msgid "Forward DHCP traffic" msgstr "Encaminhar tráfego DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" "Segundos a frente de correção de erros ( <abbr title=\"Forward Error " @@ -2095,7 +2102,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Encaminhar tráfego broadcast" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "Encaminhar o tráfego do parceiro da malha" @@ -2103,12 +2110,12 @@ msgstr "Encaminhar o tráfego do parceiro da malha" msgid "Forwarding mode" msgstr "Modo de encaminhamento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Limiar de Fragmentação" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Explosão de Quadros (Frame Bursting)" @@ -2127,7 +2134,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2136,8 +2143,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Somente GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Roteador" @@ -2160,7 +2167,7 @@ msgstr "Configurações Gerais" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Configurações Gerais" @@ -2168,7 +2175,7 @@ msgstr "Configurações Gerais" msgid "Generate Config" msgstr "Gerar Configuração" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" "Gerar a <abbr title=\"Chave mestre do emparelhamento/Pairwise Master Key" @@ -2197,7 +2204,7 @@ msgstr "Opções de rede globais" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ir para a configuração de senha..." @@ -2222,7 +2229,7 @@ msgstr "Senha HE.net" msgid "HE.net username" msgstr "Usuário do HE.net" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" "Modo <abbr title=\"High Throughput/Alta Taxa de Transferência\">HT</abbr> " @@ -2232,7 +2239,7 @@ msgstr "" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" "Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</" @@ -2250,9 +2257,9 @@ msgstr "" "Aqui você pode configurar os aspectos básicos do seu equipamento, como o " "nome do equipamento ou o fuso horário." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos" @@ -2290,8 +2297,7 @@ msgstr "Conteúdo da etiqueta única do equipamento" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Nome do equipamento" @@ -2354,7 +2360,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall para IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "Enlace IPv4 Superior" @@ -2448,7 +2454,7 @@ msgstr "" "Prefixo <abbr title=\"Unique Local Address/Endereço Local Único\">ULA</abbr> " "IPv6" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "Enlace IPv6 Superior" @@ -2515,7 +2521,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identidade PEAP" @@ -2635,10 +2641,14 @@ msgstr "Tempo limite de inatividade" msgid "Inbound:" msgstr "Entrando:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informação" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "Falha na iniciação" @@ -2659,7 +2669,7 @@ msgstr "Instale iputils-traceroute6 para rastrear rotas IPv6" msgid "Install package %q" msgstr "Instalar pacote %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Instalar extensões de protocolo..." @@ -2677,7 +2687,7 @@ msgstr "Interface" msgid "Interface %q device auto-migrated from %q to %q." msgstr "Dispositivo da interface %q foi migrada automaticamente de %q para &q." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Configuração da Interface" @@ -2689,12 +2699,12 @@ msgstr "Visão Geral da Interface" msgid "Interface is reconnecting..." msgstr "A interface está reconectando..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Nome da Interface" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "A interface não está presente ou não está conectada ainda." @@ -2713,17 +2723,17 @@ msgid "Internal Server Error" msgstr "Erro Interno no Servidor" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Valor inválido" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "O valor informado do ID da VLAN é inválido! Somente valores entre %d e %d " "são permitidos." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" "O valor informado do ID da VLAN é inválido! Somente valores únicos são " @@ -2733,7 +2743,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Usuário e/ou senha inválida! Por favor, tente novamente." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Isolar Clientes" @@ -2746,10 +2756,9 @@ msgstr "" "equipamento. Por favor verifique o arquivo da imagem!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -2778,18 +2787,22 @@ msgstr "Registro do Kernel" msgid "Kernel Version" msgstr "Versão do Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Chave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Chave #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Matar" @@ -2829,7 +2842,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Idioma" @@ -2837,7 +2850,7 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Idioma e Estilo" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "Latência" @@ -2890,19 +2903,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "Escute somente nestas interfaces e na interface local (loopback)." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "Atenuação de Linha (<abbr title=\"Line Attenuation\">LATN</abbr>)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "Modo da Linha" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "Estado da Linha" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "Tempo de Atividade da Linha" @@ -2918,7 +2931,7 @@ msgstr "" "Lista dos servidores <abbr title=\"Domain Name System\">DNS</abbr> para " "encaminhar as requisições" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2932,7 +2945,7 @@ msgstr "" "um endereço MAC de destino ao solicitar a chave PMK-R1 a partir do R0KH que " "o STA usado durante a Associação de Domínio de Mobilidade Inicial." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2980,7 +2993,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Porta de escuta para a entrada das consultas DNS" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Carga" @@ -3029,7 +3041,7 @@ msgid "Local Startup" msgstr "Iniciação Local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora Local" @@ -3072,7 +3084,7 @@ msgstr "Localizar consultas" msgid "Locked to channel %s used by: %s" msgstr "Travado no canal %s usado por: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Nível de detalhamento de saída dos registros" @@ -3092,7 +3104,7 @@ msgstr "Entrar" msgid "Logout" msgstr "Sair" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" "Segundos de Perda de Sinal (<abbr title=\"Loss of Signal Seconds\">LOSS</" @@ -3110,24 +3122,24 @@ msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Endereço MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtro de Endereço MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtro de MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Lista de MAC" @@ -3177,13 +3189,13 @@ msgstr "" msgid "Manual" msgstr "Manual" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" "Taxa de Dados Atingível Máxima (<abbr title=\"Maximum Attainable Data Rate" "\">ATTNDR</abbr>)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3219,12 +3231,16 @@ msgstr "Número máximo de endereços atribuídos." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memória" @@ -3233,7 +3249,7 @@ msgstr "Memória" msgid "Memory usage (%)" msgstr "Uso da memória (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "Identificador da Malha" @@ -3245,11 +3261,11 @@ msgstr "Identificador da Malha" msgid "Metric" msgstr "Métrica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "Porta de monitoramento do espelho" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "Porta de origem do espelho" @@ -3257,16 +3273,16 @@ msgstr "Porta de origem do espelho" msgid "Missing protocol extension for proto %q" msgstr "Extensão para o protocolo %q está ausente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "Domínio da Mobilidade" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Modo" @@ -3294,12 +3310,16 @@ msgstr "A consulta das informações do modem falhou" msgid "Modem init timeout" msgstr "Estouro de tempo da iniciação do modem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Entrada de Montagem" @@ -3309,7 +3329,7 @@ msgstr "Entrada de Montagem" msgid "Mount Point" msgstr "Ponto de Montagem" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3359,7 +3379,7 @@ msgstr "Mover para baixo" msgid "Move up" msgstr "Mover para cima" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3383,7 +3403,7 @@ msgstr "Proxy NDP" msgid "NT Domain" msgstr "Domínio NT" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidatos a servidor NTP" @@ -3401,18 +3421,17 @@ msgstr "Nome da nova interface" msgid "Name of the new network" msgstr "Nome da nova rede" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navegação" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Máscara de rede" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3436,7 +3455,7 @@ msgstr "" msgid "Network device is not present" msgstr "O dispositivo de rede não está presente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Rede sem interfaces." @@ -3461,7 +3480,7 @@ msgid "No files found" msgstr "Nenhum arquivo encontrado" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Nenhuma informação disponível" @@ -3483,10 +3502,9 @@ msgid "No network name specified" msgstr "Nenhum nome de rede foi especificado" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nenhuma senha definida!" @@ -3514,7 +3532,7 @@ msgstr "Nenhuma zona definida" msgid "Noise" msgstr "Ruído" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" "Margem de Ruído (<abbr title=\"Razão entre Sinal e Ruído/Signal to Noise " @@ -3524,7 +3542,7 @@ msgstr "" msgid "Noise:" msgstr "Ruído:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" "Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</" @@ -3539,7 +3557,7 @@ msgstr "Sem caracter curinga" msgid "None" msgstr "Nenhum" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3552,16 +3570,20 @@ msgstr "Não Encontrado" msgid "Not associated" msgstr "Não conectado" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Não conectado" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "Aviso: tamanho do nome da interface" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Aviso" @@ -3573,7 +3595,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "Número de entradas DNS em cache (máximo é 10000, 0 desabilita o cache)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3656,7 +3678,7 @@ msgstr "Opção alterada" msgid "Option removed" msgstr "Opção removida" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Opcional" @@ -3778,7 +3800,7 @@ msgstr "Sobrescrever o TOS" msgid "Override TTL" msgstr "Sobrescrever o TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "Sobrescrever o nome da nova interface" @@ -3843,7 +3865,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "Código PIN rejeitado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "PMK R1 Push" @@ -3896,8 +3918,8 @@ msgid "Part of zone %q" msgstr "Parte da zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3907,14 +3929,21 @@ msgstr "Senha" msgid "Password authentication" msgstr "Autenticação por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Senha da Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "Senha da Chave Privada interna" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Senha2" @@ -3923,27 +3952,27 @@ msgstr "Senha2" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Caminho para o Certificado da AC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado do Cliente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Caminho para a Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "Caminho para o certificado AC interno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "Caminho para o Certificado do Cliente interno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "Caminho para a Chave Privada interna" @@ -4021,6 +4050,14 @@ msgstr "Entre com o seu usuário e senha." msgid "Policy" msgstr "Política" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -4029,11 +4066,11 @@ msgstr "Porta" msgid "Port status:" msgstr "Status da porta:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "Modo de Gerenciamento de Energia" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" "Erros CRC Preemptivos<abbr title=\"Pre-emptive CRC errors\">CRCP_P</abbr>" @@ -4046,7 +4083,7 @@ msgstr "Preferir LTE" msgid "Prefer UMTS" msgstr "Preferir UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "Prefixo Delegado" @@ -4071,8 +4108,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Evite escutar nestas Interfaces." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Impede a comunicação de cliente para cliente" @@ -4089,7 +4126,7 @@ msgstr "Proceder" msgid "Processes" msgstr "Processos" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Perfil" @@ -4099,8 +4136,8 @@ msgstr "Protocolo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocolo" @@ -4113,7 +4150,7 @@ msgstr "Protocolo para a nova interface" msgid "Protocol support is not installed" msgstr "O suporte ao protocolo não está instalado" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Fornecer serviço <abbr title=\"Network Time Protocol\">NTP</abbr>" @@ -4121,7 +4158,7 @@ msgstr "Fornecer serviço <abbr title=\"Network Time Protocol\">NTP</abbr>" msgid "Provide new network" msgstr "Prover nova rede" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ad-Hoc falso (ahdemo)" @@ -4148,7 +4185,7 @@ msgid "QMI Cellular" msgstr "Celular QMI" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Qualidade" @@ -4160,11 +4197,11 @@ msgstr "" "Consulte todos os servidores <abbr title=\\\"Sistema de Nomes de Domínios\\" "\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "Validade da Chave R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "Detentor da Chave R1" @@ -4172,8 +4209,12 @@ msgstr "Detentor da Chave R1" msgid "RFC3947 NAT-T mode" msgstr "Modo NAT-T (RFC3947)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Limiar RTS/CTS" @@ -4187,27 +4228,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Taxa de RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Porta de contabilidade do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Segredo da contabilidade do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Servidor da contabilidade do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Porta de autenticação do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Segredo da autenticação do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Servidor da autenticação do RADIUS" @@ -4272,7 +4313,7 @@ msgstr "Tráfego em Tempo Real" msgid "Realtime Wireless" msgstr "Rede sem fio em Tempo Real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "Limite para Reassociação" @@ -4280,7 +4321,7 @@ msgstr "Limite para Reassociação" msgid "Rebind protection" msgstr "Proteção contra \"Rebind\"" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reiniciar" @@ -4298,8 +4339,8 @@ msgstr "Reinicia o sistema operacional do seu dispositivo" msgid "Receive" msgstr "Receber" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena de Recepção" @@ -4366,7 +4407,7 @@ msgstr "Solicita endereço IPv6" msgid "Request IPv6-prefix of length" msgstr "Solicita prefixo IPv6 de tamanho" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "Necessário" @@ -4393,11 +4434,11 @@ msgstr "" "usar dentro do túnel. Normalmente é o endereço IP do parceiro no túnel e as " "redes que o parceiro roteia através do túnel." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" -msgstr "Obrigatório. Chave Pública do parceiro." +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" +msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4453,8 +4494,8 @@ msgid "Restore backup" msgstr "Restaurar cópia de segurança" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Relevar/esconder senha" @@ -4502,8 +4543,8 @@ msgstr "Tipo de rota" msgid "Router Advertisement-Service" msgstr "Serviço de Anúncio de Roteador" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Senha do Roteador" @@ -4542,7 +4583,7 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acesso SSH" @@ -4559,7 +4600,7 @@ msgstr "Porta do servidor SSH" msgid "SSH username" msgstr "Usuário do SSH" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Chaves SSH" @@ -4567,7 +4608,7 @@ msgstr "Chaves SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4578,7 +4619,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Salvar" @@ -4607,7 +4648,7 @@ msgstr "Procurar" msgid "Scan request failed" msgstr "O pedido de escaneamento falhou" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" @@ -4647,7 +4688,7 @@ msgstr "" "Enviar requisições de eco do LCP no dado intervalo em segundos. Somente " "efetivo em conjunto com o limite de falhas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Isolar Clientes" @@ -4685,7 +4726,7 @@ msgstr "" "enlace (Se definido, eventos de detecção da portadora não irão gerar eventos " "do hotplug)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "Configurar a Sincronização do Horário" @@ -4703,7 +4744,7 @@ msgstr "A configuração do modo de operação falhou" msgid "Setup DHCP Server" msgstr "Configurar Servidor DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" "Segundos com erro severos (<abbr title=\"Severely Errored Seconds\">SES</" @@ -4713,7 +4754,7 @@ msgstr "" msgid "Short GI" msgstr "Intervalo de guarda curto" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Preâmbulo curto" @@ -4736,11 +4777,11 @@ msgstr "Desligar esta interface" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Sinal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)" @@ -4756,7 +4797,7 @@ msgstr "Tamanho" msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4765,21 +4806,19 @@ msgstr "" msgid "Skip" msgstr "Pular" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Pular para o conteúdo" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Pular para a navegação" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Intervalo de tempo" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "VLAN em Software" @@ -4877,7 +4916,7 @@ msgstr "Iniciando a aplicação da configuração..." msgid "Starting wireless scan..." msgstr "Iniciando o escaneamento da rede sem fio..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Iniciação" @@ -4897,7 +4936,7 @@ msgstr "Alocações Estáticas" msgid "Static Routes" msgstr "Rotas Estáticas" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Endereço Estático" @@ -4912,7 +4951,7 @@ msgstr "" "configurações não dinâmicas onde um computador com a alocação correspondente " "é provido." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4932,6 +4971,10 @@ msgstr "Parar" msgid "Strict order" msgstr "Ordem Exata" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Enviar" @@ -4957,15 +5000,15 @@ msgstr "Entrada do espaço de troca (Swap)" msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Switch %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Switch %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4976,7 +5019,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Máscara da porta do Switch" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "Switch VLAN" @@ -4992,8 +5035,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Sincronizar com o navegador" @@ -5018,7 +5065,7 @@ msgstr "Registro do Sistema" msgid "System Properties" msgstr "Propriedades do Sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Tamanho do buffer de registro do sistema" @@ -5248,7 +5295,7 @@ msgstr "O protocolo selecionado necessita estar associado a um dispositivo" msgid "The submitted security token is invalid or already expired!" msgstr "A chave eletrônica enviada é inválida ou já expirou!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5256,7 +5303,7 @@ msgstr "" "O sistema está apagando agora a partição da configuração e irá reiniciar " "quando terminado." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -5280,7 +5327,7 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que você " "escolheu uma imagem para a sua plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5310,10 +5357,9 @@ msgstr "" "de rede na aba \"Configurações Físicas\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5412,24 +5458,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "Esta página fornece informações sobre as conexões de rede ativas." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Esta seção ainda não contêm valores" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronização de horário" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "A sincronização do horário ainda não está configurada." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuso Horário" @@ -5472,7 +5518,7 @@ msgstr "Tráfego" msgid "Transfer" msgstr "Transferências" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Taxa de Transmissão" @@ -5480,14 +5526,14 @@ msgstr "Taxa de Transmissão" msgid "Transmit" msgstr "Transmitir" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Potência de Transmissão" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antena de Transmissão" @@ -5503,7 +5549,7 @@ msgstr "Modo de disparo" msgid "Tunnel ID" msgstr "Identificador do Túnel" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interface de Tunelamento" @@ -5518,7 +5564,7 @@ msgid "Tx-Power" msgstr "Potência de transmissão" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" @@ -5577,21 +5623,21 @@ msgstr "Não foi possível resolver o nome do AFTR" msgid "Unable to resolve peer host name" msgstr "Não foi possível resolver o nome do parceiro" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" "Segundos de indisponibilidade (<abbr title=\"Unavailable Seconds\">UAS</" "abbr>)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Desconhecido" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "Erro desconhecido (%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Não gerenciado" @@ -5605,7 +5651,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5622,7 +5667,7 @@ msgstr "" msgid "Unsupported modem" msgstr "Modem não suportado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Tipo de protocolo não suportado." @@ -5675,8 +5720,8 @@ msgstr "Use o roteador do DHCP" msgid "Use DNS servers advertised by peer" msgstr "Use os servidores DNS anunciados pelo parceiro" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Usar códigos de países ISO/IEC 3166 alpha2." @@ -5786,11 +5831,11 @@ msgstr "" msgid "Used" msgstr "Usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Posição da Chave Usada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5820,11 +5865,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs em %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs em %q (%s)" @@ -5870,18 +5915,18 @@ msgstr "Verificar" msgid "Virtual dynamic interface" msgstr "Interface virtual dinâmica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP Sistema Aberto" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP Chave Compartilhada" @@ -5889,8 +5934,8 @@ msgstr "WEP Chave Compartilhada" msgid "WEP passphrase" msgstr "WEP Senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Modo WMM" @@ -5898,9 +5943,9 @@ msgstr "Modo WMM" msgid "WPA passphrase" msgstr "WPA Senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5924,8 +5969,8 @@ msgstr "Esperando que a configuração seja aplicada...%ds" msgid "Waiting for device..." msgstr "Esperando pelo dispositivo..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Atenção" @@ -5933,7 +5978,11 @@ msgstr "Atenção" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Atenção: Existem mudanças não salvas que serão perdidas ao reiniciar!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5960,7 +6009,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Largura" @@ -5974,12 +6023,12 @@ msgstr "VPN WireGuard" msgid "Wireless" msgstr "Rede sem fio" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Dispositivo de Rede sem Fio" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Rede sem Fio" @@ -5987,20 +6036,20 @@ msgstr "Rede sem Fio" msgid "Wireless Overview" msgstr "Visão Geral da Rede sem Fio" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Segurança da Rede sem Fio" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Rede sem fio está desabilitada" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Rede sem fio está não conectada" @@ -6020,7 +6069,7 @@ msgstr "A rede sem fio está habilitada" msgid "Write received DNS requests to syslog" msgstr "Escreva as requisições DNS para o servidor de registro (syslog)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Escrever registro do sistema (log) no arquivo" @@ -6041,39 +6090,28 @@ msgstr "" "inacessível!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Você precisa habilitar o JavaScript no seu navegador ou o LuCI não irá " "funcionar corretamente." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Seu Internet Explorer é muito velho para mostrar esta página corretamente. " -"Por favor, atualiza para, ao menos, a versão 7 ou use outro navegador como o " -"Firefox, Opera ou Safari." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -6084,11 +6122,11 @@ msgstr "qualquer" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6141,8 +6179,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "desativar" @@ -6201,19 +6239,6 @@ msgstr "se o destino for uma rede" msgid "input" msgstr "entrada" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6247,7 +6272,7 @@ msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" "arquivo local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "minutos" @@ -6276,20 +6301,18 @@ msgstr "" msgid "not present" msgstr "não presente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "desligado" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ligado" @@ -6333,8 +6356,8 @@ msgstr "modo retransmissor" msgid "routed" msgstr "roteado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6355,11 +6378,11 @@ msgstr "sem estado" msgid "stateless + stateful" msgstr "sem estado + com estado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "etiquetado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "unidades de tempo (TUs / 1.024 ms) [1000-65535]" @@ -6386,7 +6409,7 @@ msgstr "não especificado" msgid "unspecified -or- create:" msgstr "não especificado -ou- criar:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "não etiquetado" @@ -6557,6 +6580,18 @@ msgid "« Back" msgstr "« Voltar" #~ msgid "" +#~ "Your Internet Explorer is too old to display this page correctly. Please " +#~ "upgrade it to at least version 7 or use another browser like Firefox, " +#~ "Opera or Safari." +#~ msgstr "" +#~ "Seu Internet Explorer é muito velho para mostrar esta página " +#~ "corretamente. Por favor, atualiza para, ao menos, a versão 7 ou use outro " +#~ "navegador como o Firefox, Opera ou Safari." + +#~ msgid "kB" +#~ msgstr "kB" + +#~ msgid "" #~ "When using a PSK, the PMK can be generated locally without inter AP " #~ "communications" #~ msgstr "" diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index 5455145520..ab3b1883c9 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -25,7 +25,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "(não existem interfaces ligadas)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Por favor escolha --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizado --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga de 1 Minuto:" @@ -98,7 +102,7 @@ msgstr "Carga de 1 Minuto:" msgid "15 Minute Load:" msgstr "Carga de 15 minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Carga 5 Minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>" @@ -161,7 +165,7 @@ msgstr "" "Os servidores de <abbr title=\"Servidor de Nomes de Domínio\">DNS</abbr> " "serão consultados pela ordem no ficheiro resolv" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" @@ -198,7 +202,7 @@ msgstr "Gateway <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" @@ -305,7 +309,7 @@ msgstr "" msgid "ATM device number" msgstr "Número de Dispositivo ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -313,8 +317,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Concentrador de Acesso" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Access Point (AP)" @@ -346,7 +350,7 @@ msgstr "Concessões DHCP Ativas" msgid "Active DHCPv6 Leases" msgstr "Concessões DHCPv6 Ativas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -354,8 +358,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -394,8 +398,8 @@ msgstr "Ficheiro Adicional de Hosts" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Endereço" @@ -404,30 +408,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administração" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Definições Avançadas" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -455,21 +463,21 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Permitir todos, excepto os listados" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Permitir somente os listados" @@ -512,14 +520,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -591,7 +599,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -603,17 +611,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configuração das Antenas" @@ -639,7 +647,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Atribuir interfaces..." @@ -654,7 +662,7 @@ msgstr "" msgid "Associated Stations" msgstr "Estações Associadas" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -663,7 +671,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autenticação" @@ -681,12 +689,11 @@ msgstr "Autorização Requerida" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Actualização Automática" @@ -758,7 +765,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -788,7 +795,7 @@ msgstr "Voltar aos resultados do scan" msgid "Backup" msgstr "Backup" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Backup / Flashar Firmware" @@ -800,12 +807,12 @@ msgstr "Lista de ficheiros para backup" msgid "Bad address specified!" msgstr "Endereço mal especificado!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -835,7 +842,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Taxa de bits" @@ -843,7 +850,7 @@ msgstr "Taxa de bits" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Bridge" @@ -927,7 +934,7 @@ msgstr "Alterações aplicadas." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Altera a password de administrador para acesso ao dispositivo" @@ -935,12 +942,12 @@ msgstr "Altera a password de administrador para acesso ao dispositivo" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canal" @@ -983,7 +990,7 @@ msgstr "" "coloque em branco o campo <em>criar</em> para definir a nova zona e ligar-" "lhe a interface." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -991,7 +998,7 @@ msgstr "" "Escolha a rede(s) à(s) qual(is) deseja ligar esta interface wireless ou " "preencha o campo <em>criar</em> para definir a nova rede." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Cifra" @@ -1013,8 +1020,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Cliente" @@ -1058,7 +1065,7 @@ msgstr "Fechar lista..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "A obter dados..." @@ -1074,7 +1081,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuração comum" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1106,7 +1113,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmação" @@ -1115,12 +1122,12 @@ msgid "Connect" msgstr "Ligar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Ligado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Limite de Ligações" @@ -1143,9 +1150,9 @@ msgstr "" msgid "Country" msgstr "País" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Código do País" @@ -1170,11 +1177,11 @@ msgstr "Criar interface" msgid "Create a bridge over multiple interfaces" msgstr "Criar uma bridge entre múltiplas interfaces " -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Nível de Log do Cron" @@ -1207,15 +1214,15 @@ msgstr "" "Customiza o comportamento dos <abbr title=\"Diodo Emissor de Luz\">LED</" "abbr>s, se possível." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1229,7 +1236,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP e DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1249,16 +1256,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1291,7 +1298,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1299,7 +1306,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1307,18 +1314,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depurar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1358,7 +1365,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Apagar" @@ -1372,7 +1379,7 @@ msgstr "" msgid "Delete this network" msgstr "Apagar esta rede" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1388,8 +1395,8 @@ msgstr "Destino" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1444,7 +1451,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1462,11 +1469,11 @@ msgstr "" msgid "Disabled" msgstr "Desativado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1489,16 +1496,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optimização de Distância" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distância para o último host da rede em metros." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversidade" @@ -1607,7 +1614,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Metodo-EAP" @@ -1632,7 +1639,7 @@ msgstr "Editar esta interface" msgid "Edit this network" msgstr "Editar esta rede" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergência" @@ -1667,11 +1674,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Ativar a negociação IPv6 no link PPP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Ativar a passagem de Jumbo Frames" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Ativar o cliente NTP" @@ -1683,27 +1690,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Ativar o servidor TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Ativar a funcionalidade VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Ativar aprendizagem e envelhecimento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1737,7 +1744,7 @@ msgstr "Ativado" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1754,9 +1761,9 @@ msgstr "Modo de encapsulamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Encriptação" @@ -1776,28 +1783,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "A apagar..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Erro" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Adaptador Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch Ethernet" @@ -1813,7 +1820,7 @@ msgstr "Expandir hosts" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Expira" @@ -1829,23 +1836,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor externo de logs de sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Porta do Servidor externo de logs de sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1853,15 +1860,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1953,7 +1960,7 @@ msgstr "Flashar nova imagem do firmware" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "A programar...." @@ -1967,11 +1974,11 @@ msgstr "" msgid "Force" msgstr "Forçar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Forçar CCMP (AES)" @@ -1979,11 +1986,11 @@ msgstr "Forçar CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forçar DHCP nesta rede mesmo se outro servidor for detectado." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Forçar TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Forçar TKIP e CCMP (AES)" @@ -2007,7 +2014,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Encaminhar tráfego DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -2015,7 +2022,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "Encaminhar trafego de broadcast" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -2023,12 +2030,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Modo de encaminhamento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Margem de Fragmentação" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Frame Bursting" @@ -2045,7 +2052,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2054,8 +2061,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Só GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Gateway" @@ -2078,7 +2085,7 @@ msgstr "Definições Gerais" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Configuração Geral" @@ -2086,7 +2093,7 @@ msgstr "Configuração Geral" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2114,7 +2121,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ir para a configuração da password" @@ -2139,7 +2146,7 @@ msgstr "Password HE.net" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2147,7 +2154,7 @@ msgstr "" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2163,9 +2170,9 @@ msgstr "" "Aqui pode configurar os aspectos básicos do seu equipamento, como o nome do " "host ou o fuso horário." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos" @@ -2202,8 +2209,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Hostname" @@ -2264,7 +2270,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2356,7 +2362,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2423,7 +2429,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identidade" @@ -2535,10 +2541,14 @@ msgstr "Tempo de inatividade" msgid "Inbound:" msgstr "Entrada:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2559,7 +2569,7 @@ msgstr "" msgid "Install package %q" msgstr "Instalar pacote %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Instalar extensões do protocolo..." @@ -2577,7 +2587,7 @@ msgstr "Interface" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Configuração da Interface" @@ -2589,12 +2599,12 @@ msgstr "Visão Geral da Interface" msgid "Interface is reconnecting..." msgstr "A interface está a religar..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Interface não presente ou ainda não ligada." @@ -2613,16 +2623,16 @@ msgid "Internal Server Error" msgstr "Erro Interno do Servidor" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Valor inválido" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "O ID de VLAN fornecido é inválido! Só os IDs entre %d e %d são permitidos." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "O ID de VLAN fornecido é inválido! Só os IDs únicos são permitidos." @@ -2630,7 +2640,7 @@ msgstr "O ID de VLAN fornecido é inválido! Só os IDs únicos são permitidos. msgid "Invalid username and/or password! Please try again." msgstr "Username inválido e/ou a password! Por favor, tente novamente." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2644,10 +2654,9 @@ msgstr "" "equipamento. Por favor verifique o ficheiro de imagem." #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -2676,18 +2685,22 @@ msgstr "Registo do Kernel" msgid "Kernel Version" msgstr "Versão do Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Chave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Chave #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Matar" @@ -2727,7 +2740,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Idioma" @@ -2735,7 +2748,7 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Língua e Tema" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2786,19 +2799,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2814,7 +2827,7 @@ msgstr "" "Lista de servidores <abbr title=\"Sistema Nomes de Domínio\">DNS</abbr> para " "onde encaminhar os pedidos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2823,7 +2836,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2862,7 +2875,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Porta de escuta para entrada de consultas DNS" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Carga" @@ -2911,7 +2923,7 @@ msgid "Local Startup" msgstr "Arranque Local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora Local" @@ -2952,7 +2964,7 @@ msgstr "Localizar consultas" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Nível de output do log" @@ -2972,7 +2984,7 @@ msgstr "Login" msgid "Logout" msgstr "Logout" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2988,24 +3000,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Endereço-MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filtro de Endereço-MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Filtro-MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Lista-MAC" @@ -3051,11 +3063,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3089,12 +3101,16 @@ msgstr "Número máximo de endereços concessionados." #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memória" @@ -3103,7 +3119,7 @@ msgstr "Memória" msgid "Memory usage (%)" msgstr "Uso de memória (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3115,11 +3131,11 @@ msgstr "" msgid "Metric" msgstr "Métrica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3127,16 +3143,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Falta a extensão de protocolo para o protocolo %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Modo" @@ -3164,12 +3180,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Montar Entrada" @@ -3179,7 +3199,7 @@ msgstr "Montar Entrada" msgid "Mount Point" msgstr "Ponto de Montagem" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3229,7 +3249,7 @@ msgstr "Subir" msgid "Move up" msgstr "Descer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3253,7 +3273,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidatos a servidor NTP" @@ -3271,18 +3291,17 @@ msgstr "Nome da nova interface" msgid "Name of the new network" msgstr "Nome da nova rede" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navegação" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Mascara de rede" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3306,7 +3325,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Rede sem interfaces." @@ -3331,7 +3350,7 @@ msgid "No files found" msgstr "Não foram encontrados ficheiros" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Sem informação disponível" @@ -3353,10 +3372,9 @@ msgid "No network name specified" msgstr "Nome de rede não especificado" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Sem password definida!" @@ -3384,7 +3402,7 @@ msgstr "Sem zona atribuída" msgid "Noise" msgstr "Ruído" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3392,7 +3410,7 @@ msgstr "" msgid "Noise:" msgstr "Ruído:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3405,7 +3423,7 @@ msgstr "" msgid "None" msgstr "Nenhum" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3418,16 +3436,20 @@ msgstr "Não encontrado" msgid "Not associated" msgstr "Não associado" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Não ligado" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Reparo" @@ -3439,7 +3461,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3521,7 +3543,7 @@ msgstr "Opção alterada" msgid "Option removed" msgstr "Opção removida" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3628,7 +3650,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3690,7 +3712,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3743,8 +3765,8 @@ msgid "Part of zone %q" msgstr "Parte da zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3754,14 +3776,21 @@ msgstr "Senha" msgid "Password authentication" msgstr "Autenticação por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Senha da Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3770,27 +3799,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Directorio do Certificado CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado de Cliente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Caminho da Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3868,6 +3897,14 @@ msgstr "Insira o seu username e password." msgid "Policy" msgstr "Política" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3876,11 +3913,11 @@ msgstr "Porta" msgid "Port status:" msgstr "Estado da porta:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3892,7 +3929,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3915,8 +3952,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Impede a comunicação cliente-a-cliente" @@ -3933,7 +3970,7 @@ msgstr "Proceder" msgid "Processes" msgstr "Processos" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3943,8 +3980,8 @@ msgstr "Protocolo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocolo" @@ -3957,7 +3994,7 @@ msgstr "Protocolo da nova interface" msgid "Protocol support is not installed" msgstr "O protocolo suportado não está instalado" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3965,7 +4002,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3990,7 +4027,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Qualidade" @@ -4000,11 +4037,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -4012,8 +4049,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Threshold" @@ -4027,27 +4068,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Taxa RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Porta-Conta-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Segredo-Conta-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Servidor-Conta-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Porta-Autenticação-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Segredo-Autenticação-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Servidor-Autenticação-Radius" @@ -4105,7 +4146,7 @@ msgstr "Tráfego em Tempo Real" msgid "Realtime Wireless" msgstr "Wireless em Tempo Real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4113,7 +4154,7 @@ msgstr "" msgid "Rebind protection" msgstr "Religar protecção" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reiniciar" @@ -4131,8 +4172,8 @@ msgstr "Reinicia o seu dispositivo" msgid "Receive" msgstr "Receber" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena de Recepção" @@ -4199,7 +4240,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4222,10 +4263,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4280,8 +4321,8 @@ msgid "Restore backup" msgstr "Restaurar backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Revelar/esconder password" @@ -4328,8 +4369,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Password do Router" @@ -4368,7 +4409,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acesso SSH" @@ -4385,7 +4426,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Chaves-SSH" @@ -4393,7 +4434,7 @@ msgstr "Chaves-SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4404,7 +4445,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Salvar" @@ -4433,7 +4474,7 @@ msgstr "Procurar" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" @@ -4468,7 +4509,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Isolar Clientes" @@ -4503,7 +4544,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configurar Sincronização Horária" @@ -4520,7 +4561,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Configurar Servidor DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4528,7 +4569,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4551,11 +4592,11 @@ msgstr "Desligar esta interface" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Sinal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4571,7 +4612,7 @@ msgstr "Tamanho" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4580,21 +4621,19 @@ msgstr "" msgid "Skip" msgstr "Saltar" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Ir para o conteúdo" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Ir para a navegação" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4681,7 +4720,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4701,7 +4740,7 @@ msgstr "Atribuições Estáticas" msgid "Static Routes" msgstr "Rotas Estáticas" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Endereço estático" @@ -4712,7 +4751,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4732,6 +4771,10 @@ msgstr "Parar" msgid "Strict order" msgstr "Ordem exacta" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Enviar" @@ -4757,15 +4800,15 @@ msgstr "" msgid "Switch" msgstr "Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4774,7 +4817,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4790,8 +4833,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Sincronizar com o browser" @@ -4816,7 +4863,7 @@ msgstr "Registo do Sistema" msgid "System Properties" msgstr "Propriedades do Sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -5029,7 +5076,7 @@ msgstr "O protocolo escolhido precisa de um dispositivo atribuído." msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5037,7 +5084,7 @@ msgstr "" "O sistema está agora a limpar a partição de configuração e irá reiniciar-se " "quando terminar." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5062,7 +5109,7 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que escolhe uma " "imagem genérica para a sua plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5092,10 +5139,9 @@ msgstr "" "rede nas \"Definições Físicas\"" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5179,24 +5225,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "Esta página fornece informações sobre as ligações de rede ativas." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Esta secção ainda não contêm valores" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronização Horária" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "A sincronização horária ainda não está configurada." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuso Horário" @@ -5238,7 +5284,7 @@ msgstr "Tráfego" msgid "Transfer" msgstr "Transferências" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Taxa de Transmissão" @@ -5246,14 +5292,14 @@ msgstr "Taxa de Transmissão" msgid "Transmit" msgstr "Transmitir" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Potência de Transmissão" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antena de Transmissão" @@ -5269,7 +5315,7 @@ msgstr "Modo de Trigger" msgid "Tunnel ID" msgstr "ID do Túnel" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interface de Túnel" @@ -5284,7 +5330,7 @@ msgid "Tx-Power" msgstr "Potência de Tx" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" @@ -5343,19 +5389,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Desconhecido" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Não gerido" @@ -5369,7 +5415,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5384,7 +5429,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Tipo de protocolo não suportado." @@ -5434,8 +5479,8 @@ msgstr "Usar a gateway do DHCP" msgid "Use DNS servers advertised by peer" msgstr "Usar os servidores DNS fornecidos pelo parceiro" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5538,11 +5583,11 @@ msgstr "" msgid "Used" msgstr "Usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5570,11 +5615,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANs em %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANs em %q (%s)" @@ -5620,18 +5665,18 @@ msgstr "Verificar" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Sistema Aberto WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Chave partilhada WEP" @@ -5639,8 +5684,8 @@ msgstr "Chave partilhada WEP" msgid "WEP passphrase" msgstr "Palavra-Passe WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Modo WMM" @@ -5648,9 +5693,9 @@ msgstr "Modo WMM" msgid "WPA passphrase" msgstr "Palavra-Passe WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5674,8 +5719,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Aviso" @@ -5683,7 +5728,11 @@ msgstr "Aviso" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5710,7 +5759,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5724,12 +5773,12 @@ msgstr "" msgid "Wireless" msgstr "Rede Wireless" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Adaptador Wireless" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Rede Wireless" @@ -5737,20 +5786,20 @@ msgstr "Rede Wireless" msgid "Wireless Overview" msgstr "Vista Global Wireless" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Segurança Wireless" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Wireless desativada" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Wireless não associada" @@ -5770,7 +5819,7 @@ msgstr "A rede wireless está ativada" msgid "Write received DNS requests to syslog" msgstr "Escrever os pedidos de DNS para o syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5791,36 +5840,28 @@ msgstr "" "inacessível!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Tem de activar o JavaScript no seu browser ou a LuCI não funcionará " "corretamente." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5831,11 +5872,11 @@ msgstr "qualquer" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5888,8 +5929,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "desativar" @@ -5948,19 +5989,6 @@ msgstr "se o destino for uma rede" msgid "input" msgstr "entrada" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5994,7 +6022,7 @@ msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" "Ficheiro local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -6022,20 +6050,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "desligado" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ligado" @@ -6079,8 +6105,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6101,11 +6127,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6132,7 +6158,7 @@ msgstr "não especificado" msgid "unspecified -or- create:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" @@ -6302,6 +6328,9 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index 618428c36d..cf1e4b6d37 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -24,7 +24,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -56,16 +56,16 @@ msgstr "(nici o interfata atasata)" msgid "-- Additional Field --" msgstr "-- Camp suplimentar --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Te rog sa alegi --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- particularizat --" @@ -89,6 +89,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Incarcarea in ultimul minut" @@ -97,7 +101,7 @@ msgstr "Incarcarea in ultimul minut" msgid "15 Minute Load:" msgstr "Incarcarea in ultimele 15 minute" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -109,35 +113,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Incarcarea in ultimele 5 minute" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -157,7 +161,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> serverul va interoga in " "vederea procesarii fisierului" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -191,7 +195,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Poarta Acces" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configurare" @@ -296,7 +300,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM numar echipament" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -304,8 +308,8 @@ msgstr "" msgid "Access Concentrator" msgstr "Concentrator de Access " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Punct de Acces" @@ -335,7 +339,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -343,8 +347,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -381,8 +385,8 @@ msgstr "Fisiere de tip hosts aditionale" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adresa" @@ -391,30 +395,34 @@ msgid "Address to access local relay bridge" msgstr "Adresa de acces punte locala repetor" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administrare" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Setari avansate" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -442,21 +450,21 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permite autentificarea prin parola a <abbr title=\"Secure Shell\">SSH</abbr> " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Permite toate cu exceptia celor listate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Permite doar cele listate" @@ -498,14 +506,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -577,7 +585,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -589,17 +597,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antena 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antena 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Configurarea Antenei" @@ -625,7 +633,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Inregistreaza interfetele" @@ -640,7 +648,7 @@ msgstr "" msgid "Associated Stations" msgstr "Statiile asociate" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -649,7 +657,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autentificare" @@ -667,12 +675,11 @@ msgstr "Necesita Autorizare" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Reimprospatare automata" @@ -744,7 +751,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -774,7 +781,7 @@ msgstr "Inapoi la rezultatele scanarii" msgid "Backup" msgstr "Salveaza" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Salveaza / Scrie Firmware" @@ -786,12 +793,12 @@ msgstr "Salveaza lista fisiere" msgid "Bad address specified!" msgstr "Adresa specificata gresit !" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -818,7 +825,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bitrate" @@ -826,7 +833,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Bogus NX Domain Override" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Punte" @@ -910,7 +917,7 @@ msgstr "Modificari aplicate." msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Schimba parola administratorului pentru accesarea dispozitivului" @@ -918,12 +925,12 @@ msgstr "Schimba parola administratorului pentru accesarea dispozitivului" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Canal" @@ -965,13 +972,13 @@ msgstr "" "<em>nespecificat</em> pentru a sterge interfata sau golire <em>creaza</em> " "camp ce defineste o zona noua asociata interfetei." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -991,8 +998,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "" @@ -1034,7 +1041,7 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Colectez datele.." @@ -1050,7 +1057,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configurarea obisnuita" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1082,7 +1089,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Confirmare" @@ -1091,12 +1098,12 @@ msgid "Connect" msgstr "Conectare" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Conectat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Limita de conexiune" @@ -1119,9 +1126,9 @@ msgstr "" msgid "Country" msgstr "Tara" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Codul de tara" @@ -1146,11 +1153,11 @@ msgstr "Creaza interfata" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critic" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1181,15 +1188,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1203,7 +1210,7 @@ msgstr "Server DHCP" msgid "DHCP and DNS" msgstr "DHCP si DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "" @@ -1223,16 +1230,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1265,7 +1272,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1273,7 +1280,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1281,18 +1288,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1329,7 +1336,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Sterge" @@ -1343,7 +1350,7 @@ msgstr "" msgid "Delete this network" msgstr "Sterge aceasta retea" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1359,8 +1366,8 @@ msgstr "Destinatie" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1415,7 +1422,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1433,11 +1440,11 @@ msgstr "" msgid "Disabled" msgstr "Dezactivat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1460,16 +1467,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Optimizarea distantei" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Distanta catre cel mai departat membru din retea in metri." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Diversitate" @@ -1563,7 +1570,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "" @@ -1588,7 +1595,7 @@ msgstr "Editeaza aceasta interfata" msgid "Edit this network" msgstr "Editeaza aceasta retea" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Urgenta" @@ -1623,11 +1630,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1639,27 +1646,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Activeaza serverul TFTP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Activeaza VLAN-urile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1693,7 +1700,7 @@ msgstr "Activat" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1710,9 +1717,9 @@ msgstr "Modul de incapsulare" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Criptare" @@ -1732,28 +1739,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Stergere..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Eroare" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Adaptor de retea ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Switch-ul ethernet" @@ -1769,7 +1776,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Expira" @@ -1782,23 +1789,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Server de log-uri extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Portul serverului de log-uri extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1806,15 +1813,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1906,7 +1913,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1920,11 +1927,11 @@ msgstr "" msgid "Force" msgstr "Forteaza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Forteaza CCMP (AES)" @@ -1933,11 +1940,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Forteaza facilitatea DHCP in aceasta retea chiar daca alt server DHCP exista." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Forteaza TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Forteaza TKIP si CCMP (AES)" @@ -1961,7 +1968,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1969,7 +1976,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1977,12 +1984,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -1999,7 +2006,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2008,8 +2015,8 @@ msgstr "" msgid "GPRS only" msgstr "Doar GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Gateway" @@ -2032,7 +2039,7 @@ msgstr "Setari principale" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Configurare generala" @@ -2040,7 +2047,7 @@ msgstr "Configurare generala" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2067,7 +2074,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2092,7 +2099,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2100,7 +2107,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2116,9 +2123,9 @@ msgstr "" "Aici poti configura aspectele de baza ale dispozitivului cum ar fi numele " "sau fusul orar." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Ascunde <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2152,8 +2159,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Numele de host" @@ -2214,7 +2220,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2306,7 +2312,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2373,7 +2379,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identitate" @@ -2479,10 +2485,14 @@ msgstr "" msgid "Inbound:" msgstr "Intrare:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informatii" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2503,7 +2513,7 @@ msgstr "" msgid "Install package %q" msgstr "Instalati pachetul %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2521,7 +2531,7 @@ msgstr "Interfata" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Configurarea interfetei" @@ -2533,12 +2543,12 @@ msgstr "Prezentare interfata" msgid "Interface is reconnecting..." msgstr "Interfata se reconecteaza.." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Interfata nu e prezenta sau nu este conectata inca." @@ -2557,15 +2567,15 @@ msgid "Internal Server Error" msgstr "Eroare interna de server" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Invalid" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2573,7 +2583,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Utilizator si/sau parola invalide! Incearcati din nou." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2587,10 +2597,9 @@ msgstr "" "flash, verifica fisierul din nou!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Ai nevoie de JavaScript !" @@ -2619,18 +2628,22 @@ msgstr "Log-ul kernelului" msgid "Kernel Version" msgstr "Versiunea de kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Opreste" @@ -2670,7 +2683,7 @@ msgstr "" msgid "Label" msgstr "Eticheta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Limba" @@ -2678,7 +2691,7 @@ msgstr "Limba" msgid "Language and Style" msgstr "Limba si stilul interfetei" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2729,19 +2742,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2755,7 +2768,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2764,7 +2777,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2802,7 +2815,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Incarcarea" @@ -2851,7 +2863,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Ora locala" @@ -2887,7 +2899,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2907,7 +2919,7 @@ msgstr "Autentificare" msgid "Logout" msgstr "Iesire" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2923,24 +2935,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "" @@ -2986,11 +2998,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3024,12 +3036,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Memorie" @@ -3038,7 +3054,7 @@ msgstr "Memorie" msgid "Memory usage (%)" msgstr "Utilizarea memoriei (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3050,11 +3066,11 @@ msgstr "" msgid "Metric" msgstr "Metrica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3062,16 +3078,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Mod" @@ -3099,12 +3115,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3114,7 +3134,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3162,7 +3182,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "" @@ -3186,7 +3206,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3204,18 +3224,17 @@ msgstr "Numele interfetei noi" msgid "Name of the new network" msgstr "Numele interfetei noi" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigare" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Netmask" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3239,7 +3258,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3264,7 +3283,7 @@ msgid "No files found" msgstr "Nici un fisier gasit" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Nici o informatie disponibila" @@ -3286,10 +3305,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nici o parola setata !" @@ -3317,7 +3335,7 @@ msgstr "" msgid "Noise" msgstr "Zgomot" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3325,7 +3343,7 @@ msgstr "" msgid "Noise:" msgstr "Zgomot:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3338,7 +3356,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3351,16 +3369,20 @@ msgstr "Nu a fost gasit" msgid "Not associated" msgstr "Nu este asociat." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Nu este conectat" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Notificare" @@ -3372,7 +3394,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3448,7 +3470,7 @@ msgstr "Optiunea schimbata" msgid "Option removed" msgstr "Optiunea eliminata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3555,7 +3577,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3617,7 +3639,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3670,8 +3692,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3681,14 +3703,21 @@ msgstr "Parola" msgid "Password authentication" msgstr "Autentificarea cu parola" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Parola cheii private" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3697,27 +3726,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Calea catre certificatul CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Calea catre cheia privata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3795,6 +3824,14 @@ msgstr "Introdu utilizatorul si parola." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3803,11 +3840,11 @@ msgstr "Port" msgid "Port status:" msgstr "Stare port:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3819,7 +3856,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3842,8 +3879,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "" @@ -3860,7 +3897,7 @@ msgstr "Continua" msgid "Processes" msgstr "Procese" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3870,8 +3907,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocol" @@ -3884,7 +3921,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3892,7 +3929,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3917,7 +3954,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Calitate" @@ -3927,11 +3964,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3939,8 +3976,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3954,27 +3995,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4030,7 +4071,7 @@ msgstr "Traficul in timp real" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4038,7 +4079,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Rebooteaza" @@ -4056,8 +4097,8 @@ msgstr "Rebooteaza sistemul de operare al dispozitivului tau" msgid "Receive" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Antena receptorului" @@ -4124,7 +4165,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4147,10 +4188,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4205,8 +4246,8 @@ msgid "Restore backup" msgstr "Reface backup-ul" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Arata / ascunde parola" @@ -4253,8 +4294,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Parola routerului" @@ -4290,7 +4331,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acces SSH" @@ -4307,7 +4348,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "Cheile SSH" @@ -4315,7 +4356,7 @@ msgstr "Cheile SSH" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4326,7 +4367,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Salveaza" @@ -4355,7 +4396,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Operatiuni programate" @@ -4390,7 +4431,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "" @@ -4425,7 +4466,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configurare sincronizare timp" @@ -4442,7 +4483,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Seteaza serverul DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4450,7 +4491,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4473,11 +4514,11 @@ msgstr "Opreste aceasta interfata" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Semnal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4493,7 +4534,7 @@ msgstr "Marime" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4502,21 +4543,19 @@ msgstr "" msgid "Skip" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4603,7 +4642,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Pornire" @@ -4623,7 +4662,7 @@ msgstr "" msgid "Static Routes" msgstr "Rute statice" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4634,7 +4673,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4654,6 +4693,10 @@ msgstr "Stop" msgid "Strict order" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Trimite" @@ -4679,15 +4722,15 @@ msgstr "" msgid "Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4696,7 +4739,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4712,8 +4755,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4738,7 +4785,7 @@ msgstr "Log de sistem" msgid "System Properties" msgstr "Proprietati sistem" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4927,13 +4974,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4951,7 +4998,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "" @@ -4979,10 +5026,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5061,24 +5107,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fusul orar" @@ -5117,7 +5163,7 @@ msgstr "Trafic" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Rata de transmitere" @@ -5125,14 +5171,14 @@ msgstr "Rata de transmitere" msgid "Transmit" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Puterea de transmitere" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Antena de transmitere" @@ -5148,7 +5194,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Interfata de tunel" @@ -5163,7 +5209,7 @@ msgid "Tx-Power" msgstr "Puterea TX" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tip" @@ -5222,19 +5268,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Necunoscut" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Neadministrate" @@ -5248,7 +5294,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5263,7 +5308,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Tipul de protocol neacceptat." @@ -5313,8 +5358,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Foloseste codurile de tara ISO/IEC 3166 alpha2." @@ -5417,11 +5462,11 @@ msgstr "" msgid "Used" msgstr "Folosit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Slot de cheie folosit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5449,11 +5494,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANuri pe %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5499,18 +5544,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Sistem deschis WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Sistem de cheie impartasita WEP" @@ -5518,8 +5563,8 @@ msgstr "Sistem de cheie impartasita WEP" msgid "WEP passphrase" msgstr "Parola WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Mod WMM" @@ -5527,9 +5572,9 @@ msgstr "Mod WMM" msgid "WPA passphrase" msgstr "Parola WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5553,8 +5598,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Avertizare" @@ -5562,7 +5607,11 @@ msgstr "Avertizare" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5589,7 +5638,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5603,12 +5652,12 @@ msgstr "" msgid "Wireless" msgstr "Wireless" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Adaptorul wireless" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Retea wireless" @@ -5616,20 +5665,20 @@ msgstr "Retea wireless" msgid "Wireless Overview" msgstr "Sumarul wireless" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Securitate wireless" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Wireless-ul este dezactivat" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Wireless-ul este ne-asociat" @@ -5649,7 +5698,7 @@ msgstr "Reteaua wireless este activata" msgid "Write received DNS requests to syslog" msgstr "Scrie cererile DNS primite in syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5665,34 +5714,26 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5703,11 +5744,11 @@ msgstr "oricare" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5760,8 +5801,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "dezactiveaza" @@ -5818,19 +5859,6 @@ msgstr "daca tinta este o retea" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5863,7 +5891,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5891,20 +5919,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5948,8 +5974,8 @@ msgstr "" msgid "routed" msgstr "rutat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5970,11 +5996,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "etichetat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6001,7 +6027,7 @@ msgstr "nespecificat" msgid "unspecified -or- create:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "neetichetat" diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index 0beac06472..4a5cf2fdd4 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2018-11-20 20:01+0300\n" +"PO-Revision-Date: 2019-01-15 06:45+0300\n" "Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n" "Language-Team: http://cyber-place.ru\n" "Language: ru\n" @@ -25,9 +25,9 @@ msgstr "%d бит" #: modules/luci-base/htdocs/luci-static/resources/luci.js:307 msgid "%d invalid field(s)" -msgstr "" +msgstr "%d неверных полей" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s не тегирован в множестве VLAN!" @@ -59,16 +59,16 @@ msgstr "(нет связанных интерфейсов)" msgid "-- Additional Field --" msgstr "-- Дополнительно --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Сделайте выбор --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- пользовательский --" @@ -92,6 +92,10 @@ msgstr "-- проверка по uuid --" msgid "-- please select --" msgstr "-- сделайте выбор --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Загрузка за 1 минуту:" @@ -100,7 +104,7 @@ msgstr "Загрузка за 1 минуту:" msgid "15 Minute Load:" msgstr "Загрузка за 15 минут:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "4-х значный шестнадцатеричный ID" @@ -112,35 +116,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Загрузка за 5 минут:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "6-октетный идентификатор в виде шестнадцатеричной строки без двоеточий" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "802.11r Быстрый Роуминг" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "802.11w Association SA Query максимальное время ожидания" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "802.11w время ожидания повтора Association SA Query" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "802.11w Management Frame Protection" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "802.11w максимальное время ожидания" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "802.11w время ожидания повтора" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Идентификатор Набора Базовых Сервисов\">BSSID</abbr>" @@ -160,7 +164,7 @@ msgstr "" "<abbr title=\"Система доменных имен\">DNS</abbr> сервера будут опрошены в " "порядке, определенном в resolvfile файле" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Расширенный идентификатор обслуживания\">ESSID</abbr>" @@ -194,7 +198,7 @@ msgstr "<abbr title=\"Интернет протокол версии 6\">IPv6</a msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Интернет протокол версии 6\">IPv6</abbr>-суффикс (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Настройка <abbr title=\"Светодиод\">LED</abbr> индикации" @@ -304,7 +308,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM номер устройства" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "ATU-C идентификатор производителя" @@ -312,8 +316,8 @@ msgstr "ATU-C идентификатор производителя" msgid "Access Concentrator" msgstr "Концентратор доступа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Точка доступа" @@ -345,7 +349,7 @@ msgstr "Активные DHCP аренды" msgid "Active DHCPv6 Leases" msgstr "Активные DHCPv6 аренды" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -353,8 +357,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -362,11 +366,11 @@ msgstr "Добавить" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 msgid "Add IPv4 address…" -msgstr "" +msgstr "Добавить IPv4 адрес..." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 msgid "Add IPv6 address…" -msgstr "" +msgstr "Добавить IPv6 адрес..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 @@ -392,8 +396,8 @@ msgstr "Дополнительный hosts файл" msgid "Additional servers file" msgstr "Дополнительные файлы серверов" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Адрес" @@ -402,30 +406,34 @@ msgid "Address to access local relay bridge" msgstr "Адрес для доступа к локальному мосту-ретранслятору" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Управление" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Дополнительные настройки" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Aggregate Transmit Power (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Тревога" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "Псевдоним" @@ -455,23 +463,23 @@ msgstr "" "Разрешить <abbr title=\"Secure Shell\">SSH</abbr> аутентификацию с помощью " "пароля" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Разрешить режиму AP отключение абонентов на основании низкого уровня " "подтверждения (Acknowledge) успешности получения TCP-сегментов" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Разрешить все, кроме перечисленных" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "Разрешить использование стандарта 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Разрешить только перечисленные" @@ -511,13 +519,13 @@ msgstr "Объявлять всегда, как маршрутизатор по #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 msgid "Always off (%s)" -msgstr "" +msgstr "Всегда выключен (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 msgid "Always on (%s)" -msgstr "" +msgstr "Всегда включен (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -526,7 +534,7 @@ msgstr "" "Использование этой опции не соответствует стандарту IEEE 802.11n-2009!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "Annex" @@ -600,7 +608,7 @@ msgstr "Объявить DNS домены" msgid "Announced DNS servers" msgstr "Объявить DNS сервера" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "Анонимная идентификация" @@ -612,17 +620,17 @@ msgstr "Неизвестный раздел" msgid "Anonymous Swap" msgstr "Неизвестный swap" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Антенна 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Антенна 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Настройка антенн" @@ -649,7 +657,7 @@ msgid "" msgstr "" "Задайте часть данной длины, каждому публичному IPv6-префиксу этого интерфейса" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Назначить интерфейсы..." @@ -666,7 +674,7 @@ msgstr "" msgid "Associated Stations" msgstr "Подключенные клиенты" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "Ассоциации" @@ -675,7 +683,7 @@ msgstr "Ассоциации" msgid "Auth Group" msgstr "Группа аутентификации" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Аутентификация" @@ -693,12 +701,11 @@ msgstr "Выполните аутентификацию" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Автообновление" @@ -776,7 +783,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -806,7 +813,7 @@ msgstr "Назад к результатам поиска" msgid "Backup" msgstr "Резервное копирование" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Резервное копирование / Перепрошивка" @@ -818,12 +825,12 @@ msgstr "Список файлов для резервного копирован msgid "Bad address specified!" msgstr "Указан неправильный адрес!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "Диапазон" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "Интервал рассылки пакетов Beacon" @@ -855,7 +862,7 @@ msgstr "Открытый туннель для этого интерфейса ( #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Скорость" @@ -863,7 +870,7 @@ msgstr "Скорость" msgid "Bogus NX Domain Override" msgstr "Переопределение поддельного NX-домена" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Мост" @@ -948,7 +955,7 @@ msgstr "Изменения приняты." msgid "Changes have been reverted." msgstr "Изменения были возвращены назад." -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Изменить пароль администратора для доступа к устройству" @@ -956,12 +963,12 @@ msgstr "Изменить пароль администратора для дос msgid "Changing password…" msgstr "Изменение пароля..." -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Канал" @@ -1008,7 +1015,7 @@ msgstr "" "заполните поле <em>'создать'</em>, чтобы определить новую зону и прикрепить " "к ней этот интерфейс." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1017,7 +1024,7 @@ msgstr "" "беспроводной сети или заполните поле <em>создать</em>, чтобы создать новый " "интерфейс." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Алгоритм шифрования" @@ -1041,8 +1048,8 @@ msgstr "" "Нажмите \"Сохранить MTD раздел\" для скачивания образа указанного MTD " "раздела (ВНИМАНИЕ: ДАННЫЙ ФУНКЦИОНАЛ ТОЛЬКО ДЛЯ ОПЫТНЫХ ПОЛЬЗОВАТЕЛЕЙ)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Клиент" @@ -1086,7 +1093,7 @@ msgstr "Закрыть список..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Сбор данных..." @@ -1102,7 +1109,7 @@ msgstr "Комментарий" msgid "Common Configuration" msgstr "Общие настройки" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1138,7 +1145,7 @@ msgstr "Конфигурация применена" msgid "Configuration has been rolled back!" msgstr "Конфигурация возвращена назад!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Подтверждение пароля" @@ -1147,12 +1154,12 @@ msgid "Connect" msgstr "Соединить" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Подключен" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Ограничение соединений" @@ -1178,9 +1185,9 @@ msgstr "" msgid "Country" msgstr "Страна" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Код страны" @@ -1205,11 +1212,11 @@ msgstr "Создать интерфейс" msgid "Create a bridge over multiple interfaces" msgstr "Создать мост над несколькими интерфейсами" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Критическая ситуация" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Запись событий cron" @@ -1234,7 +1241,7 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 msgid "Custom flash intervall (%s)" -msgstr "" +msgstr "Произвольный интервал мигания (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "" @@ -1244,17 +1251,17 @@ msgstr "" "Настройка поведения светодиодной индикации <abbr title=\"Светодиод\">LED</" "abbr> устройства, если это возможно." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" -msgstr "" +msgstr "DAE-Клиент" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" -msgstr "" +msgstr "DAE-Порт" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" -msgstr "" +msgstr "DAE-Секрет" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 @@ -1266,7 +1273,7 @@ msgstr "DHCP-сервер" msgid "DHCP and DNS" msgstr "DHCP и DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP-клиент" @@ -1286,16 +1293,16 @@ msgstr "DHCPv6 режим" msgid "DHCPv6-Service" msgstr "DHCPv6 сервис" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1328,7 +1335,7 @@ msgstr "DS-Lite AFTR-адрес" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "Состояние DSL" @@ -1336,7 +1343,7 @@ msgstr "Состояние DSL" msgid "DSL line mode" msgstr "DSL линейный режим" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "Интервал DTIM" @@ -1344,18 +1351,18 @@ msgstr "Интервал DTIM" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "Скорость передачи данных" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Отладка" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "По умолчанию %d" @@ -1395,7 +1402,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Удалить" @@ -1409,7 +1416,7 @@ msgstr "Удалить ключ" msgid "Delete this network" msgstr "Удалить эту сеть" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "Интервал сообщений, регламентирующий доставку трафика" @@ -1425,8 +1432,8 @@ msgstr "Направление" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1481,7 +1488,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Отключить шифрование" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "Отключить отслеживание неактивности клиентов" @@ -1499,11 +1506,11 @@ msgstr "Отключить данную сеть" msgid "Disabled" msgstr "Отключено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Отключено (по умолчанию)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "Не ассоциировать при низком подтверждении" @@ -1526,16 +1533,16 @@ msgstr "Ошибка попытки отключения" msgid "Dismiss" msgstr "Отклонить" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Оптимизация расстояния" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Расстояние до самого удалённого сетевого узла в метрах." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Разновидность антенн" @@ -1642,7 +1649,7 @@ msgstr "" msgid "EA-bits length" msgstr "EA-bits длина" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "Метод EAP" @@ -1669,7 +1676,7 @@ msgstr "Изменить этот интерфейс" msgid "Edit this network" msgstr "Редактировать эту сеть" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Чрезвычайная ситуация" @@ -1706,11 +1713,11 @@ msgstr "Включить IPv6 negotiation" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Включить IPv6-согласование на PPP-соединении" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Пропускать Jumbo-кадры" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Включить NTP-клиент" @@ -1722,27 +1729,27 @@ msgstr "Включить Single DES" msgid "Enable TFTP server" msgstr "Включить TFTP-сервер" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Включить поддержку VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Включить WPS при нажатии на кнопку, в режиме WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Включить защиту от атаки KRACK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Включить изучение и устаревание (learning/aging)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "Включить отражение входящих пакетов" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "Включить отражение исходящих пакетов" @@ -1776,7 +1783,7 @@ msgstr "Включено" msgid "Enables IGMP snooping on this bridge" msgstr "Включает IGMP snooping на данном мосту" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1795,9 +1802,9 @@ msgstr "Режим инкапсуляции" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Шифрование" @@ -1817,28 +1824,28 @@ msgstr "Введите пользовательское значение" msgid "Enter custom values" msgstr "Введите пользовательские значения" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Стирание..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Ошибка" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "Ошибочные секунды (ES)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet-адаптер" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet-коммутатор" @@ -1854,7 +1861,7 @@ msgstr "Расширять имена узлов" msgid "Expecting %s" msgstr "Ожидаемое значение %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Истекает" @@ -1869,23 +1876,23 @@ msgstr "" msgid "External" msgstr "Внешний" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "Внешний R0 Key Holder List" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "Внешний R0 Key Holder List" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Внешний сервер системного журнала" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Порт внешнего сервера системного журнала" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Внешний протокол лог-сервера" @@ -1893,15 +1900,15 @@ msgstr "Внешний протокол лог-сервера" msgid "Extra SSH command options" msgstr "Дополнительные опции команды SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "FT над DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "FT над the Air" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "FT протокол" @@ -1997,7 +2004,7 @@ msgstr "Установить новый образ прошивки" msgid "Flash operations" msgstr "Операции с прошивкой" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Прошивка..." @@ -2005,17 +2012,17 @@ msgstr "Прошивка..." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 msgid "Flashmemory write access (%s)" -msgstr "" +msgstr "Запись во флешпамять (%s)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 msgid "Force" msgstr "Назначить" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "Принудительно использовать режим 40 МГц" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Назначить CCMP (AES)" @@ -2023,11 +2030,11 @@ msgstr "Назначить CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Назначить DHCP в этой сети, даже если найден другой сервер." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Назначить TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Назначить TKIP и CCMP (AES)" @@ -2051,7 +2058,7 @@ msgstr "Несоответствие маркеров формы" msgid "Forward DHCP traffic" msgstr "Перенаправлять трафик DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "Секунды прямой коррекции ошибок (FECS)" @@ -2059,7 +2066,7 @@ msgstr "Секунды прямой коррекции ошибок (FECS)" msgid "Forward broadcast traffic" msgstr "Перенаправлять широковещательный траффик" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "Перенаправлять запросы трафика Mesh" @@ -2067,12 +2074,12 @@ msgstr "Перенаправлять запросы трафика Mesh" msgid "Forwarding mode" msgstr "Режим перенаправления" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Порог фрагментации" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Пакетная передача кадров" @@ -2091,7 +2098,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "ГГц" @@ -2100,8 +2107,8 @@ msgstr "ГГц" msgid "GPRS only" msgstr "Только GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Шлюз" @@ -2124,7 +2131,7 @@ msgstr "Основные настройки" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Основные настройки" @@ -2132,7 +2139,7 @@ msgstr "Основные настройки" msgid "Generate Config" msgstr "Создать config" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "Создать PMK локально" @@ -2159,7 +2166,7 @@ msgstr "Основные настройки сети" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Перейти к настройке пароля..." @@ -2184,7 +2191,7 @@ msgstr "Пароль HE.net" msgid "HE.net username" msgstr "HE.net логин" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "HT режим (802.11n)" @@ -2192,13 +2199,13 @@ msgstr "HT режим (802.11n)" msgid "Hang Up" msgstr "Перезапустить" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "Ошибки контроля ошибок заголовка (HEC)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 msgid "Heartbeat intervall (%s)" -msgstr "" +msgstr "Интервал heartbeat (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 msgid "" @@ -2208,9 +2215,9 @@ msgstr "" "Здесь вы можете настроить основные параметры вашего устройства, такие как " "имя хоста или часовой пояс." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Скрыть <abbr title=\"Расширенный идентификатор сети\">ESSID</abbr>" @@ -2244,8 +2251,7 @@ msgstr "Содержимое Host-Uniq тега" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Имя хоста" @@ -2306,7 +2312,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Межсетевой экран IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "Основной IPv4" @@ -2354,7 +2360,7 @@ msgstr "IPv4-адрес" #: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-in-IPv4 (RFC2003)" +msgstr "IPv4-в-IPv4 (RFC2003)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 @@ -2396,9 +2402,9 @@ msgstr "Настройки IPv6" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 msgid "IPv6 ULA-Prefix" -msgstr "IPv6 ULA-Prefix" +msgstr "IPv6 ULA-префикс" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "Основной IPv6" @@ -2465,7 +2471,7 @@ msgstr "IPv6 через IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 через IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Идентификация EAP" @@ -2584,10 +2590,14 @@ msgstr "Промежуток времени бездействия" msgid "Inbound:" msgstr "Входящий:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Информация" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "Ошибка инициализации" @@ -2608,7 +2618,7 @@ msgstr "Для поддержки IPv6, установите пакет iputils- msgid "Install package %q" msgstr "Установить пакет %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Установить расширения протокола..." @@ -2626,7 +2636,7 @@ msgstr "Интерфейс" msgid "Interface %q device auto-migrated from %q to %q." msgstr "Интерфейс %q устройство авт.перемещается из %q в %q." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Настройка сети" @@ -2638,12 +2648,12 @@ msgstr "Список интерфейсов" msgid "Interface is reconnecting..." msgstr "Интерфейс переподключается..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Имя интерфейса" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Интерфейс не существует или пока не подключен." @@ -2662,17 +2672,17 @@ msgid "Internal Server Error" msgstr "Внутренняя ошибка сервера" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Неверно" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "Указан неверный VLAN ID! Доступны только идентификаторы в диапазоне от %d до " "%d." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Указан неверный VLAN ID! Доступны только уникальные ID" @@ -2680,7 +2690,7 @@ msgstr "Указан неверный VLAN ID! Доступны только у msgid "Invalid username and/or password! Please try again." msgstr "Неверный логин и/или пароль! Попробуйте снова." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Изолировать клиентов" @@ -2693,10 +2703,9 @@ msgstr "" "не помещается в чип флэш-памяти, проверьте ваш файл прошивки!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Требуется JavaScript!" @@ -2725,18 +2734,22 @@ msgstr "Журнал ядра" msgid "Kernel Version" msgstr "Версия ядра" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Пароль (ключ)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Ключ №%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Принудительно завершить" @@ -2776,7 +2789,7 @@ msgstr "LLC" msgid "Label" msgstr "Метка" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Язык" @@ -2784,7 +2797,7 @@ msgstr "Язык" msgid "Language and Style" msgstr "Язык и тема" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "Задержка" @@ -2835,19 +2848,19 @@ msgstr "Ограничение сервиса DNS, для подсетей ин msgid "Limit listening to these interfaces, and loopback." msgstr "Ограничьте прослушивание этих интерфейсов и замыкание на себя." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "Затухание линии (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "Режим линии" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "Состояние Линии" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "Время бесперебойной работы линии" @@ -2863,7 +2876,7 @@ msgstr "" "Список <abbr title=\"Domain Name System\">DNS</abbr>-серверов для " "перенаправления запросов" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2877,7 +2890,7 @@ msgstr "" "PMK-R1 из R0KH , который использовался STA во время начальной ассоциации " "доменов Mobility." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2922,7 +2935,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Порт для входящих DNS-запросов" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Загрузка" @@ -2971,7 +2983,7 @@ msgid "Local Startup" msgstr "Запуск пакетов и служб пользователя, при включении устройства" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Дата и время" @@ -3014,7 +3026,7 @@ msgstr "Локализовывать запросы" msgid "Locked to channel %s used by: %s" msgstr "Блокировать канал %s используемый: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Запись событий" @@ -3034,7 +3046,7 @@ msgstr "Войти" msgid "Logout" msgstr "Выйти" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "Потеря сигнала в секундах (LOSS)" @@ -3050,24 +3062,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-адрес" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Фильтр MAC-адресов" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-фильтр" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Список MAC" @@ -3115,11 +3127,11 @@ msgstr "" msgid "Manual" msgstr "Вручную" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. Attainable Data Rate (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "Максимально разрешенное значение интервала прослушивания клиента" @@ -3155,12 +3167,16 @@ msgstr "Максимальное количество арендованных #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Мбит/с" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Оперативная память (RAM)" @@ -3169,7 +3185,7 @@ msgstr "Оперативная память (RAM)" msgid "Memory usage (%)" msgstr "Использование памяти (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "Mesh ID" @@ -3181,11 +3197,11 @@ msgstr "Mesh ID" msgid "Metric" msgstr "Метрика" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "Зеркальный порт наблюдения" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "Зеркальный исходящий порт" @@ -3193,16 +3209,16 @@ msgstr "Зеркальный исходящий порт" msgid "Missing protocol extension for proto %q" msgstr "Отсутствует расширение протокола %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "Мобильный домен" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Режим" @@ -3230,12 +3246,16 @@ msgstr "Ошибка запроса информации о модеме" msgid "Modem init timeout" msgstr "Время ожидания инициализации модема" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Монитор" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Настройка config файла fstab (/etc/config/fstab)" @@ -3245,7 +3265,7 @@ msgstr "Настройка config файла fstab (/etc/config/fstab)" msgid "Mount Point" msgstr "Точка монтирования" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3295,7 +3315,7 @@ msgstr "Переместить вниз" msgid "Move up" msgstr "Переместить вверх" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3319,7 +3339,7 @@ msgstr "NDP-прокси" msgid "NT Domain" msgstr "NT домен" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Список NTP-серверов" @@ -3337,18 +3357,17 @@ msgstr "Имя нового интерфейса" msgid "Name of the new network" msgstr "Имя новой сети" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Навигация" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Маска сети" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3366,13 +3385,13 @@ msgstr "Образ системы для сетевой загрузки" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 msgid "Network device activity (%s)" -msgstr "" +msgstr "Активность сетевого устройства (%s)" #: modules/luci-base/luasrc/model/network.lua:33 msgid "Network device is not present" msgstr "Нет сетевого устройства" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Сеть без интерфейсов." @@ -3397,7 +3416,7 @@ msgid "No files found" msgstr "Файлы не найдены" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Нет доступной информации" @@ -3419,10 +3438,9 @@ msgid "No network name specified" msgstr "Не задано имя сети" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Пароль не установлен!" @@ -3450,7 +3468,7 @@ msgstr "Зона не присвоена" msgid "Noise" msgstr "Шум" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "Соотношение сигнал/шум (SNR)" @@ -3458,7 +3476,7 @@ msgstr "Соотношение сигнал/шум (SNR)" msgid "Noise:" msgstr "Шум:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Non Pre-emtive CRC errors (CRC_P)" @@ -3471,7 +3489,7 @@ msgstr "Не использовать wildcard" msgid "None" msgstr "Ничего" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Нормально" @@ -3484,16 +3502,20 @@ msgstr "Не найдено" msgid "Not associated" msgstr "Не связанный" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Не подключено" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "Внимание: длина имени интерфейса" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Заметка" @@ -3507,7 +3529,7 @@ msgstr "" "Количество кэшированных DNS записей (максимум — 10000, 0 — отключить " "кэширование)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "Количество параллельных потоков используемых для компрессии" @@ -3589,7 +3611,7 @@ msgstr "Опция изменена" msgid "Option removed" msgstr "Опция удалена" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Необязательно" @@ -3710,7 +3732,7 @@ msgstr "Отвергать TOS" msgid "Override TTL" msgstr "Отвергать TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "Назначить имя интерфейса по умолчанию" @@ -3774,7 +3796,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN код отвергнут" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "PMK R1 Push" @@ -3827,8 +3849,8 @@ msgid "Part of zone %q" msgstr "Часть зоны %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3838,14 +3860,21 @@ msgstr "Пароль" msgid "Password authentication" msgstr "С помощью пароля" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Пароль к Приватному ключу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "Пароль к внутреннему Приватному ключу" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Пароль2" @@ -3854,27 +3883,27 @@ msgstr "Пароль2" msgid "Paste or drag SSH key file…" msgstr "Перетащите файл SSH ключа или вставьте содержимое..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Путь к CA-Сертификату" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Путь к Client-Сертификату" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Путь к Приватному ключу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "Путь к внутренним CA-Сертификатам" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "Путь к внутренним Client-Сертификатам" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "Путь к внутреннему Приватному ключу" @@ -3952,6 +3981,14 @@ msgstr "Введите логин и пароль." msgid "Policy" msgstr "Политика" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Порт" @@ -3960,11 +3997,11 @@ msgstr "Порт" msgid "Port status:" msgstr "Состояние порта:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "Режим управления питанием" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Pre-emtive CRC errors (CRCP_P)" @@ -3976,7 +4013,7 @@ msgstr "Предпочитать LTE" msgid "Prefer UMTS" msgstr "Предпочитать UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "Делегированный префикс" @@ -4001,8 +4038,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Запретить прослушивание этих интерфейсов." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Не позволяет клиентам обмениваться друг с другом информацией" @@ -4019,7 +4056,7 @@ msgstr "Продолжить" msgid "Processes" msgstr "Процессы" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Профиль" @@ -4029,8 +4066,8 @@ msgstr "Прот." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Протокол" @@ -4043,7 +4080,7 @@ msgstr "Протокол нового интерфейса" msgid "Protocol support is not installed" msgstr "Поддержка протокола не установлена" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Включить NTP-сервер" @@ -4051,7 +4088,7 @@ msgstr "Включить NTP-сервер" msgid "Provide new network" msgstr "Предоставлять новую сеть" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Псевдо Ad-Hoc (ahdemo)" @@ -4082,7 +4119,7 @@ msgid "QMI Cellular" msgstr "QMI сотовый" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Качество" @@ -4094,11 +4131,11 @@ msgstr "" "Опрашивать все имеющиеся внешние <abbr title=\"Domain Name System\">DNS</" "abbr>-серверы" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "R0 Key время жизни" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "R1 Key Holder" @@ -4106,8 +4143,12 @@ msgstr "R1 Key Holder" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 NAT-T режим" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Порог RTS/CTS" @@ -4121,27 +4162,27 @@ msgstr "Получение (RX)" msgid "RX Rate" msgstr "Скорость получения" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Порт Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Секрет Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Сервер Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Порт Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Секрет Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Сервер Radius-Authentication" @@ -4205,7 +4246,7 @@ msgstr "Трафик в реальном времени" msgid "Realtime Wireless" msgstr "Беспроводная сеть в реальном времени" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "Срок Реассоциации" @@ -4213,7 +4254,7 @@ msgstr "Срок Реассоциации" msgid "Rebind protection" msgstr "Защита от DNS Rebinding" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Перезагрузка" @@ -4232,8 +4273,8 @@ msgstr "" msgid "Receive" msgstr "Приём" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Приёмная антенна" @@ -4300,7 +4341,7 @@ msgstr "Запрос IPv6 адреса" msgid "Request IPv6-prefix of length" msgstr "Запрос IPv6 префикс длины" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "Требовать" @@ -4327,13 +4368,13 @@ msgstr "" "одноранговому узлу внутри туннеля. Обычно туннельные IP-адреса однорангового " "узла и сети одноранговых маршрутов через туннель." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "Требуется 'полная' версия wpad/hostapd и поддержка со стороны WiFi драйвера " -"в <br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"в <br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4389,8 +4430,8 @@ msgid "Restore backup" msgstr "Восстановить резервную копию" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Показать/скрыть пароль" @@ -4437,8 +4478,8 @@ msgstr "Тип маршрута" msgid "Router Advertisement-Service" msgstr "Доступные режимы работы" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Пароль маршрутизатора" @@ -4476,7 +4517,7 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Доступ по SSH" @@ -4493,7 +4534,7 @@ msgstr "Порт сервера SSH" msgid "SSH username" msgstr "SSH логин" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH-ключи" @@ -4501,7 +4542,7 @@ msgstr "SSH-ключи" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4512,7 +4553,7 @@ msgstr "Разделы подкачки (swap)" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Сохранить" @@ -4541,7 +4582,7 @@ msgstr "Поиск" msgid "Scan request failed" msgstr "Ошибка запроса на сканирование" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Запланированные задания" @@ -4581,7 +4622,7 @@ msgstr "" "Отправлять эхо-пакеты LCP с указанным интервалом (секунды), эффективно " "только в сочетании с порогом ошибок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Разделять клиентов" @@ -4617,7 +4658,7 @@ msgid "" msgstr "" "Автоматически активировать соединение, при подключении в разъем кабеля." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "Настройка синхронизации времени" @@ -4633,7 +4674,7 @@ msgstr "Ошибка установки режима работы" msgid "Setup DHCP Server" msgstr "Настроить сервер DHCP" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "Секунды с большим числом ошибок (SES)." @@ -4641,7 +4682,7 @@ msgstr "Секунды с большим числом ошибок (SES)." msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Короткая преамбула" @@ -4664,11 +4705,11 @@ msgstr "Выключить этот интерфейс" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Сигнал" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "Затухание сигнала (SATN)" @@ -4684,7 +4725,7 @@ msgstr "Размер" msgid "Size of DNS query cache" msgstr "Размер кэша DNS запроса" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "Размер ZRam в мегабайтах" @@ -4693,21 +4734,19 @@ msgstr "Размер ZRam в мегабайтах" msgid "Skip" msgstr "Пропустить" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Перейти к содержимому" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Перейти к навигации" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Время слота" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "Программное обеспечение VLAN" @@ -4804,7 +4843,7 @@ msgstr "Применение конфигурации..." msgid "Starting wireless scan..." msgstr "Начато сканирование беспроводных сетей..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Загрузка" @@ -4824,7 +4863,7 @@ msgstr "Постоянные аренды" msgid "Static Routes" msgstr "Статические маршруты" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Статический адрес" @@ -4838,7 +4877,7 @@ msgstr "" "имён DHCP-клиентам. Постоянная аренда также необходима для статических " "интерфейсов, в которых обслуживаются только клиенты с присвоенными адресами." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "Максимально допустимое время бездействия клиента" @@ -4858,6 +4897,10 @@ msgstr "Остановить" msgid "Strict order" msgstr "Строгий порядок" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Применить" @@ -4883,15 +4926,15 @@ msgstr "Настройка config файла fstab (/etc/config/fstab)" msgid "Switch" msgstr "Коммутатор" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Коммутатор %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Коммутатор %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4902,7 +4945,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Изменить маску порта" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "Изменить VLAN" @@ -4912,14 +4955,18 @@ msgstr "Изменить протокол" #: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 msgid "Switch to CIDR list notation" -msgstr "" +msgstr "Переключить в формат CIDR" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 msgid "Switchport activity (%s)" +msgstr "Активность порта коммутатора (%s)" + +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Синхронизировать с браузером" @@ -4944,7 +4991,7 @@ msgstr "Системный журнал" msgid "System Properties" msgstr "Свойства системы" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Размер системного журнала" @@ -5169,13 +5216,13 @@ msgstr "Для выбранного протокола необходимо за msgid "The submitted security token is invalid or already expired!" msgstr "Представленный маркер безопасности недействителен или уже истек!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "Идёт удаление настроек раздела с последующей перезагрузкой системы." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -5199,7 +5246,7 @@ msgstr "" "Загруженный файл прошивки не поддерживается. Проверьте, что вы загрузили " "подходящую прошивку для чипа вашего устройства." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Тема" @@ -5229,10 +5276,9 @@ msgstr "" "канала'" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5330,24 +5376,24 @@ msgstr "" "Страница содержит список всех активных на данный момент сетевых соединений." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Здесь не содержатся необходимые значения" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Синхронизация времени" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Синхронизация времени ещё не настроена." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "Интервал регенерации ключей GTK" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Часовой пояс" @@ -5390,7 +5436,7 @@ msgstr "Трафик" msgid "Transfer" msgstr "Передача" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Скорость передачи" @@ -5398,14 +5444,14 @@ msgstr "Скорость передачи" msgid "Transmit" msgstr "Передача" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Мощность передатчика" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Передающая антенна" @@ -5421,7 +5467,7 @@ msgstr "Режим работы" msgid "Tunnel ID" msgstr "Идентификатор туннеля" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Интерфейс туннеля" @@ -5436,7 +5482,7 @@ msgid "Tx-Power" msgstr "Мощность передатчика" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Тип" @@ -5495,19 +5541,19 @@ msgstr "Не удалось разрешить AFTR имя хоста" msgid "Unable to resolve peer host name" msgstr "Не удалось разрешить имя хоста пира" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "Секунды неготовности (UAS)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Неизвестно" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "Неизвестная ошибка (%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Неуправляемый" @@ -5521,7 +5567,6 @@ msgid "Unnamed key" msgstr "Ключ без имени" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5536,7 +5581,7 @@ msgstr "Неподдерживаемый тип MAP" msgid "Unsupported modem" msgstr "Неподдерживаемый модем" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Неподдерживаемый тип протокола." @@ -5590,8 +5635,8 @@ msgstr "Использовать шлюз DHCP" msgid "Use DNS servers advertised by peer" msgstr "Использовать объявляемые узлом DNS сервера" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Использовать коды стран ISO/IEC 3166 alpha2." @@ -5700,11 +5745,11 @@ msgstr "" msgid "Used" msgstr "Использовано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Используемый слот ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5734,11 +5779,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLANы на %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLANы на %q (%s)" @@ -5785,18 +5830,18 @@ msgstr "Проверить" msgid "Virtual dynamic interface" msgstr "Виртуальный динамический винтерфейс" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Открытая система WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Общий ключ WEP" @@ -5804,8 +5849,8 @@ msgstr "Общий ключ WEP" msgid "WEP passphrase" msgstr "Пароль WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Режим WMM" @@ -5813,9 +5858,9 @@ msgstr "Режим WMM" msgid "WPA passphrase" msgstr "Пароль WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5839,8 +5884,8 @@ msgstr "Ожидание применения конфигурации... %d с msgid "Waiting for device..." msgstr "Ожидание подключения устройства..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Внимание" @@ -5850,34 +5895,41 @@ msgstr "" "Предупреждение: Есть не сохраненные изменения, которые будут потеряны при " "перезагрузке!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " "key options." msgstr "" +"При использовании PSK, PMK может генерироваться автоматически. Если " +"включено, опции ключей R0/R1, расположенные ниже, не применяются. Для " +"использования опций ключей R0/R1 отключите данную опцию." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 msgid "Wi-Fi activity (%s)" -msgstr "" +msgstr "Активность Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 msgid "Wi-Fi client association (%s)" -msgstr "" +msgstr "Ассоциация Wi-Fi клиента (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 msgid "Wi-Fi data reception (%s)" -msgstr "" +msgstr "Приём данных Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 msgid "Wi-Fi data transmission (%s)" -msgstr "" +msgstr "Передача данных Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 msgid "Wi-Fi on (%s)" -msgstr "" +msgstr "Wi-Fi включен (%s)" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Ширина" @@ -5891,12 +5943,12 @@ msgstr "WireGuard VPN" msgid "Wireless" msgstr "Wi-Fi" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Беспроводной адаптер" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Беспроводная сеть" @@ -5904,20 +5956,20 @@ msgstr "Беспроводная сеть" msgid "Wireless Overview" msgstr "Список беспроводных сетей" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Безопасность беспроводной сети" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Беспроводная сеть отключена" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Беспроводная сеть не связана" @@ -5937,7 +5989,7 @@ msgstr "Беспроводная сеть включена" msgid "Write received DNS requests to syslog" msgstr "Записывать полученные DNS-запросы в системный журнал" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Записывать системные события в файл" @@ -5957,39 +6009,28 @@ msgstr "" "'network'), ваше устройство может оказаться недоступным!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Вам необходимо включить JavaScript в вашем браузере для корректной работы " "LuCI." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Ваш Internet Explorer слишком стар, чтобы отобразить эту страницу правильно. " -"Обновите его до версии 7 или используйте другой браузер, например Firefox, " -"Opera или Safari." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "Алгоритм компрессии ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "Потоки компрессии ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "Настройки ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "Размер ZRam" @@ -6000,11 +6041,11 @@ msgstr "любой" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6057,8 +6098,8 @@ msgstr "дБ" msgid "dBm" msgstr "дБм" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "отключить" @@ -6117,19 +6158,6 @@ msgstr "если сеть" msgid "input" msgstr "ввод" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "кБ" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6162,7 +6190,7 @@ msgstr "ключ длиной 5 или 13 символов" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Локальный <abbr title=\"Служба доменных имён\">DNS</abbr>-файл" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "минут(ы)" @@ -6190,20 +6218,18 @@ msgstr "не пустое значение" msgid "not present" msgstr "не существует" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "выключено" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "включено" @@ -6249,8 +6275,8 @@ msgstr "режим передачи" msgid "routed" msgstr "маршрутизируемый" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "секунды" @@ -6271,11 +6297,11 @@ msgstr "stateless" msgid "stateless + stateful" msgstr "stateless + stateful" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "с тегом" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "единицы измерения времени (TUs / 1.024 ms) [1000-65535]" @@ -6302,7 +6328,7 @@ msgstr "не определено" msgid "unspecified -or- create:" msgstr "не определено -или- создать:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "без тега" @@ -6473,152 +6499,13 @@ msgid "« Back" msgstr "« Назад" #~ msgid "" -#~ "When using a PSK, the PMK can be generated locally without inter AP " -#~ "communications" -#~ msgstr "" -#~ "При использовании PSK, PMK может быть создан локально без коммуникации AP " -#~ "между собой" - -#~ msgid "Apply unchecked" -#~ msgstr "Применить без проверки" - -#~ msgid "" -#~ "The device could not be reached within %d seconds after applying the " -#~ "pending changes, which caused the configuration to be rolled back for " -#~ "safety reasons. If you believe that the configuration changes are correct " -#~ "nonetheless, perform an unchecked configuration apply. Alternatively, you " -#~ "can dismiss this warning and edit changes before attempting to apply " -#~ "again, or revert all pending changes to keep the currently working " -#~ "configuration state." -#~ msgstr "" -#~ "Устройство недоступно в течение %d секунд после применения изменений. Это " -#~ "привело к откату конфигурации из соображений безопасности. Если вы " -#~ "считаете, что конфигурация верна, выполните настройку без проверки. Кроме " -#~ "того, вы можете отклонить это предупреждение и отредактировать изменения " -#~ "перед попыткой применить конфигурацию снова или откатить все изменения, " -#~ "чтобы сохранить рабочее состояние конфигурации." - -#~ msgid "Waiting for configuration to get applied… %ds" -#~ msgstr "Ожидание применения конфигурации... %d сек" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." +#~ "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 "" -#~ "Здесь вы можете добавить открытые SSH ключи (один ключ на строку) для SSH " -#~ "аутентификации." - -#~ msgid "Password successfully changed!" -#~ msgstr "Пароль успешно изменён!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Неизвестная ошибка, пароль не был изменен!" - -#~ msgid "Design" -#~ msgstr "Тема" - -#~ msgid "Available packages" -#~ msgstr "Доступные пакеты" - -#~ msgid "Bind only to specific interfaces rather than wildcard address." -#~ msgstr "" -#~ "Соединение только с определенными интерфейсами, не использующими " -#~ "подстановочные адреса (wildcard)." - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "" -#~ "Build/distribution оригинальные feed-ы. Изменения в этом файле НЕ " -#~ "сохранятся при перепрошивке sysupgrade-совместимым образом." - -#~ msgid "" -#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " -#~ "in a sysupgrade." -#~ msgstr "" -#~ "Custom-ные feed-ы — это пользовательские feed-ы. Этот файл может быть " -#~ "сохранен при перепрошивке sysupgrade-совместимым образом." - -#~ msgid "Custom feeds" -#~ msgstr "Список custom-ных feed-ов" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Показываются только пакеты, содержащие" - -#~ msgid "Distribution feeds" -#~ msgstr "Список feed-ов дистрибутива" - -#~ msgid "Download and install package" -#~ msgstr "Загрузить и установить пакет" - -#~ msgid "Filter" -#~ msgstr "Фильтр" - -#~ msgid "Find package" -#~ msgstr "Найти пакет" - -#~ msgid "Free space" -#~ msgstr "Свободное место" - -#~ msgid "General options for opkg" -#~ msgstr "Основные настройки opkg" - -#~ msgid "Install" -#~ msgstr "Установить" - -#~ msgid "Installed packages" -#~ msgstr "Установленные пакеты" - -#~ msgid "No package lists available" -#~ msgstr "Список пакетов не доступен" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Настройка OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Список пакетов обновлялся более 24 часов назад" - -#~ msgid "Package name" -#~ msgstr "Имя пакета" - -#~ msgid "Please update package lists first" -#~ msgstr "Пожалуйста обновите список пакетов" - -#~ msgid "Size (.ipk)" -#~ msgstr "Размер (.ipk)" - -#~ msgid "Software" -#~ msgstr "Программное обеспечение" - -#~ msgid "Update lists" -#~ msgstr "Обновить списки" - -#~ msgid "Version" -#~ msgstr "Версия" - -#~ msgid "none" -#~ msgstr "ничего" - -#~ msgid "Disable DNS setup" -#~ msgstr "Отключить DNS настройки" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 и IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Только IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Только IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Срок действия аренды" - -#~ msgid "Multicast address" -#~ msgstr "Адрес мультивещания" +#~ "Ваш Internet Explorer слишком стар, чтобы отобразить эту страницу " +#~ "правильно. Обновите его до версии 7 или используйте другой браузер, " +#~ "например Firefox, Opera или Safari." -#~ msgid "Protocol family" -#~ msgstr "Семейство протоколов" +#~ msgid "kB" +#~ msgstr "кБ" diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index cad6615afc..76557de9df 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -21,7 +21,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -53,16 +53,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -86,6 +86,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -94,7 +98,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -106,35 +110,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -152,7 +156,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -185,7 +189,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -285,7 +289,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -293,8 +297,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "" @@ -324,7 +328,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "" @@ -332,8 +336,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -370,8 +374,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "" @@ -380,30 +384,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -430,21 +438,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "" @@ -485,14 +493,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -564,7 +572,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -576,17 +584,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -612,7 +620,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "" @@ -627,7 +635,7 @@ msgstr "" msgid "Associated Stations" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -636,7 +644,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "" @@ -654,12 +662,11 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -731,7 +738,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "" @@ -761,7 +768,7 @@ msgstr "" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "" @@ -773,12 +780,12 @@ msgstr "" msgid "Bad address specified!" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -805,7 +812,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "" @@ -813,7 +820,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "" @@ -897,7 +904,7 @@ msgstr "" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "" @@ -905,12 +912,12 @@ msgstr "" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "" @@ -949,13 +956,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -975,8 +982,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "" @@ -1018,7 +1025,7 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "" @@ -1034,7 +1041,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1066,7 +1073,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "" @@ -1075,12 +1082,12 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "" @@ -1103,9 +1110,9 @@ msgstr "" msgid "Country" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "" @@ -1130,11 +1137,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1165,15 +1172,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1187,7 +1194,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "" @@ -1207,16 +1214,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "" @@ -1249,7 +1256,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1257,7 +1264,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1265,18 +1272,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1313,7 +1320,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "" @@ -1327,7 +1334,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1343,8 +1350,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1397,7 +1404,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1415,11 +1422,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1442,16 +1449,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "" @@ -1545,7 +1552,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "" @@ -1570,7 +1577,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1605,11 +1612,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1621,27 +1628,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1675,7 +1682,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1692,9 +1699,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "" @@ -1714,28 +1721,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "" @@ -1751,7 +1758,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "" @@ -1764,23 +1771,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1788,15 +1795,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1888,7 +1895,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1902,11 +1909,11 @@ msgstr "" msgid "Force" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1914,11 +1921,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1942,7 +1949,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1950,7 +1957,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1958,12 +1965,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -1980,7 +1987,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -1989,8 +1996,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2013,7 +2020,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2021,7 +2028,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2048,7 +2055,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2073,7 +2080,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2081,7 +2088,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2095,9 +2102,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2131,8 +2138,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "" @@ -2193,7 +2199,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2285,7 +2291,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2352,7 +2358,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "" @@ -2458,10 +2464,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2482,7 +2492,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2500,7 +2510,7 @@ msgstr "" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2512,12 +2522,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2536,15 +2546,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2552,7 +2562,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2563,10 +2573,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2595,18 +2604,22 @@ msgstr "" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "" @@ -2646,7 +2659,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2654,7 +2667,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2705,19 +2718,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2731,7 +2744,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2740,7 +2753,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2778,7 +2791,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "" @@ -2827,7 +2839,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "" @@ -2863,7 +2875,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2883,7 +2895,7 @@ msgstr "" msgid "Logout" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2899,24 +2911,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "" @@ -2962,11 +2974,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3000,12 +3012,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "" @@ -3014,7 +3030,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3026,11 +3042,11 @@ msgstr "" msgid "Metric" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3038,16 +3054,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "" @@ -3075,12 +3091,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3090,7 +3110,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3138,7 +3158,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "" @@ -3162,7 +3182,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3180,18 +3200,17 @@ msgstr "" msgid "Name of the new network" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3215,7 +3234,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3240,7 +3259,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3262,10 +3281,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3293,7 +3311,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3301,7 +3319,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3314,7 +3332,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3327,16 +3345,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3348,7 +3370,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3424,7 +3446,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3531,7 +3553,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3593,7 +3615,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3646,8 +3668,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3657,14 +3679,21 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3673,27 +3702,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3771,6 +3800,14 @@ msgstr "" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3779,11 +3816,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3795,7 +3832,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3818,8 +3855,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "" @@ -3836,7 +3873,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3846,8 +3883,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "" @@ -3860,7 +3897,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3868,7 +3905,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3893,7 +3930,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3903,11 +3940,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3915,8 +3952,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3930,27 +3971,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4004,7 +4045,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4012,7 +4053,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4030,8 +4071,8 @@ msgstr "" msgid "Receive" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "" @@ -4098,7 +4139,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4121,10 +4162,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4179,8 +4220,8 @@ msgid "Restore backup" msgstr "" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4227,8 +4268,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4264,7 +4305,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4281,7 +4322,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4289,7 +4330,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "" @@ -4300,7 +4341,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "" @@ -4329,7 +4370,7 @@ msgstr "" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "" @@ -4364,7 +4405,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "" @@ -4399,7 +4440,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4415,7 +4456,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4423,7 +4464,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4446,11 +4487,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4466,7 +4507,7 @@ msgstr "" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4475,21 +4516,19 @@ msgstr "" msgid "Skip" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4576,7 +4615,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4596,7 +4635,7 @@ msgstr "" msgid "Static Routes" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4607,7 +4646,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4627,6 +4666,10 @@ msgstr "" msgid "Strict order" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "" @@ -4652,15 +4695,15 @@ msgstr "" msgid "Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4669,7 +4712,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4685,8 +4728,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4711,7 +4758,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4900,13 +4947,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4924,7 +4971,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "" @@ -4952,10 +4999,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5032,24 +5078,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "" @@ -5088,7 +5134,7 @@ msgstr "" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "" @@ -5096,14 +5142,14 @@ msgstr "" msgid "Transmit" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "" @@ -5119,7 +5165,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5134,7 +5180,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" @@ -5193,19 +5239,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5219,7 +5265,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5234,7 +5279,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5284,8 +5329,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5388,11 +5433,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5420,11 +5465,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5470,18 +5515,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5489,8 +5534,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "" @@ -5498,9 +5543,9 @@ msgstr "" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5522,8 +5567,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5531,7 +5576,11 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5558,7 +5607,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5572,12 +5621,12 @@ msgstr "" msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "" @@ -5585,20 +5634,20 @@ msgstr "" msgid "Wireless Overview" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5618,7 +5667,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5634,34 +5683,26 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5672,11 +5713,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5729,8 +5770,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "" @@ -5787,19 +5828,6 @@ msgstr "" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5832,7 +5860,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5860,20 +5888,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5917,8 +5943,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5939,11 +5965,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -5970,7 +5996,7 @@ msgstr "" msgid "unspecified -or- create:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index f880a21e2e..c266d2eafe 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -23,7 +23,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s är inte taggad i flera VLAN!" @@ -55,16 +55,16 @@ msgstr "(inga gränssnitt har bifogats)" msgid "-- Additional Field --" msgstr "-- Ytterligare fält --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Vänligen välj --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- anpassad --" @@ -88,6 +88,10 @@ msgstr "-- matcha enligt uuid --" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Belastning senaste minuten:" @@ -96,7 +100,7 @@ msgstr "Belastning senaste minuten:" msgid "15 Minute Load:" msgstr "Belastning senaste 15 minutrarna:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Belastning senaste 5 minutrarna:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "802.11r Snabb förvandling" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -154,7 +158,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -190,7 +194,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-gateway" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Lysdiod\">LED</abbr>-konfiguration" @@ -292,7 +296,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -300,8 +304,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Accesspunkt" @@ -331,7 +335,7 @@ msgstr "Aktiva DHCP-kontrakt" msgid "Active DHCPv6 Leases" msgstr "Aktiva DHCPv6-kontrakt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -339,8 +343,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -377,8 +381,8 @@ msgstr "Ytterligare värdfiler" msgid "Additional servers file" msgstr "Ytterligare server-filer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adress" @@ -387,30 +391,34 @@ msgid "Address to access local relay bridge" msgstr "Adress för att komma åt lokal reläbrygga" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Varning" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -438,21 +446,21 @@ msgstr "Allokera IP sekventiellt" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Tillåt <abbr title=\"Secure Shell\">SSH</abbr> lösenordsautentisering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Tillåt alla utom listade" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Tillåt enbart listade" @@ -495,14 +503,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -574,7 +582,7 @@ msgstr "Aviserade DNS-domäner" msgid "Announced DNS servers" msgstr "Aviserade DNS-servrar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "Anonym identitet" @@ -586,17 +594,17 @@ msgstr "Anonym montering" msgid "Anonymous Swap" msgstr "Anonym Swap" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Antenn 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Antenn 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Konfiguration av antenn" @@ -622,7 +630,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Tilldela gränssnitten..." @@ -637,7 +645,7 @@ msgstr "" msgid "Associated Stations" msgstr "Associerade stationer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -646,7 +654,7 @@ msgstr "" msgid "Auth Group" msgstr "Autentiseringsgrupp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Autentisering" @@ -664,12 +672,11 @@ msgstr "Tillstånd krävs" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Uppdatera automatiskt" @@ -741,7 +748,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -771,7 +778,7 @@ msgstr "Backa till skanningsresultat" msgid "Backup" msgstr "Säkerhetskopiera" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Säkerhetskopiera / Flasha inre mjukvara" @@ -783,12 +790,12 @@ msgstr "Säkerhetskopiera fillista" msgid "Bad address specified!" msgstr "Fel adress angiven!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "Band" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -815,7 +822,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bithastighet" @@ -823,7 +830,7 @@ msgstr "Bithastighet" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Brygga" @@ -908,7 +915,7 @@ msgstr "Tillämpade ändringar" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Ändrar administratörens lösenord för att få tillgång till enheten" @@ -916,12 +923,12 @@ msgstr "Ändrar administratörens lösenord för att få tillgång till enheten" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kanal" @@ -962,13 +969,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Chiffer" @@ -988,8 +995,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Klient" @@ -1031,7 +1038,7 @@ msgstr "Stäng ner lista..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Samlar in data..." @@ -1047,7 +1054,7 @@ msgstr "" msgid "Common Configuration" msgstr "Vanlig konfiguration" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1079,7 +1086,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Bekräftelse" @@ -1088,12 +1095,12 @@ msgid "Connect" msgstr "Anslut" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Ansluten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Anslutningsgräns" @@ -1116,9 +1123,9 @@ msgstr "" msgid "Country" msgstr "Land" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Landskod" @@ -1143,11 +1150,11 @@ msgstr "Skapa gränssnitt" msgid "Create a bridge over multiple interfaces" msgstr "Skapa en brygga över flera gränssnitt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritisk" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Loggnivå för Cron" @@ -1178,15 +1185,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1200,7 +1207,7 @@ msgstr "DHCP-server" msgid "DHCP and DNS" msgstr "DHCP och DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP-klient" @@ -1220,16 +1227,16 @@ msgstr "DHCPv6-läge" msgid "DHCPv6-Service" msgstr "DHCPv6-tjänst" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1262,7 +1269,7 @@ msgstr "" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "DSL-status" @@ -1270,7 +1277,7 @@ msgstr "DSL-status" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1278,18 +1285,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "Datahastighet" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Avlusa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Standard %d" @@ -1326,7 +1333,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Radera" @@ -1340,7 +1347,7 @@ msgstr "" msgid "Delete this network" msgstr "Ta bort det här nätverket" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1356,8 +1363,8 @@ msgstr "Plats" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1412,7 +1419,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Inaktivera kryptering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1430,11 +1437,11 @@ msgstr "" msgid "Disabled" msgstr "Inaktiverad" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Inaktiverad (standard)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1457,16 +1464,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Avståndsoptimering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Avstånd till nätverksmledlemmen längst bort i metrar." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Mångfald" @@ -1564,7 +1571,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-metod" @@ -1589,7 +1596,7 @@ msgstr "Redigera det här gränssnittet" msgid "Edit this network" msgstr "Redigera det här nätverket" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Nödsituation" @@ -1624,11 +1631,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Aktivera NTP-klient" @@ -1640,27 +1647,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "Aktivera TFTP-server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Aktivera VLAN-funktionalitet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Aktivera WPS-tryckknapp, kräver WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Kräver ominstallation av nyckel (KRACK) motåtgärder" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1694,7 +1701,7 @@ msgstr "Aktiverad" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1711,9 +1718,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Kryptering" @@ -1733,28 +1740,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Raderar..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Fel" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet-adapter" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "" @@ -1770,7 +1777,7 @@ msgstr "Expandera värdar" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Löper ut" @@ -1783,23 +1790,23 @@ msgstr "" msgid "External" msgstr "Externt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1807,15 +1814,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "Extra alternativ för SSH-kommandot" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1907,7 +1914,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Skriver..." @@ -1921,11 +1928,11 @@ msgstr "" msgid "Force" msgstr "Tvinga" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Tvinga CCMP (AES)" @@ -1933,11 +1940,11 @@ msgstr "Tvinga CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Tvinga DHCP på det här nätverket även om en annan server är upptäckt." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Tvinga TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Tvinga TKIP och CCMP (AES)" @@ -1961,7 +1968,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Vidarebefordra DHCP-trafik" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1969,7 +1976,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1977,12 +1984,12 @@ msgstr "" msgid "Forwarding mode" msgstr "Vidarebefordringsläge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -1999,7 +2006,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2008,8 +2015,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Endast GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Gateway" @@ -2032,7 +2039,7 @@ msgstr "Generella inställningar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2040,7 +2047,7 @@ msgstr "" msgid "Generate Config" msgstr "Generera konfig" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2067,7 +2074,7 @@ msgstr "Globala nätverksalternativ" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Gå till lösenordskonfiguration..." @@ -2092,7 +2099,7 @@ msgstr "HE.net-lösenord" msgid "HE.net username" msgstr "HE.net-användarnamn" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "HT-läge (802.11n)" @@ -2100,7 +2107,7 @@ msgstr "HT-läge (802.11n)" msgid "Hang Up" msgstr "Lägg på" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2114,9 +2121,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Göm <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2150,8 +2157,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Värdnamn" @@ -2212,7 +2218,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4-brandvägg" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2304,7 +2310,7 @@ msgstr "IPv6-inställningar" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2371,7 +2377,7 @@ msgstr "IPv6-över-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-över-IPv4 (6till4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Identitet" @@ -2477,10 +2483,14 @@ msgstr "" msgid "Inbound:" msgstr "Ankommande" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2501,7 +2511,7 @@ msgstr "Installera iputils-traceroute6 för IPv6-traceroute" msgid "Install package %q" msgstr "Installera paketet %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Installera protokoll-förlängningar..." @@ -2519,7 +2529,7 @@ msgstr "Gränssnitt" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Konfiguration av gränssnitt" @@ -2531,12 +2541,12 @@ msgstr "Överblick av gränssnitt" msgid "Interface is reconnecting..." msgstr "Gränssnittet återansluter..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Gränssnittets namn" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Gränssnittet är inte närvarande eller är inte anslutet än." @@ -2555,15 +2565,15 @@ msgid "Internal Server Error" msgstr "Internt server-fel" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Ogiltig" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2571,7 +2581,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Isolera klienter" @@ -2582,10 +2592,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript krävs!" @@ -2614,18 +2623,22 @@ msgstr "Kernel-logg" msgid "Kernel Version" msgstr "Kernel-version" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Nyckel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Nyckel #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Döda" @@ -2665,7 +2678,7 @@ msgstr "LLC" msgid "Label" msgstr "Märke" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Språk" @@ -2673,7 +2686,7 @@ msgstr "Språk" msgid "Language and Style" msgstr "Språk och Stil" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "Latens" @@ -2724,19 +2737,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2750,7 +2763,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2759,7 +2772,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2798,7 +2811,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Lyssningsportar för ankommande DNS-förfrågningar" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Belastning" @@ -2847,7 +2859,7 @@ msgid "Local Startup" msgstr "Lokal uppstart" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Lokal tid" @@ -2883,7 +2895,7 @@ msgstr "Lokalisera förfrågningar" msgid "Locked to channel %s used by: %s" msgstr "Låst till kanalen %s som används av: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2903,7 +2915,7 @@ msgstr "Logga in" msgid "Logout" msgstr "Logga ut" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2919,24 +2931,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-adress" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Filter för MAC-adress" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-lista" @@ -2982,11 +2994,11 @@ msgstr "" msgid "Manual" msgstr "Manuell" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3020,12 +3032,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Minne" @@ -3034,7 +3050,7 @@ msgstr "Minne" msgid "Memory usage (%)" msgstr "Minnesanvändning (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3046,11 +3062,11 @@ msgstr "" msgid "Metric" msgstr "Metrisk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3058,16 +3074,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Läge" @@ -3095,12 +3111,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Övervaka" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3110,7 +3130,7 @@ msgstr "" msgid "Mount Point" msgstr "Monteringspunkt" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3158,7 +3178,7 @@ msgstr "Flytta ner" msgid "Move up" msgstr "Flytta upp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS-ID" @@ -3182,7 +3202,7 @@ msgstr "" msgid "NT Domain" msgstr "NT-domän" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP-serverkandidater" @@ -3200,18 +3220,17 @@ msgstr "Namn på det nya gränssnittet" msgid "Name of the new network" msgstr "Namnet på det nya nätverket" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Navigering" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Nätmask" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3235,7 +3254,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Nätverk utan gränssnitt" @@ -3260,7 +3279,7 @@ msgid "No files found" msgstr "Inga filer hittades" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Ingen information tillgänglig" @@ -3282,10 +3301,9 @@ msgid "No network name specified" msgstr "Inget nätverksnamn angavs" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Inget lösenord inställt!" @@ -3313,7 +3331,7 @@ msgstr "" msgid "Noise" msgstr "Buller" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3321,7 +3339,7 @@ msgstr "" msgid "Noise:" msgstr "Buller:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3334,7 +3352,7 @@ msgstr "" msgid "None" msgstr "Ingen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3347,16 +3365,20 @@ msgstr "Hittades inte" msgid "Not associated" msgstr "Inte associerad" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Inte ansluten" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "Notera: längden på gränssnittets namn" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Avisering" @@ -3368,7 +3390,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3444,7 +3466,7 @@ msgstr "Alternativet ändrades" msgid "Option removed" msgstr "Alternativet togs bort" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Valfri" @@ -3551,7 +3573,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3613,7 +3635,7 @@ msgstr "PIN-kod" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3666,8 +3688,8 @@ msgid "Part of zone %q" msgstr "Del av zon %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3677,14 +3699,21 @@ msgstr "Lösenord" msgid "Password authentication" msgstr "Lösenordsautentisering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Den privata nyckelns lösenord" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "Lösenordet för den inre privata nyckeln" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Lösenord2" @@ -3693,27 +3722,27 @@ msgstr "Lösenord2" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Genväg till klient-certifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Genväg till privat nyckel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "Genväg till det inre CA-certifikatet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "Genväg till det inre klient-certifikatet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "Genväg till den inre privata nyckeln" @@ -3791,6 +3820,14 @@ msgstr "Vänligen ange ditt användarnamn och lösenord." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3799,11 +3836,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port-status:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3815,7 +3852,7 @@ msgstr "Föredra LTE" msgid "Prefer UMTS" msgstr "Föredra UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3838,8 +3875,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Förhindra lyssning på dessa gränssnitt." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Förhindrar kommunikation klient-till-klient" @@ -3856,7 +3893,7 @@ msgstr "Fortsätt" msgid "Processes" msgstr "Processer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Profil" @@ -3866,8 +3903,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokoll" @@ -3880,7 +3917,7 @@ msgstr "Det nya gränssnittets protokoll" msgid "Protocol support is not installed" msgstr "Stöd för protokoll är inte installerat" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3888,7 +3925,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3913,7 +3950,7 @@ msgid "QMI Cellular" msgstr "QMI-telefoni" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Kvalité" @@ -3923,11 +3960,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3935,8 +3972,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3950,27 +3991,27 @@ msgstr "RT" msgid "RX Rate" msgstr "RX-hastighet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4026,7 +4067,7 @@ msgstr "Trafik i realtid" msgid "Realtime Wireless" msgstr "Trådlöst i realtid" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4034,7 +4075,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Starta om" @@ -4052,8 +4093,8 @@ msgstr "Startar om din enhets operativsystem" msgid "Receive" msgstr "Ta emot" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Mottagningsantenn" @@ -4120,7 +4161,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "Krävs!" @@ -4143,10 +4184,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4201,8 +4242,8 @@ msgid "Restore backup" msgstr "Återställ säkerhetskopian" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Visa/göm lösenord" @@ -4249,8 +4290,8 @@ msgstr "Typ av rutt" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Router-lösenord" @@ -4286,7 +4327,7 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH-åtkomst" @@ -4303,7 +4344,7 @@ msgstr "SSH-serverns port" msgid "SSH username" msgstr "Användarnamn för SSH" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH-nycklar" @@ -4311,7 +4352,7 @@ msgstr "SSH-nycklar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4322,7 +4363,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Spara" @@ -4351,7 +4392,7 @@ msgstr "Skanna" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Schemalagda uppgifter" @@ -4386,7 +4427,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Separera klienter" @@ -4421,7 +4462,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "Ställ in Tidssynkronisering" @@ -4437,7 +4478,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Ställ in DHCP-server" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4445,7 +4486,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4468,11 +4509,11 @@ msgstr "Stäng ner det här gränssnittet" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4488,7 +4529,7 @@ msgstr "Storlek" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4497,21 +4538,19 @@ msgstr "" msgid "Skip" msgstr "Hoppa över" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Hoppa över till innehåll" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Hoppa över till navigering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4598,7 +4637,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4618,7 +4657,7 @@ msgstr "" msgid "Static Routes" msgstr "Statiska rutter" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Statiska adresser" @@ -4629,7 +4668,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4649,6 +4688,10 @@ msgstr "" msgid "Strict order" msgstr "Strikt sortering" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Skicka in" @@ -4674,15 +4717,15 @@ msgstr "" msgid "Switch" msgstr "Byt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Byt %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Byt %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4691,7 +4734,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "Byt VLAN" @@ -4707,8 +4750,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Synkronisera med webbläsare" @@ -4733,7 +4780,7 @@ msgstr "Systemlogg" msgid "System Properties" msgstr "Systemets egenskaper" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4922,13 +4969,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4946,7 +4993,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -4974,10 +5021,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5056,24 +5102,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synkronisering av tid" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Synkronisering av tid är inte inställd än." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Tidszon" @@ -5114,7 +5160,7 @@ msgstr "Trafik" msgid "Transfer" msgstr "Överför" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Överföringshastighet" @@ -5122,14 +5168,14 @@ msgstr "Överföringshastighet" msgid "Transmit" msgstr "Överför" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "" @@ -5145,7 +5191,7 @@ msgstr "" msgid "Tunnel ID" msgstr "Tunnel-ID" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Tunnelgränssnitt" @@ -5160,7 +5206,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" @@ -5219,19 +5265,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "Otillgängliga Sekunder (UAS)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Okänd" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5245,7 +5291,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5260,7 +5305,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Protokolltypen stöds inte." @@ -5310,8 +5355,8 @@ msgstr "Använd DHCP-gateway" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5414,11 +5459,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5446,11 +5491,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5496,18 +5541,18 @@ msgstr "Verkställ" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Öppet System WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5515,8 +5560,8 @@ msgstr "" msgid "WEP passphrase" msgstr "WEP-lösenordsfras" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM-läge" @@ -5524,9 +5569,9 @@ msgstr "WMM-läge" msgid "WPA passphrase" msgstr "WPA-lösenordsfras" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5548,8 +5593,8 @@ msgstr "" msgid "Waiting for device..." msgstr "Väntar på enheten..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Varning" @@ -5558,7 +5603,11 @@ msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Varning: Det finns osparade ändringar som kommer att förloras vid omstart!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5585,7 +5634,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Bredd" @@ -5599,12 +5648,12 @@ msgstr "" msgid "Wireless" msgstr "Trådlöst" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Trådlös adapter" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Trådlöst nätverk" @@ -5612,20 +5661,20 @@ msgstr "Trådlöst nätverk" msgid "Wireless Overview" msgstr "Trådlös överblick" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Trådlös säkerhet" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Trådlöst är avstängt" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Trådlöst är inte associerat" @@ -5645,7 +5694,7 @@ msgstr "Trådlöst nätverk är aktiverat" msgid "Write received DNS requests to syslog" msgstr "Skriv mottagna DNS-förfrågningar till syslogg" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Skriv systemlogg till fil" @@ -5661,39 +5710,28 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Du måste aktivera JavaScript i din webbläsare, annars kommer inte LuCi att " "fungera korrekt." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Din Internet Explorer är för gammal för att visa den här sidan korrekt. " -"Vänligen uppgradera den till minst version 7 eller använd en annan " -"webbläsare till exempel Firefox, Opera eller Safari." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5704,11 +5742,11 @@ msgstr "något" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5761,8 +5799,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "stäng ner" @@ -5819,19 +5857,6 @@ msgstr "om målet är ett nätverk" msgid "input" msgstr "inmatning" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5864,7 +5889,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "lokal <abbr title=\"Domain Name System\">DNS</abbr>-fil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "minuter" @@ -5892,20 +5917,18 @@ msgstr "" msgid "not present" msgstr "inte tillgängligt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "av" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "på" @@ -5949,8 +5972,8 @@ msgstr "relä-läge" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5971,11 +5994,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "taggad" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6002,7 +6025,7 @@ msgstr "ospecifierat" msgid "unspecified -or- create:" msgstr "ospecifierat -eller- skapa:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "otaggat" @@ -6172,6 +6195,18 @@ msgstr "ja" msgid "« Back" msgstr "« Bakåt" +#~ msgid "" +#~ "Your Internet Explorer is too old to display this page correctly. Please " +#~ "upgrade it to at least version 7 or use another browser like Firefox, " +#~ "Opera or Safari." +#~ msgstr "" +#~ "Din Internet Explorer är för gammal för att visa den här sidan korrekt. " +#~ "Vänligen uppgradera den till minst version 7 eller använd en annan " +#~ "webbläsare till exempel Firefox, Opera eller Safari." + +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "Password successfully changed!" #~ msgstr "Ändring av lösenordet lyckades!" diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index 0ba42f2a17..a33b7b7740 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -13,7 +13,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -45,16 +45,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -78,6 +78,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -86,7 +90,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -98,35 +102,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -144,7 +148,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -177,7 +181,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -277,7 +281,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -285,8 +289,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "" @@ -316,7 +320,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "" @@ -324,8 +328,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -362,8 +366,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "" @@ -372,30 +376,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -422,21 +430,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "" @@ -477,14 +485,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -556,7 +564,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -568,17 +576,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -604,7 +612,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "" @@ -619,7 +627,7 @@ msgstr "" msgid "Associated Stations" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -628,7 +636,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "" @@ -646,12 +654,11 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -723,7 +730,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "" @@ -753,7 +760,7 @@ msgstr "" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "" @@ -765,12 +772,12 @@ msgstr "" msgid "Bad address specified!" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -797,7 +804,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "" @@ -805,7 +812,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "" @@ -889,7 +896,7 @@ msgstr "" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "" @@ -897,12 +904,12 @@ msgstr "" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "" @@ -941,13 +948,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -967,8 +974,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "" @@ -1010,7 +1017,7 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "" @@ -1026,7 +1033,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1058,7 +1065,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "" @@ -1067,12 +1074,12 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "" @@ -1095,9 +1102,9 @@ msgstr "" msgid "Country" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "" @@ -1122,11 +1129,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1157,15 +1164,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1179,7 +1186,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "" @@ -1199,16 +1206,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "" @@ -1241,7 +1248,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1249,7 +1256,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1257,18 +1264,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1305,7 +1312,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "" @@ -1319,7 +1326,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1335,8 +1342,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1389,7 +1396,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1407,11 +1414,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1434,16 +1441,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "" @@ -1537,7 +1544,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "" @@ -1562,7 +1569,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1597,11 +1604,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1613,27 +1620,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1667,7 +1674,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1684,9 +1691,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "" @@ -1706,28 +1713,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "" @@ -1743,7 +1750,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "" @@ -1756,23 +1763,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1780,15 +1787,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1880,7 +1887,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1894,11 +1901,11 @@ msgstr "" msgid "Force" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1906,11 +1913,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1934,7 +1941,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1942,7 +1949,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1950,12 +1957,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -1972,7 +1979,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -1981,8 +1988,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2005,7 +2012,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2013,7 +2020,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2040,7 +2047,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2065,7 +2072,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2073,7 +2080,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2087,9 +2094,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2123,8 +2130,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "" @@ -2185,7 +2191,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2277,7 +2283,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2344,7 +2350,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "" @@ -2450,10 +2456,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2474,7 +2484,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2492,7 +2502,7 @@ msgstr "" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2504,12 +2514,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2528,15 +2538,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2544,7 +2554,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2555,10 +2565,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2587,18 +2596,22 @@ msgstr "" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "" @@ -2638,7 +2651,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2646,7 +2659,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2697,19 +2710,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2723,7 +2736,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2732,7 +2745,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2770,7 +2783,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "" @@ -2819,7 +2831,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "" @@ -2855,7 +2867,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2875,7 +2887,7 @@ msgstr "" msgid "Logout" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2891,24 +2903,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "" @@ -2954,11 +2966,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -2992,12 +3004,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "" @@ -3006,7 +3022,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3018,11 +3034,11 @@ msgstr "" msgid "Metric" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3030,16 +3046,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "" @@ -3067,12 +3083,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3082,7 +3102,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3130,7 +3150,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "" @@ -3154,7 +3174,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3172,18 +3192,17 @@ msgstr "" msgid "Name of the new network" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3207,7 +3226,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3232,7 +3251,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3254,10 +3273,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3285,7 +3303,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3293,7 +3311,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3306,7 +3324,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3319,16 +3337,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3340,7 +3362,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3416,7 +3438,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3523,7 +3545,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3585,7 +3607,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3638,8 +3660,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3649,14 +3671,21 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3665,27 +3694,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3763,6 +3792,14 @@ msgstr "" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3771,11 +3808,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3787,7 +3824,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3810,8 +3847,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "" @@ -3828,7 +3865,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3838,8 +3875,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "" @@ -3852,7 +3889,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3860,7 +3897,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3885,7 +3922,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3895,11 +3932,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3907,8 +3944,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3922,27 +3963,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -3996,7 +4037,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4004,7 +4045,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4022,8 +4063,8 @@ msgstr "" msgid "Receive" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "" @@ -4090,7 +4131,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4113,10 +4154,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4171,8 +4212,8 @@ msgid "Restore backup" msgstr "" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4219,8 +4260,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4256,7 +4297,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4273,7 +4314,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4281,7 +4322,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "" @@ -4292,7 +4333,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "" @@ -4321,7 +4362,7 @@ msgstr "" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "" @@ -4356,7 +4397,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "" @@ -4391,7 +4432,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4407,7 +4448,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4415,7 +4456,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4438,11 +4479,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4458,7 +4499,7 @@ msgstr "" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4467,21 +4508,19 @@ msgstr "" msgid "Skip" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4568,7 +4607,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4588,7 +4627,7 @@ msgstr "" msgid "Static Routes" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4599,7 +4638,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4619,6 +4658,10 @@ msgstr "" msgid "Strict order" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "" @@ -4644,15 +4687,15 @@ msgstr "" msgid "Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4661,7 +4704,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4677,8 +4720,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4703,7 +4750,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4892,13 +4939,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4916,7 +4963,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "" @@ -4944,10 +4991,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5024,24 +5070,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "" @@ -5080,7 +5126,7 @@ msgstr "" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "" @@ -5088,14 +5134,14 @@ msgstr "" msgid "Transmit" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "" @@ -5111,7 +5157,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5126,7 +5172,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" @@ -5185,19 +5231,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5211,7 +5257,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5226,7 +5271,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5276,8 +5321,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5380,11 +5425,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5412,11 +5457,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5462,18 +5507,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5481,8 +5526,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "" @@ -5490,9 +5535,9 @@ msgstr "" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5514,8 +5559,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5523,7 +5568,11 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5550,7 +5599,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5564,12 +5613,12 @@ msgstr "" msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "" @@ -5577,20 +5626,20 @@ msgstr "" msgid "Wireless Overview" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5610,7 +5659,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5626,34 +5675,26 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5664,11 +5705,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5721,8 +5762,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "" @@ -5779,19 +5820,6 @@ msgstr "" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5824,7 +5852,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5852,20 +5880,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5909,8 +5935,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5931,11 +5957,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -5962,7 +5988,7 @@ msgstr "" msgid "unspecified -or- create:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index 472d43f80f..f1881e829a 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -24,7 +24,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -56,16 +56,16 @@ msgstr "(arayüz eklenmedi)" msgid "-- Additional Field --" msgstr "-- Ek Alan--" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Lütfen seçiniz --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- özel --" @@ -89,6 +89,10 @@ msgstr "-- uuid'e göre eşleştir --" msgid "-- please select --" msgstr "-- lütfen seçin --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 Dakikalık Yük:" @@ -97,7 +101,7 @@ msgstr "1 Dakikalık Yük:" msgid "15 Minute Load:" msgstr "15 Dakikalık Yük:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "4 karakterli HEX ID" @@ -109,35 +113,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 Dakikalık Yük:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\\\"Temel Servis Ayar Tanımlayıcısı\\\"> BSSID </abbr>" @@ -155,7 +159,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -190,7 +194,7 @@ msgstr "<abbr title=\"Internet Protokolü Sürüm 6\">IPv6</abbr>-Gateway" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Ayarları" @@ -294,7 +298,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -302,8 +306,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Erişim Noktası" @@ -335,7 +339,7 @@ msgstr "Aktif DHCP Kiraları" msgid "Active DHCPv6 Leases" msgstr "Aktif DHCPv6 Kiraları" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "" @@ -343,8 +347,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -381,8 +385,8 @@ msgstr "Ek Hosts dosyaları" msgid "Additional servers file" msgstr "Ek sunucular dosyası" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Adres" @@ -391,30 +395,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Uyarı" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -443,21 +451,21 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "<abbr title=\"Secure Shell\">SSH</abbr> parola kimlik doğrulamasına izin ver" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Listelenenlerin haricindekilere izin ver" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Yanlızca listelenenlere izin ver" @@ -498,14 +506,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -577,7 +585,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -589,17 +597,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "1. Anten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "2. Anten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Anten Yapılandırması" @@ -625,7 +633,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Arabirim ata..." @@ -640,7 +648,7 @@ msgstr "" msgid "Associated Stations" msgstr "İlişkili istasyonlar" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -649,7 +657,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Kimlik Doğrulama" @@ -667,12 +675,11 @@ msgstr "Yetkilendirme Gerekli" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Otomatik Yenileme" @@ -744,7 +751,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -774,7 +781,7 @@ msgstr "Tarama sonuçlarına dön" msgid "Backup" msgstr "Yedekleme" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Yedek/Firmware Yazma" @@ -786,12 +793,12 @@ msgstr "" msgid "Bad address specified!" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -818,7 +825,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Bit hızı" @@ -826,7 +833,7 @@ msgstr "Bit hızı" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Köprü" @@ -910,7 +917,7 @@ msgstr "" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "" @@ -918,12 +925,12 @@ msgstr "" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kanal" @@ -962,13 +969,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -990,8 +997,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "" @@ -1033,7 +1040,7 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "" @@ -1049,7 +1056,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1081,7 +1088,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Onayla" @@ -1090,12 +1097,12 @@ msgid "Connect" msgstr "Bağlan" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Bağlandı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Bağlantı limiti" @@ -1118,9 +1125,9 @@ msgstr "" msgid "Country" msgstr "Ülke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Ülke Kodu" @@ -1145,11 +1152,11 @@ msgstr "Arabirim Oluştur" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritik" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1180,15 +1187,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1202,7 +1209,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "" @@ -1222,16 +1229,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "" @@ -1264,7 +1271,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1272,7 +1279,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1280,18 +1287,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Varsayılan" @@ -1328,7 +1335,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Sil" @@ -1342,7 +1349,7 @@ msgstr "" msgid "Delete this network" msgstr "Bu ağı sil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1358,8 +1365,8 @@ msgstr "Hedef" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1414,7 +1421,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Şifrelemeyi Devre Dışı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1432,11 +1439,11 @@ msgstr "Ağ devre dışı" msgid "Disabled" msgstr "Devre dışı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Devre dışı (varsayılan)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1459,16 +1466,16 @@ msgstr "Bağlantı kesme girişimi başarısız oldu" msgid "Dismiss" msgstr "Reddet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Mesafe Optimizasyonu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "" @@ -1562,7 +1569,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "" @@ -1587,7 +1594,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1622,11 +1629,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1638,27 +1645,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1692,7 +1699,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1709,9 +1716,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "" @@ -1731,28 +1738,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "" @@ -1768,7 +1775,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Süre Bitişi" @@ -1781,23 +1788,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1805,15 +1812,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1905,7 +1912,7 @@ msgstr "Yeni firmware dosyasını yaz" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1919,11 +1926,11 @@ msgstr "" msgid "Force" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1931,11 +1938,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1959,7 +1966,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1967,7 +1974,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1975,12 +1982,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "" @@ -1997,7 +2004,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2006,8 +2013,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Ağ Geçidi" @@ -2030,7 +2037,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2038,7 +2045,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2065,7 +2072,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2090,7 +2097,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2098,7 +2105,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2112,9 +2119,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2148,8 +2155,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "" @@ -2210,7 +2216,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2302,7 +2308,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2369,7 +2375,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "" @@ -2475,10 +2481,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2499,7 +2509,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2517,7 +2527,7 @@ msgstr "" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2529,12 +2539,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2553,15 +2563,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2569,7 +2579,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2580,10 +2590,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2612,18 +2621,22 @@ msgstr "" msgid "Kernel Version" msgstr "Çekirdek Versiyonu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "" @@ -2663,7 +2676,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2671,7 +2684,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2722,19 +2735,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2748,7 +2761,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2757,7 +2770,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2795,7 +2808,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "" @@ -2844,7 +2856,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Yerel Zaman" @@ -2880,7 +2892,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2900,7 +2912,7 @@ msgstr "Oturum Aç" msgid "Logout" msgstr "Oturumu Kapat" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2916,24 +2928,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adres" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "" @@ -2979,11 +2991,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3017,12 +3029,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Bellek" @@ -3031,7 +3047,7 @@ msgstr "Bellek" msgid "Memory usage (%)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3043,11 +3059,11 @@ msgstr "" msgid "Metric" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3055,16 +3071,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "" @@ -3092,12 +3108,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3107,7 +3127,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3155,7 +3175,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "" @@ -3179,7 +3199,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3197,18 +3217,17 @@ msgstr "" msgid "Name of the new network" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Ağ Maskesi" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3232,7 +3251,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3257,7 +3276,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3279,10 +3298,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3310,7 +3328,7 @@ msgstr "" msgid "Noise" msgstr "Parazit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3318,7 +3336,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3331,7 +3349,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3344,16 +3362,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3365,7 +3387,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3441,7 +3463,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3548,7 +3570,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3610,7 +3632,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3663,8 +3685,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3674,14 +3696,21 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3690,27 +3719,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3788,6 +3817,14 @@ msgstr "" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3796,11 +3833,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3812,7 +3849,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3835,8 +3872,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "" @@ -3853,7 +3890,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3863,8 +3900,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protokol" @@ -3877,7 +3914,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3885,7 +3922,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3910,7 +3947,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3920,11 +3957,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3932,8 +3969,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "" @@ -3947,27 +3988,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4021,7 +4062,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4029,7 +4070,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4047,8 +4088,8 @@ msgstr "" msgid "Receive" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "" @@ -4115,7 +4156,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4138,10 +4179,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4196,8 +4237,8 @@ msgid "Restore backup" msgstr "Yedeklemeyi geri yükle" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4244,8 +4285,8 @@ msgstr "Yönlendirme Tipi" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Yönlendirici Parolası" @@ -4281,7 +4322,7 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH Erişimi" @@ -4298,7 +4339,7 @@ msgstr "SSH sunucu portu" msgid "SSH username" msgstr "SSH kullanıcı adı" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4306,7 +4347,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4317,7 +4358,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Kaydet" @@ -4346,7 +4387,7 @@ msgstr "Tara" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Zamanlanmış Görevler" @@ -4381,7 +4422,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "" @@ -4416,7 +4457,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4432,7 +4473,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4440,7 +4481,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4463,11 +4504,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Sinyal" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "Sinyal Zayıflama (SATN)" @@ -4483,7 +4524,7 @@ msgstr "Boyut" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4492,21 +4533,19 @@ msgstr "" msgid "Skip" msgstr "Atla" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4593,7 +4632,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4613,7 +4652,7 @@ msgstr "" msgid "Static Routes" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4624,7 +4663,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4644,6 +4683,10 @@ msgstr "Durdur" msgid "Strict order" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Gönder" @@ -4669,15 +4712,15 @@ msgstr "" msgid "Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4686,7 +4729,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4702,8 +4745,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4728,7 +4775,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4917,13 +4964,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -4941,7 +4988,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -4969,10 +5016,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5049,24 +5095,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "" @@ -5105,7 +5151,7 @@ msgstr "" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "" @@ -5113,14 +5159,14 @@ msgstr "" msgid "Transmit" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "" @@ -5136,7 +5182,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5151,7 +5197,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" @@ -5210,19 +5256,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5236,7 +5282,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5251,7 +5296,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5301,8 +5346,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5405,11 +5450,11 @@ msgstr "" msgid "Used" msgstr "Kullanılmış" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5437,11 +5482,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5487,18 +5532,18 @@ msgstr "Kontrol" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5506,8 +5551,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "" @@ -5515,9 +5560,9 @@ msgstr "" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5539,8 +5584,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Uyarı" @@ -5548,7 +5593,11 @@ msgstr "Uyarı" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5575,7 +5624,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Genişlik" @@ -5589,12 +5638,12 @@ msgstr "" msgid "Wireless" msgstr "Kablosuz" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "" @@ -5602,20 +5651,20 @@ msgstr "" msgid "Wireless Overview" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5635,7 +5684,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5651,36 +5700,28 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "LuCI'nin düzgün çalışması için tarayıcınızda Java Scripti " "etkinleştirmelisiniz." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5691,11 +5732,11 @@ msgstr "herhangi" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5748,8 +5789,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "etkin değil" @@ -5806,19 +5847,6 @@ msgstr "eğer hedef ağsa" msgid "input" msgstr "giriş" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5851,7 +5879,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "yerel <abbr title=\"Domain Name System\">DNS</abbr> dosyası" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "dakika" @@ -5879,20 +5907,18 @@ msgstr "" msgid "not present" msgstr "mevcut değil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "kapalı" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "açık" @@ -5936,8 +5962,8 @@ msgstr "anahtarlama modu" msgid "routed" msgstr "yönlendirildi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5958,11 +5984,11 @@ msgstr "durumsuz" msgid "stateless + stateful" msgstr "durumsuz + durumlu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "etiketlendi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -5989,7 +6015,7 @@ msgstr "tanımsız" msgid "unspecified -or- create:" msgstr "tanımsız -veya- oluşturun:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "etiketsiz" @@ -6159,6 +6185,9 @@ msgstr "evet" msgid "« Back" msgstr "« Geri" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "Design" #~ msgstr "Tasarım" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 38a857a804..5323aefc43 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2018-11-22 14:00+0200\n" +"PO-Revision-Date: 2019-02-07 18:35+0200\n" "Last-Translator: Yurii <yuripet@gmail.com>\n" "Language-Team: none\n" "Language: uk\n" @@ -19,9 +19,9 @@ msgstr "%d біт" #: modules/luci-base/htdocs/luci-static/resources/luci.js:307 msgid "%d invalid field(s)" -msgstr "" +msgstr "%d неприпустимі поля" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s є непозначеним у декількох VLAN!" @@ -53,16 +53,16 @@ msgstr "(нема приєднаних інтерфейсів)" msgid "-- Additional Field --" msgstr "-- Додаткові поля --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Оберіть --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- нетипово --" @@ -86,6 +86,11 @@ msgstr "-- відповідно UUID --" msgid "-- please select --" msgstr "-- виберіть --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" +"0 = не використовувати поріг RSSI, 1 = не змінюваим типові значення драйвера" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Навантаження за 1 хвилину:" @@ -94,7 +99,7 @@ msgstr "Навантаження за 1 хвилину:" msgid "15 Minute Load:" msgstr "Навантаження за 15 хвилин:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "4-симв. шістнадцятковий ID" @@ -106,36 +111,36 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Навантаження за 5 хвилин:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" "6-октетний ідентифікатор у вигляді шістнадцяткового рядка – без двокрапок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "Швидкий перехід 802.11r" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "Максимальний тайм-аут запиту асоціації 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "Тайм-аут повторювання запиту асоціації 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "Захист кадрів управління 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "Максимальний тайм-аут 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "Тайм-аут повторювання 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Basic Service Set Identifier — ідентифікатор основної служби " @@ -161,7 +166,7 @@ msgstr "" "<abbr title=\"Domain Name System — система доменних імен\">DNS</abbr>-" "сервери буде опитано в порядку, визначеному файлом <em>resolvfile</em>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Extended Service Set Identifier — ідентифікатор розширеної " @@ -198,7 +203,7 @@ msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</a msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-суфікс (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -319,16 +324,16 @@ msgstr "" msgid "ATM device number" msgstr "Номер ATM-пристрою" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" -msgstr "" +msgstr "Ідентифікатор постачальника системи ATU-C" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 msgid "Access Concentrator" msgstr "Концентратор доступу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Точка доступу" @@ -358,7 +363,7 @@ msgstr "Активні оренди DHCP" msgid "Active DHCPv6 Leases" msgstr "Активні оренди DHCPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -366,8 +371,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -375,11 +380,11 @@ msgstr "Додати" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 msgid "Add IPv4 address…" -msgstr "" +msgstr "Додати адресу IPv4…" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 msgid "Add IPv6 address…" -msgstr "" +msgstr "Додати адресу IPv6…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 @@ -404,8 +409,8 @@ msgstr "Додаткові файли hosts" msgid "Additional servers file" msgstr "Додаткові файли servers" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "Адреса" @@ -414,30 +419,34 @@ msgid "Address to access local relay bridge" msgstr "Адреса для доступу до мосту локального ретранслятора" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Адміністрування" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "Додатково" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "Додаткові параметри" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Сумарна потужність передавання" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Тривога" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "Інтерфейс псевдоніма" @@ -466,24 +475,24 @@ msgstr "" "Дозволити <abbr title=\"Secure Shell — безпечна оболонка\">SSH</abbr>-" "перевірку пароля" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Дозволити режиму AP відключення абонентів на підставі низького рівня <abbr " "title=\"Підтвердження (Acknowledge) успішності отримання TCP-сегменту\">ACK</" "abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Дозволити всі, крім зазначених" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "Дозволити застарілі швидкості 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Дозволити тільки зазначені" @@ -522,13 +531,13 @@ msgstr "Завжди оголошувати типовим маршрутиза #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 msgid "Always off (%s)" -msgstr "" +msgstr "Завжди вимкнено (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 msgid "Always on (%s)" -msgstr "" +msgstr "Завжди ввімкнено (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -538,7 +547,7 @@ msgstr "" "802.11n-2009!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -612,7 +621,7 @@ msgstr "Оголошено DNS-домени" msgid "Announced DNS servers" msgstr "Оголошено DNS-сервери" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "Анонімне посвідчення" @@ -624,17 +633,17 @@ msgstr "Анонімне монтування" msgid "Anonymous Swap" msgstr "Анонімний своп" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "Антена 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "Антена 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "Конфигурація антени" @@ -662,7 +671,7 @@ msgstr "" "Призначати частину заданої довжини до кожного публічного IPv6-префікса цього " "інтерфейсу" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "Призначення інтерфейсів..." @@ -679,7 +688,7 @@ msgstr "" msgid "Associated Stations" msgstr "Приєднано станції" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "З’єднань" @@ -688,7 +697,7 @@ msgstr "З’єднань" msgid "Auth Group" msgstr "Група автентифікації" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Автентифікація" @@ -706,12 +715,11 @@ msgstr "Потрібна авторизація" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Автоматичне оновлення" @@ -784,7 +792,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -814,7 +822,7 @@ msgstr "Повернутися до результатів сканування" msgid "Backup" msgstr "Резервне копіювання" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "Рез. копіювання / Перепрош." @@ -826,12 +834,12 @@ msgstr "Список файлів резервних копій" msgid "Bad address specified!" msgstr "Вказано неправильну адресу!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" -msgstr "Група" +msgstr "Діапазон" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "Інтервал маяка" @@ -850,6 +858,8 @@ msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" msgstr "" +"Прив’язувати динамічно до інтерфейсів, а не за шаблоном адреси (типово для " +"linux, рекомендовано)" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" @@ -861,7 +871,7 @@ msgstr "Прив’язка тунелю до цього інтерфейсу ( #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "Швидкість передавання даних" @@ -869,7 +879,7 @@ msgstr "Швидкість передавання даних" msgid "Bogus NX Domain Override" msgstr "Відкидати підробки NX-домену" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "Міст" @@ -954,7 +964,7 @@ msgstr "Зміни застосовано." msgid "Changes have been reverted." msgstr "Зміни було скасовано." -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "Зміна пароля адміністратора для доступу до пристрою" @@ -962,12 +972,12 @@ msgstr "Зміна пароля адміністратора для доступ msgid "Changing password…" msgstr "Зміна пароля…" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Канал" @@ -1012,7 +1022,7 @@ msgstr "" "або заповніть поле <em>створити</em>, щоб визначити нову зону і прикріпити " "до неї інтерфейс." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1020,7 +1030,7 @@ msgstr "" "Оберіть мережі, які ви хочете прикріпити до цього бездротового інтерфейсу " "або заповніть поле <em>створити</em>, щоб визначити нову мережу." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "Шифр" @@ -1044,8 +1054,8 @@ msgstr "" "Натисніть \"Зберегти mtdblock\", щоб завантажити вказаний файл mtdblock. " "(ПРИМІТКА: ЦЕ ФУНКЦІЯ ДЛЯ ПРОФЕСІОНАЛІВ!)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Клієнт" @@ -1089,7 +1099,7 @@ msgstr "Згорнути список..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "Збирання даних..." @@ -1105,7 +1115,7 @@ msgstr "Примітка" msgid "Common Configuration" msgstr "Загальна конфігурація" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1141,7 +1151,7 @@ msgstr "Конфігурацію застосовано." msgid "Configuration has been rolled back!" msgstr "Конфігурацію було відкочено!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Підтвердження" @@ -1150,12 +1160,12 @@ msgid "Connect" msgstr "Підключити" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "Підключено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Гранична кількість підключень" @@ -1182,9 +1192,9 @@ msgstr "" msgid "Country" msgstr "Країна" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Код країни" @@ -1209,11 +1219,11 @@ msgstr "Створити інтерфейс" msgid "Create a bridge over multiple interfaces" msgstr "Створити міст через кілька інтерфейсів" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Критичний" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Рівень виведення інформації Cron" @@ -1234,11 +1244,12 @@ msgid "" "this, perform a factory-reset first." msgstr "" "Користувацькі файли (сертифікати, скрипти) можуть залишитися в системі. Щоб " -"запобігти цьому, спочатку виконайте скидання до заводських налаштувань." +"запобігти цьому, спочатку виконайте відновлення мікропрограми до її " +"початкового стану." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 msgid "Custom flash intervall (%s)" -msgstr "" +msgstr "Користувацький інтервал спалаху (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "" @@ -1248,17 +1259,17 @@ msgstr "" "Налаштування поведінки <abbr title=\"Light Emitting Diode — світлодіод" "\">LED</abbr>, якщо це можливо." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" -msgstr "" +msgstr "Клієнт DAE" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" -msgstr "" +msgstr "Порт DAE" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" -msgstr "" +msgstr "Секрет DAE" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 @@ -1270,7 +1281,7 @@ msgstr "Сервер DHCP" msgid "DHCP and DNS" msgstr "DHCP та DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "Клієнт DHCP" @@ -1290,16 +1301,16 @@ msgstr "Режим DHCPv6" msgid "DHCPv6-Service" msgstr "Служба DHCPv6" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1332,7 +1343,7 @@ msgstr "AFTR-адреса DS-Lite" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "Стан DSL" @@ -1340,7 +1351,7 @@ msgstr "Стан DSL" msgid "DSL line mode" msgstr "Режим лінії DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" "Інтервал <abbr title=\"Delivery Traffic Indication Message — Повідомлення " @@ -1350,18 +1361,18 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "Швидк. передавання" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Зневаджування" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "Типово %d" @@ -1401,7 +1412,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Видалити" @@ -1415,7 +1426,7 @@ msgstr "Видалити ключ" msgid "Delete this network" msgstr "Видалити цю мережу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "Інтервал повідомлень індикації доправлення трафіку" @@ -1431,8 +1442,8 @@ msgstr "Призначення" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1487,7 +1498,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Вимкнути шифрування" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "Вимкнути опитування неактивності" @@ -1505,11 +1516,11 @@ msgstr "Вимкнути цю мережу" msgid "Disabled" msgstr "Вимкнено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "Вимкнено (типово)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "Роз'єднувати за низького підтвердження" @@ -1532,16 +1543,16 @@ msgstr "Спроба від’єднання не вдалася" msgid "Dismiss" msgstr "Відхилити" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Оптимізація за відстанню" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Відстань до найвіддаленішого вузла мережі в метрах." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Різновидність" @@ -1653,7 +1664,7 @@ msgstr "" msgid "EA-bits length" msgstr "Довжина EA-бітів" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-Метод" @@ -1680,7 +1691,7 @@ msgstr "Редагувати цей інтерфейс" msgid "Edit this network" msgstr "Редагувати цю мережу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Аварійний" @@ -1717,11 +1728,11 @@ msgstr "Увімкнути узгодження IPv6" msgid "Enable IPv6 negotiation on the PPP link" msgstr "Увімкнути узгодження IPv6 для PPP-з’єднань" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "Пропускати Jumbo-фрейми" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Увімкнути клієнта NTP" @@ -1733,27 +1744,27 @@ msgstr "Увімкнути Single DES" msgid "Enable TFTP server" msgstr "Увімкнути TFTP-сервер" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "Увімкнути підтримку VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Увімкнути кнопку WPS, потребує WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Увімкнути протидію<br />перевстановленню ключів (KRACK)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "Увімкнути learning та aging" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "Увімкнути віддзеркалення вхідних пакетів" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "Увімкнути віддзеркалення вихідних пакетів" @@ -1787,7 +1798,7 @@ msgstr "Увімкнено" msgid "Enables IGMP snooping on this bridge" msgstr "Вмикає відстеження IGMP на цьому мосту" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1807,9 +1818,9 @@ msgstr "Режим інкапсуляції" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Шифрування" @@ -1829,28 +1840,28 @@ msgstr "Введіть власне значення" msgid "Enter custom values" msgstr "Введіть власні значення" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "Видалення..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Помилка" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "Секунд з помилками (<abbr title=\"Errored seconds\">ES</abbr>)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Ethernet-адаптер" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Ethernet-комутатор" @@ -1866,12 +1877,11 @@ msgstr "Розширення вузлів" msgid "Expecting %s" msgstr "Очікування %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "Збігає за" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy msgid "" "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." msgstr "Термін оренди адрес, мінімум 2 хвилини (<code>2m</code>)." @@ -1880,23 +1890,23 @@ msgstr "Термін оренди адрес, мінімум 2 хвилини (< msgid "External" msgstr "Зовнішнє" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "Зовнішній список власників ключів R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "Зовнішній список власників ключів R1" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Зовнішній сервер системного журналу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Порт зовнішнього сервера системного журналу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Протокол зовнішнього сервера системного журналу" @@ -1904,15 +1914,15 @@ msgstr "Протокол зовнішнього сервера системно msgid "Extra SSH command options" msgstr "Додаткові параметри команд SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "FT через DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "FT через повітря" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "Протокол FT" @@ -2006,7 +2016,7 @@ msgstr "Прошити новий образ мікропрограми" msgid "Flash operations" msgstr "Операції прошивання" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "Перепрошиваємо..." @@ -2014,17 +2024,17 @@ msgstr "Перепрошиваємо..." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 msgid "Flashmemory write access (%s)" -msgstr "" +msgstr "Доступ до запису флеш-пам’яті (%s)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 msgid "Force" msgstr "Примусово" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "Примусово застосовувати режим '40MHz'" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "Примусово CCMP (AES)" @@ -2032,11 +2042,11 @@ msgstr "Примусово CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Примусово DHCP у цій мережі, навіть якщо виявлено інший сервер." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "Примусово TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "Примусово TKIP та CCMP (AES)" @@ -2060,7 +2070,7 @@ msgstr "Неузгодженість маркера форми" msgid "Forward DHCP traffic" msgstr "Переспрямовувати DHCP-трафік" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "Секунди прямого коригування помилок (FECS)" @@ -2068,7 +2078,7 @@ msgstr "Секунди прямого коригування помилок (FEC msgid "Forward broadcast traffic" msgstr "Переспрямовувати широкомовний трафік" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "Переспрямовувати одноранговий трафік" @@ -2076,12 +2086,12 @@ msgstr "Переспрямовувати одноранговий трафік" msgid "Forwarding mode" msgstr "Режим переспрямовування" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Поріг фрагментації" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Frame Bursting" @@ -2100,7 +2110,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "ГГц" @@ -2109,8 +2119,8 @@ msgstr "ГГц" msgid "GPRS only" msgstr "Тільки GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "Шлюз" @@ -2133,7 +2143,7 @@ msgstr "Загальні параметри" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "Загальні налаштування" @@ -2141,7 +2151,7 @@ msgstr "Загальні налаштування" msgid "Generate Config" msgstr "Cтворити конфігурацію" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "Генерувати PMK локально" @@ -2168,7 +2178,7 @@ msgstr "Глобальні параметри мережі" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Перейти до конфігурації пароля..." @@ -2193,7 +2203,7 @@ msgstr "Пароль HE.net" msgid "HE.net username" msgstr "Ім’я користувача HE.net" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "Режим HT (802.11n)" @@ -2201,13 +2211,15 @@ msgstr "Режим HT (802.11n)" msgid "Hang Up" msgstr "Призупинити" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" +"Помилки коду помилок заголовка (<abbr title=\"Header Error Control\">HEC</" +"abbr>)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 msgid "Heartbeat intervall (%s)" -msgstr "" +msgstr "Інтервал пульсації (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 msgid "" @@ -2217,9 +2229,9 @@ msgstr "" "Тут ви можете налаштувати основні параметри вигляду вашого пристрою, такі як " "назва (ім’я) вузла або часовий пояс." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Приховати <abbr title=\"Extended Service Set Identifier — ідентифікатор " @@ -2255,8 +2267,7 @@ msgstr "Зміст тегу Host-Uniq" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Назва (ім’я) вузла" @@ -2317,7 +2328,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Брандмауер IPv4" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "Висхідне з’єднання IPv4" @@ -2411,7 +2422,7 @@ msgstr "" "<abbr title=\"Unique Local Address — унікальна локальна адреса\">ULA</abbr>-" "префікс IPv6" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "Висхідне з’єднання IPv6" @@ -2478,7 +2489,7 @@ msgstr "IPv6 через IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 через IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Посвідчення" @@ -2597,10 +2608,14 @@ msgstr "Тайм-аут бездіяльності" msgid "Inbound:" msgstr "Вхідний:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Інформація" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "Помилка ініціалізації" @@ -2621,7 +2636,7 @@ msgstr "Інсталюйте iputils-traceroute6 для трасування IPv msgid "Install package %q" msgstr "Інсталяція пакета %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "Інсталяція розширень протоколу..." @@ -2639,7 +2654,7 @@ msgstr "Інтерфейс" msgid "Interface %q device auto-migrated from %q to %q." msgstr "Пристрій інтерфейсу %q автоматичного мігрував із %q на %q." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "Конфігурація інтерфейсу" @@ -2651,12 +2666,12 @@ msgstr "Огляд інтерфейсів" msgid "Interface is reconnecting..." msgstr "Перепідключення інтерфейсу..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "Ім’я інтерфейсу" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "Інтерфейс відсутній або його ще не підключено." @@ -2675,17 +2690,17 @@ msgid "Internal Server Error" msgstr "Внутрішня помилка сервера" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Неприпустимо" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" "Задано неприпустимий VLAN ID! Доступні тільки ідентифікатори в межах між %d " "і %d." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" "Задано неприпустимий VLAN ID! Доступні тільки унікальні ідентифікатори." @@ -2694,7 +2709,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Неприпустиме ім’я користувача та/або пароль! Спробуйте ще раз." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "Ізолювати клієнтів" @@ -2707,10 +2722,9 @@ msgstr "" "Перевірте файл образу!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Потрібен JavaScript!" @@ -2739,18 +2753,22 @@ msgstr "Журнал ядра" msgid "Kernel Version" msgstr "Версія ядра" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Ключ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "Ключ #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Знищити" @@ -2790,7 +2808,7 @@ msgstr "LLC" msgid "Label" msgstr "Мітка" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Мова" @@ -2798,7 +2816,7 @@ msgstr "Мова" msgid "Language and Style" msgstr "Мова та стиль" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "Затримка" @@ -2851,19 +2869,19 @@ msgid "Limit listening to these interfaces, and loopback." msgstr "" "Обмежитися прослуховуванням цих інтерфейсів і повернутися до початку циклу." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "Затухання лінії" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "Режим лінії" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "Стан лінії" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "Час безперервної роботи лінії" @@ -2879,7 +2897,7 @@ msgstr "" "Список <abbr title=\"Domain Name System\">DNS</abbr>-серверів для " "переспрямовування запитів" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2895,7 +2913,7 @@ msgstr "" "ключа R0\">R0KH</abbr>, як станції, що була використана під час початкової " "асоціації домену мобільності." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2944,7 +2962,6 @@ msgid "Listening port for inbound DNS queries" msgstr "Порт прослуховування для вхідних DNS-запитів" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Навантаження" @@ -2993,7 +3010,7 @@ msgid "Local Startup" msgstr "Локальний запуск" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Місцевий час" @@ -3036,7 +3053,7 @@ msgstr "Локалізувати запити" msgid "Locked to channel %s used by: %s" msgstr "Заблоковано до каналу %s, який використовує: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Рівень виведення інформаціі до журналу" @@ -3056,9 +3073,11 @@ msgstr "Увійти" msgid "Logout" msgstr "Вийти" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" +"Втрата сигналу в секундах (<abbr title=\"Loss of Signal Seconds\">LOSS</" +"abbr>)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 msgid "Lowest leased address as offset from the network address." @@ -3072,24 +3091,24 @@ msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-адреса" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Фільтр MAC-адрес" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-фільтр" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-список" @@ -3111,7 +3130,7 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" -msgstr "МГц" +msgstr " МГц" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 @@ -3137,11 +3156,11 @@ msgstr "" msgid "Manual" msgstr "Вручну" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Макс. досяжна швидкість передачі даних (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "Максимальний дозволений інтервал прослуховування" @@ -3177,12 +3196,16 @@ msgstr "Максимальна кількість орендованих адр #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Мбіт/с" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Пам’ять" @@ -3191,7 +3214,7 @@ msgstr "Пам’ять" msgid "Memory usage (%)" msgstr "Використання пам’яті, %" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "Mesh Id" @@ -3203,11 +3226,11 @@ msgstr "Mesh Id" msgid "Metric" msgstr "Метрика" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "Дзеркало порту диспетчера" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "Дзеркало вихідного порту" @@ -3215,16 +3238,16 @@ msgstr "Дзеркало вихідного порту" msgid "Missing protocol extension for proto %q" msgstr "Відсутні розширення для протоколу %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "Домен мобільності" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Режим" @@ -3252,12 +3275,16 @@ msgstr "Помилка запиту інформації про модем" msgid "Modem init timeout" msgstr "Тайм-аут ініціалізації модему" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Диспетчер" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "Вхід монтування" @@ -3267,7 +3294,7 @@ msgstr "Вхід монтування" msgid "Mount Point" msgstr "Точка монтування" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3317,7 +3344,7 @@ msgstr "Вниз" msgid "Move up" msgstr "Вгору" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "Ідентифікатор NAS" @@ -3341,7 +3368,7 @@ msgstr "NDP-проксі" msgid "NT Domain" msgstr "Домен NT" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Кандидати для синхронізації сервера NTP" @@ -3359,18 +3386,17 @@ msgstr "Ім’я нового інтерфейсу" msgid "Name of the new network" msgstr "Назва (ім’я) нової мережі" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Навігація" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "Маска мережі" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3388,13 +3414,13 @@ msgstr "Образ для мережевого завантаження" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 msgid "Network device activity (%s)" -msgstr "" +msgstr "Активність мережевого пристрою (%s)" #: modules/luci-base/luasrc/model/network.lua:33 msgid "Network device is not present" msgstr "Мережевий пристрій відсутній" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "Мережа без інтерфейсів." @@ -3419,7 +3445,7 @@ msgid "No files found" msgstr "Файли не знайдено" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "Інформація відсутня" @@ -3441,16 +3467,15 @@ msgid "No network name specified" msgstr "Ім’я мережі не визначено" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Пароль не встановлено!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 msgid "No public keys present yet." -msgstr "Відкритих ключів поки що немає" +msgstr "Відкритих ключів поки що немає." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 msgid "No rules in this chain." @@ -3458,7 +3483,7 @@ msgstr "У цьму ланцюжку нема правил." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 msgid "No scan results available yet..." -msgstr "Результати сканування наразі недоступні" +msgstr "Результати сканування наразі недоступні…" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 msgid "No zone assigned" @@ -3472,7 +3497,7 @@ msgstr "Зону не призначено" msgid "Noise" msgstr "Шум" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "Співвідношення сигнал/шум" @@ -3480,7 +3505,7 @@ msgstr "Співвідношення сигнал/шум" msgid "Noise:" msgstr "Шум:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Не запобіжні помилки CRC (CRC_P)" @@ -3493,7 +3518,7 @@ msgstr "Без шаблону заміни" msgid "None" msgstr "Жоден" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Нормальний" @@ -3506,16 +3531,20 @@ msgstr "Не знайдено" msgid "Not associated" msgstr "Не пов’язаний" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "Не підключено" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "Примітка: довжина імені інтерфейсу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Попередження" @@ -3527,7 +3556,7 @@ msgstr "DNS-запит" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "Кількість кешованих записів DNS (макс. - 10000, 0 - без кешування)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "Кількість паралельних потоків, що використовуються для стиснення" @@ -3609,7 +3638,7 @@ msgstr "Опція змінена" msgid "Option removed" msgstr "Опція видалена" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Необов’язково" @@ -3731,7 +3760,7 @@ msgstr "Перевизначити TOS" msgid "Override TTL" msgstr "Перевизначити TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "Перевизначення типового імені інтерфейсу" @@ -3798,7 +3827,7 @@ msgstr "" msgid "PIN code rejected" msgstr "PIN-код відхилено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "Проштовхуваня PMK R1" @@ -3828,11 +3857,11 @@ msgstr "PPtP" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 msgid "PSID offset" -msgstr "" +msgstr "Зсув PSID" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 msgid "PSID-bits length" -msgstr "" +msgstr "Довжина PSID у бітах" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 msgid "PTM/EFM (Packet Transfer Mode)" @@ -3851,8 +3880,8 @@ msgid "Part of zone %q" msgstr "Частина зони %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3862,14 +3891,21 @@ msgstr "Пароль" msgid "Password authentication" msgstr "Автентифікація за паролем" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Пароль закритого ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "Пароль внутрішнього закритого ключа" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Пароль2" @@ -3878,27 +3914,27 @@ msgstr "Пароль2" msgid "Paste or drag SSH key file…" msgstr "Вставте або перетягніть файл SSH-ключа…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Шлях до центру сертифікції" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "Шлях до сертифікату клієнта" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Шлях до закритого ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "Шлях до внутрішнього CA-сертифікату" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "Шлях до внутрішнього сертифікату клієнта" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "Шлях до внутрішнього закритого ключа" @@ -3976,6 +4012,14 @@ msgstr "Введіть ім’я користувача і пароль." msgid "Policy" msgstr "Політика" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "Інтервал опитування" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "Інтервал опитування для запитів стану (секунди)" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Порт" @@ -3984,11 +4028,11 @@ msgstr "Порт" msgid "Port status:" msgstr "Стан порту:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "Режим керування живленням" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Попереджувати помилки CRC (CRCP_P)" @@ -4000,7 +4044,7 @@ msgstr "Переважно LTE" msgid "Prefer UMTS" msgstr "Переважно UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "Делеговано префікс" @@ -4025,8 +4069,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Перешкоджати прослуховуванню цих інтерфейсів." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Перешкоджати спілкуванню клієнт-клієнт" @@ -4043,7 +4087,7 @@ msgstr "Продовжити" msgid "Processes" msgstr "Процеси" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "Профіль" @@ -4053,8 +4097,8 @@ msgstr "Прот." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Протокол" @@ -4067,7 +4111,7 @@ msgstr "Протокол нового інтерфейсу" msgid "Protocol support is not installed" msgstr "Підтримка протоколу не інстальована" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Забезпечувати сервер NTP" @@ -4075,7 +4119,7 @@ msgstr "Забезпечувати сервер NTP" msgid "Provide new network" msgstr "Укажіть нову мережу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Псевдо Ad-Hoc (ahdemo)" @@ -4104,7 +4148,7 @@ msgid "QMI Cellular" msgstr "Стільниковий QMI" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "Якість" @@ -4116,11 +4160,11 @@ msgstr "" "Запит усіх наявних висхідних <abbr title=\"Domain Name System — система " "доменних імен\">DNS</abbr>-серверів" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "Тривалість життя ключа R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "Власник ключа R1" @@ -4128,8 +4172,12 @@ msgstr "Власник ключа R1" msgid "RFC3947 NAT-T mode" msgstr "Режим RFC3947 NAT-T" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "Поріг RSSI для приєднання" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "Поріг RTS/CTS" @@ -4143,27 +4191,27 @@ msgstr "Одержано" msgid "RX Rate" msgstr "Швидкість приймання" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Порт Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Секрет Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Сервер Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Порт Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Секрет Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Сервер Radius-Authentication" @@ -4227,7 +4275,7 @@ msgstr "Трафік у реальному часі" msgid "Realtime Wireless" msgstr "Бездротові мережі у реальному часі" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "Кінцевий термін реассоціації" @@ -4235,7 +4283,7 @@ msgstr "Кінцевий термін реассоціації" msgid "Rebind protection" msgstr "Захист від переприв’язки" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Перезавантаження" @@ -4253,8 +4301,8 @@ msgstr "Перезавантажити операційну систему ва msgid "Receive" msgstr "Приймання" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Антена приймача" @@ -4321,21 +4369,21 @@ msgstr "Запит IPv6-адреси" msgid "Request IPv6-prefix of length" msgstr "Запит довжини IPv6-префіксу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" -msgstr "Потрібно" +msgstr "Вимагається" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Потрібно для деяких провайдерів, наприклад, Charter із DOCSIS 3" +msgstr "Вимагається для деяких провайдерів, наприклад, Charter із DOCSIS 3" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 msgid "Required. Base64-encoded private key for this interface." -msgstr "Потрібно. Base64-закодований закритий ключ для цього інтерфейсу." +msgstr "Вимагається. Base64-кодований закритий ключ для цього інтерфейсу." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 msgid "Required. Base64-encoded public key of peer." -msgstr "Потрібно. Base64-закодований відкритий ключ вузла." +msgstr "Вимагається. Base64-кодований відкритий ключ вузла." #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 msgid "" @@ -4343,20 +4391,25 @@ msgid "" "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " "routes through the tunnel." msgstr "" +"Вимагається. IP-адреси та префікси, які цьому вузлу дозволено " +"використовувати всередині тунелю. Зазвичай тунельні IP-адреси вузла та " +"мережі маршрутів вузла через тунель." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "Потребує \"повної\" версії wpad/hostapd та підтримки драйвером WiFi <br /" -">(станом на лютий 2017 року: ath9k та ath10k, у LEDE також mwlwifi та mt76)" +">(станом на січень 2019 року: ath9k, ath10k, mwlwifi та mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" msgstr "" +"Потребує підтримки висхідною мережею DNSSEC; переконайтеся, що відповіді " +"непідписаного домену дійсно походять із непідписаних доменів" #: modules/luci-base/luasrc/view/cbi/delegator.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:30 @@ -4404,8 +4457,8 @@ msgid "Restore backup" msgstr "Відновити з резервної копії" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "Показати/приховати пароль" @@ -4452,8 +4505,8 @@ msgstr "Тип маршруту" msgid "Router Advertisement-Service" msgstr "Служба оголошень маршрутизатора" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "Пароль маршрутизатора" @@ -4491,7 +4544,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH-доступ" @@ -4508,7 +4561,7 @@ msgstr "Порт сервера SSH" msgid "SSH username" msgstr "Ім’я користувача SSH" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH-ключі" @@ -4516,7 +4569,7 @@ msgstr "SSH-ключі" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4527,7 +4580,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Зберегти" @@ -4546,7 +4599,7 @@ msgstr "Зберегти вміст mtdblock" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 msgid "Saving keys…" -msgstr "" +msgstr "Збереження ключів…" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 msgid "Scan" @@ -4556,7 +4609,7 @@ msgstr "Сканувати" msgid "Scan request failed" msgstr "Помилка запиту на сканування" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Заплановані завдання" @@ -4596,7 +4649,7 @@ msgstr "" "Надсилати ехо-пакети LCP зі вказаним інтервалом (секунди), ефективно тільки " "в поєднанні з порогом помилок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Розділяти клієнтів" @@ -4633,7 +4686,7 @@ msgstr "" "Властивості інтерфейсу встановлюються незалежно від каналу зв’язку (якщо " "позначено, обробник автовизначення не викликається при змінах)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "Налаштування синхронізації часу" @@ -4649,15 +4702,17 @@ msgstr "Не вдалося налаштувати режим роботи" msgid "Setup DHCP Server" msgstr "Налаштування DHCP-сервера" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" +"Секунди з великою кількістю помилок помилок (<abbr title=\"Severely Errored " +"Seconds\">SES</abbr>)" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Коротка преамбула" @@ -4680,11 +4735,11 @@ msgstr "Вимкнути цей інтерфейс" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "Сигнал" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "Затухання сигналу (SATN)" @@ -4700,7 +4755,7 @@ msgstr "Розмір" msgid "Size of DNS query cache" msgstr "Розмір кешу запитів DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "Розмір пристрою ZRam у мегабайтах" @@ -4709,21 +4764,19 @@ msgstr "Розмір пристрою ZRam у мегабайтах" msgid "Skip" msgstr "Пропустити" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Перейти до вмісту" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Перейти до навігації" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "Час слота" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "Програмово реалізований VLAN" @@ -4781,19 +4834,23 @@ msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 msgid "Specify a TOS (Type of Service)." -msgstr "" +msgstr "Вкажіть TOS (Type of Service — тип послуги)." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64)." msgstr "" +"Вкажіть TTL (Time to Live — час життя) для пакета інкапсуляції, відмінний " +"від типового (64)." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes)." msgstr "" +"Вкажіть MTU (Maximum Transmission Unit — максимальний блок передавання), " +"відмінний від типового (1280 байт)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 @@ -4817,7 +4874,7 @@ msgstr "Розпочато застосування конфігурації…" msgid "Starting wireless scan..." msgstr "Розпочато сканування бездротових мереж..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "Запуск" @@ -4837,7 +4894,7 @@ msgstr "Статичні оренди" msgid "Static Routes" msgstr "Статичні маршрути" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "Статична адреса" @@ -4852,7 +4909,7 @@ msgstr "" "конфігурацій інтерфейсів, коли обслуговуються тільки вузли з відповідною " "орендою." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "Обмеження бездіяльності станції" @@ -4872,6 +4929,10 @@ msgstr "Зупинити" msgid "Strict order" msgstr "Строгий порядок" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Надіслати" @@ -4897,15 +4958,15 @@ msgstr "Вхід своп" msgid "Switch" msgstr "Комутатор" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "Комутатор %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "Комутатор %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4916,7 +4977,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Маска портів комутатора" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "VLAN комутатора" @@ -4926,14 +4987,18 @@ msgstr "Протокол комутатора" #: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 msgid "Switch to CIDR list notation" -msgstr "" +msgstr "Перейти до позначення списку CIDR" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 msgid "Switchport activity (%s)" +msgstr "Активність порту комутатора (%s)" + +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "Синхронізувати з браузером" @@ -4958,7 +5023,7 @@ msgstr "Системний журнал" msgid "System Properties" msgstr "Властивості системи" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Розмір буфера системного журналу" @@ -5007,7 +5072,6 @@ msgid "Terminate" msgstr "Завершити" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy msgid "" "The <em>Device Configuration</em> section covers physical settings of the " "radio hardware such as channel, transmit power or antenna selection which " @@ -5035,11 +5099,13 @@ msgid "" "The HE.net endpoint update configuration changed, you must now use the plain " "username instead of the user ID!" msgstr "" +"Конфігурацію оновлення кінцевої точки HE.net змінено, тепер потрібно " +"використовувати звичайне ім’я користувача замість ідентифікатора користувача!" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 msgid "" "The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" +msgstr "Адреса IPv4 або повне доменне ім’я віддаленого кінця тунелю." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 @@ -5134,7 +5200,6 @@ msgid "The given network name is not unique" msgstr "Задане мережеве ім’я не є унікальним" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy msgid "" "The hardware is not multi-SSID capable and the existing configuration will " "be replaced if you proceed." @@ -5156,7 +5221,7 @@ msgstr "Довжина IPv6-префікса в бітах" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" +msgstr "Локальна адреса IPv4, за якою створюється тунель (необов'язково)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 msgid "" @@ -5183,9 +5248,9 @@ msgstr "Обраний протокол потребує призначених #: modules/luci-base/luasrc/view/csrftoken.htm:11 msgid "The submitted security token is invalid or already expired!" -msgstr "" +msgstr "Поданий маркер безпеки недійсний або вже збіг!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5193,8 +5258,7 @@ msgstr "" "Зараз система видаляє розділ конфігурації і коли закінчить, " "перезавантажиться." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 -#, fuzzy +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -5218,7 +5282,7 @@ msgstr "" "Завантажений файл образу не містить підтримуваний формат. Переконайтеся, що " "ви вибираєте універсальний формат образу для вашої платформи." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Тема" @@ -5248,10 +5312,9 @@ msgstr "" "\"Фізичні параметри\"." #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5350,24 +5413,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "Ця сторінка надає огляд поточних активних мережевих підключень." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Ця секція поки що не містить значень" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Синхронізація часу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Синхронізацію часу не налаштовано." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "Інтервал часу для зміни ключа GTK" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Часовий пояс" @@ -5410,7 +5473,7 @@ msgstr "Трафік" msgid "Transfer" msgstr "Передано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Швидкість передавання" @@ -5418,14 +5481,14 @@ msgstr "Швидкість передавання" msgid "Transmit" msgstr "Передавання" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Потужність передавача" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Антена передавача" @@ -5441,7 +5504,7 @@ msgstr "Режим запуску" msgid "Tunnel ID" msgstr "Ідентифікатор тунелю" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "Інтерфейс тунелю" @@ -5456,7 +5519,7 @@ msgid "Tx-Power" msgstr "Потужність передавача" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Тип" @@ -5515,19 +5578,19 @@ msgstr "Не вдається розрізнити ім’я хоста AFTR" msgid "Unable to resolve peer host name" msgstr "Не вдається розрізнити ім’я хоста вузла" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "Недоступні секунди (<abbr title=\"Unavailable Seconds\">UAS</abbr>)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "Невідомо" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "Невідома помилка (%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "Некерований" @@ -5541,7 +5604,6 @@ msgid "Unnamed key" msgstr "Безіменний ключ" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5556,7 +5618,7 @@ msgstr "Непідтримуваний тип MAP" msgid "Unsupported modem" msgstr "Непідтримуваний модем" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "Непідтримуваний тип протоколу." @@ -5609,8 +5671,8 @@ msgstr "Використовувати DHCP-шлюз" msgid "Use DNS servers advertised by peer" msgstr "Використовувати DNS-сервери, оголошувані вузлом" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "Використовуйте коди країн згідно ISO/IEC 3166 alpha2." @@ -5717,11 +5779,11 @@ msgstr "" msgid "Used" msgstr "Використано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "Використовується слот ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5752,11 +5814,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLAN на %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLAN на %q (%s)" @@ -5802,18 +5864,18 @@ msgstr "Перевірте" msgid "Virtual dynamic interface" msgstr "Віртуальний динамічний інтерфейс" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "Відкрита система WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "Спільний ключ WEP" @@ -5821,8 +5883,8 @@ msgstr "Спільний ключ WEP" msgid "WEP passphrase" msgstr "Парольна фраза WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "Режим <abbr title=\"Wi-Fi Multimedia\">WMM</abbr>" @@ -5830,9 +5892,9 @@ msgstr "Режим <abbr title=\"Wi-Fi Multimedia\">WMM</abbr>" msgid "WPA passphrase" msgstr "Парольна фраза WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5856,8 +5918,8 @@ msgstr "Очікування застосування конфігурації msgid "Waiting for device..." msgstr "Очікуємо пристрій..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Застереження" @@ -5866,34 +5928,41 @@ msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Застереження: Є незбережені зміни, які буде втрачено при перезавантаженні!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " "key options." msgstr "" +"При використанні PSK, PMK може генеруватися автоматично. Якщо ввімкнено, " +"параметри ключів R0/R1 нижче не застосовуються. Щоб використовувати " +"параметри ключів R0 та R1, вимкніть цю функцію." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 msgid "Wi-Fi activity (%s)" -msgstr "" +msgstr "Активність Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 msgid "Wi-Fi client association (%s)" -msgstr "" +msgstr "Асоціація клієнтів Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 msgid "Wi-Fi data reception (%s)" -msgstr "" +msgstr "Приймання даних Wi-Fi (%s" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 msgid "Wi-Fi data transmission (%s)" -msgstr "" +msgstr "Передавання даних Wi-Fi (%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 msgid "Wi-Fi on (%s)" -msgstr "" +msgstr "Wi-Fi увімкнено (%s)" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "Ширина" @@ -5907,12 +5976,12 @@ msgstr "WireGuard VPN" msgid "Wireless" msgstr "Бездротові мережі" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Бездротовий адаптер" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "Бездротова мережа" @@ -5920,20 +5989,20 @@ msgstr "Бездротова мережа" msgid "Wireless Overview" msgstr "Огляд бездротових мереж" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "Безпека бездротової мережі" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "Бездротову мережу вимкнено" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "Бездротову мережу не пов’язано" @@ -5953,7 +6022,7 @@ msgstr "Бездротову мережу ввімкнено" msgid "Write received DNS requests to syslog" msgstr "Записувати отримані DNS-запити до системного журналу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Записувати cистемний журнал до файлу" @@ -5973,39 +6042,28 @@ msgstr "" "пристрій може стати недоступним!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" "Вам слід увімкнути JavaScript у вашому браузері, або LuCI не буде працювати " "належним чином." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"Ваш Internet Explorer занадто старий, щоб правильно відобразити цю сторінку. " -"Поновіть його, принаймні, до версії 7 або скористайтесь іншим браузером, " -"таким як Firefox, Opera або Safari." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "Алгоритм стиснення ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "Потоки стиснення ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "Налаштування ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "Розмір ZRam" @@ -6016,11 +6074,11 @@ msgstr "будь-який" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6048,7 +6106,7 @@ msgstr "створити:" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 msgid "creates a bridge over specified interface(s)" -msgstr "Створює міст через зазначені інтерфейси" +msgstr "Створити міст через зазначені інтерфейси" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 @@ -6073,8 +6131,8 @@ msgstr "дБ" msgid "dBm" msgstr "дБм" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "вимкнено" @@ -6133,19 +6191,6 @@ msgstr "якщо ціль — мережа" msgid "input" msgstr "вхід" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "КБ" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -6180,7 +6225,7 @@ msgstr "" "Локальний <abbr title=\"Domain Name System — система доменних імен\">DNS</" "abbr>-файл" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "хв." @@ -6208,20 +6253,18 @@ msgstr "непусте значення" msgid "not present" msgstr "не присутній" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "вимкнено" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "увімкнено" @@ -6267,8 +6310,8 @@ msgstr "режим реле" msgid "routed" msgstr "спрямовано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "с" @@ -6289,11 +6332,11 @@ msgstr "БЕЗ збереження стану" msgid "stateless + stateful" msgstr "БЕЗ та ЗІ збереженням стану" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "позначено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "одиниці часу (TUs / 1.024 ms) [1000-65535]" @@ -6320,141 +6363,141 @@ msgstr "не визначено" msgid "unspecified -or- create:" msgstr "не визначено -або- створити:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "не позначено" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address" -msgstr "" +msgstr "дійсна IP-адреса" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address or prefix" -msgstr "" +msgstr "дійсна IP-адреса або префікс" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 msgid "valid IPv4 CIDR" -msgstr "" +msgstr "дійсна IPv4 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 msgid "valid IPv4 address" -msgstr "" +msgstr "дійсна IPv4-адреса" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 msgid "valid IPv4 address or network" -msgstr "" +msgstr "дійсна IPv4-адреса або мережа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 msgid "valid IPv4 address:port" -msgstr "" +msgstr "дійсна IPv4-адреса:порт" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 msgid "valid IPv4 network" -msgstr "" +msgstr "дійсна IPv4-мережа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 msgid "valid IPv4 or IPv6 CIDR" -msgstr "" +msgstr "дійсна IPv4 або IPv6 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 msgid "valid IPv4 prefix value (0-32)" -msgstr "" +msgstr "дійсне значення IPv4-префіксу (0-32)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 msgid "valid IPv6 CIDR" -msgstr "" +msgstr "дійсна IPv6 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address" -msgstr "" +msgstr "дійсна IPv6-адреса" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address or prefix" -msgstr "" +msgstr "дійсна IPv6-адреса або префікс" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 msgid "valid IPv6 host id" -msgstr "" +msgstr "дійсний IPv6-ідентифікатор хоста" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 msgid "valid IPv6 network" -msgstr "" +msgstr "дійсна IPv6-мережа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 msgid "valid IPv6 prefix value (0-128)" -msgstr "" +msgstr "дійсне значення IPv6-префіксу (0-128)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 msgid "valid MAC address" -msgstr "" +msgstr "дійсна MAC-адреса" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 msgid "valid UCI identifier" -msgstr "" +msgstr "дійсний UCI-ідентифікатор" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 msgid "valid UCI identifier, hostname or IP address" -msgstr "" +msgstr "дійсний UCI-ідентифікатор, ім’я хоста або IP-адреса" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 msgid "valid address:port" -msgstr "" +msgstr "дійсна адреса:порт" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 msgid "valid date (YYYY-MM-DD)" -msgstr "" +msgstr "дійсна дата (РРРР-ММ-ДД)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 msgid "valid decimal value" -msgstr "" +msgstr "дійсне десяткове значення" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 msgid "valid hexadecimal WEP key" -msgstr "" +msgstr "дійсний шістнадцятковий ключ WEP" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 msgid "valid hexadecimal WPA key" -msgstr "" +msgstr "дійсний шістнадцятковий ключ WPA" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 msgid "valid host:port" -msgstr "" +msgstr "дійсне ім’я хоста:порт" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 msgid "valid hostname" -msgstr "" +msgstr "дійсне ім’я хоста" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 msgid "valid hostname or IP address" -msgstr "" +msgstr "дійсне ім’я хоста або IP-адреса" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 msgid "valid integer value" -msgstr "" +msgstr "дійсне ціле значення" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 msgid "valid network in address/netmask notation" -msgstr "" +msgstr "дійсна мережа в записі адреса/маска мережі" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" +msgstr "дійсний символ номера телефону (0-9, \"*\", \"#\", \"!\" or \".\")" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 msgid "valid port or port range (port1-port2)" -msgstr "" +msgstr "дійсний порт або діапазон портів (порт1-порт2)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 msgid "valid port value" -msgstr "" +msgstr "дійсне значення порту" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 msgid "valid time (HH:MM:SS)" -msgstr "" +msgstr "дійсний час (ГГ:ХХ:СС)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 msgid "value between %d and %d characters" @@ -6491,8 +6534,13 @@ msgid "« Back" msgstr "« Назад" #~ msgid "" -#~ "When using a PSK, the PMK can be generated locally without inter AP " -#~ "communications" +#~ "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 "" -#~ "При використанні PSK, PMK може бути створений локально без взаємодії між " -#~ "AP" +#~ "Ваш Internet Explorer занадто старий, щоб правильно відобразити цю " +#~ "сторінку. Поновіть його, принаймні, до версії 7 або скористайтесь іншим " +#~ "браузером, таким як Firefox, Opera або Safari." + +#~ msgid "kB" +#~ msgstr "КБ" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index dbb7ad8aaa..99107f9e87 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -24,7 +24,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -57,16 +57,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "---Mục bổ sung---" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "--Hãy chọn--" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "--tùy chỉnh--" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -98,7 +102,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Dịch vụ căn bản đặt Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Mở rộng dịch vụ đặt Identifier\">ESSID</abbr>" @@ -191,7 +195,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -291,7 +295,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -299,8 +303,8 @@ msgstr "" msgid "Access Concentrator" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "Điểm truy cập" @@ -330,7 +334,7 @@ msgstr "" msgid "Active DHCPv6 Leases" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -338,8 +342,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -376,8 +380,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "" @@ -386,30 +390,34 @@ msgid "Address to access local relay bridge" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "Quản trị" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -436,21 +444,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Cho phép <abbr title=\"Secure Shell\">SSH</abbr> xác thực mật mã" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "Cho phép tất cả trừ danh sách liệt kê" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "Chỉ cho phép danh sách liệt kê" @@ -491,14 +499,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -570,7 +578,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -582,17 +590,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "" @@ -618,7 +626,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "" @@ -633,7 +641,7 @@ msgstr "" msgid "Associated Stations" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -642,7 +650,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "Xác thực" @@ -660,12 +668,11 @@ msgstr "Yêu cầu ủy quyền" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -737,7 +744,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "" @@ -767,7 +774,7 @@ msgstr "" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "" @@ -779,12 +786,12 @@ msgstr "" msgid "Bad address specified!" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -811,7 +818,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "" @@ -819,7 +826,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "" @@ -903,7 +910,7 @@ msgstr "Thay đổi đã áp dụng" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "" @@ -911,12 +918,12 @@ msgstr "" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "Kênh" @@ -955,13 +962,13 @@ msgid "" "interface to it." msgstr "Giao diện này chưa thuộc về bất kỳ firewall zone nào." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "" @@ -981,8 +988,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "Client" @@ -1024,7 +1031,7 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "" @@ -1040,7 +1047,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1072,7 +1079,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "Xác nhận" @@ -1081,12 +1088,12 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "Giới hạn kết nối" @@ -1109,9 +1116,9 @@ msgstr "" msgid "Country" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "Mã quốc gia" @@ -1136,11 +1143,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1173,15 +1180,15 @@ msgstr "" "Tùy chỉnh chế độ của thiết bị <abbr title=\"Light Emitting Diode\">LED</" "abbr>s nếu có thể." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1195,7 +1202,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "" @@ -1215,16 +1222,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "" @@ -1257,7 +1264,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1265,7 +1272,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1273,18 +1280,18 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "" @@ -1321,7 +1328,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "Xóa" @@ -1335,7 +1342,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1351,8 +1358,8 @@ msgstr "Điểm đến" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1405,7 +1412,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1423,11 +1430,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1450,16 +1457,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "Khoảng cách tối ưu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "Khoảng cách tới thành viên xa nhất trong mạng lưới tính bằng mét" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "Tính đa dạng" @@ -1562,7 +1569,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP-Method" @@ -1587,7 +1594,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1622,11 +1629,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1638,27 +1645,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1692,7 +1699,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1709,9 +1716,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "Encryption" @@ -1731,28 +1738,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Lỗi" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "Bộ tương hợp ethernet" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "Bộ chuyển đảo ethernet" @@ -1768,7 +1775,7 @@ msgstr "" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "" @@ -1781,23 +1788,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1805,15 +1812,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1905,7 +1912,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "" @@ -1919,11 +1926,11 @@ msgstr "" msgid "Force" msgstr "Force" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "" @@ -1931,11 +1938,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1959,7 +1966,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1967,7 +1974,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1975,12 +1982,12 @@ msgstr "" msgid "Forwarding mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "Ngưỡng cửa Phân đoạn" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "Khung nổ" @@ -1997,7 +2004,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "" @@ -2006,8 +2013,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "" @@ -2030,7 +2037,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "" @@ -2038,7 +2045,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2065,7 +2072,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2090,7 +2097,7 @@ msgstr "" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2098,7 +2105,7 @@ msgstr "" msgid "Hang Up" msgstr "Hang Up" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2114,9 +2121,9 @@ msgstr "" "Ở đây bạn có thể cấu hình những đặc tính cơ bản của thiết bị như tên máy chủ " "hoặc múi giờ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Giấu <abbr title=\"Chế độ mở rộng đặt Identifier\">ESSID</abbr>" @@ -2150,8 +2157,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "Tên host" @@ -2212,7 +2218,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2304,7 +2310,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2371,7 +2377,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "Nhận dạng" @@ -2482,10 +2488,14 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2506,7 +2516,7 @@ msgstr "" msgid "Install package %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "" @@ -2524,7 +2534,7 @@ msgstr "Giao diện " msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "" @@ -2536,12 +2546,12 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "" @@ -2560,15 +2570,15 @@ msgid "Internal Server Error" msgstr "" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "Giá trị nhập vào không hợp lí" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" @@ -2576,7 +2586,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Tên và mật mã không đúng. Xin thử lại " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2590,10 +2600,9 @@ msgstr "" "vui lòng xác minh các tập tin hình ảnh!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2622,18 +2631,22 @@ msgstr "Kernel Log" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "Phím " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "Kill" @@ -2673,7 +2686,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Ngôn ngữ" @@ -2681,7 +2694,7 @@ msgstr "Ngôn ngữ" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2732,19 +2745,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2758,7 +2771,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2767,7 +2780,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2805,7 +2818,6 @@ msgid "Listening port for inbound DNS queries" msgstr "" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "Tải " @@ -2854,7 +2866,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Giờ địa phương" @@ -2890,7 +2902,7 @@ msgstr "Tra vấn địa phương" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2910,7 +2922,7 @@ msgstr "Đăng nhập " msgid "Logout" msgstr "Thoát ra" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2926,24 +2938,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "Lọc địa chỉ MAC" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "Lọc MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "Danh sách MAC" @@ -2989,11 +3001,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3027,12 +3039,16 @@ msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "Bộ nhớ" @@ -3041,7 +3057,7 @@ msgstr "Bộ nhớ" msgid "Memory usage (%)" msgstr "Memory usage (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3053,11 +3069,11 @@ msgstr "" msgid "Metric" msgstr "Metric" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3065,16 +3081,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "Chế độ" @@ -3102,12 +3118,16 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "Monitor" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "" @@ -3117,7 +3137,7 @@ msgstr "" msgid "Mount Point" msgstr "Lắp điểm" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3167,7 +3187,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3191,7 +3211,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3209,18 +3229,17 @@ msgstr "" msgid "Name of the new network" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "Sự điều hướng" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3244,7 +3263,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "" @@ -3269,7 +3288,7 @@ msgid "No files found" msgstr "" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "" @@ -3291,10 +3310,9 @@ msgid "No network name specified" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3322,7 +3340,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3330,7 +3348,7 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3343,7 +3361,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3356,16 +3374,20 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3377,7 +3399,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3459,7 +3481,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3566,7 +3588,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3628,7 +3650,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3681,8 +3703,8 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3692,14 +3714,21 @@ msgstr "Mật mã" msgid "Password authentication" msgstr "Xác thực mật mã" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "Mật mã của private key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3708,27 +3737,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "Đường dẫn tới CA-Certificate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "Đường dẫn tới private key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3806,6 +3835,14 @@ msgstr "Nhập tên và mật mã" msgid "Policy" msgstr "Chính sách" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Cửa " @@ -3814,11 +3851,11 @@ msgstr "Cửa " msgid "Port status:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3830,7 +3867,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3853,8 +3890,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "Ngăn chặn giao tiếp giữa client-và-client" @@ -3871,7 +3908,7 @@ msgstr "Proceed" msgid "Processes" msgstr "Processes" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3881,8 +3918,8 @@ msgstr "Prot." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "Protocol" @@ -3895,7 +3932,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3903,7 +3940,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3928,7 +3965,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "" @@ -3938,11 +3975,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3950,8 +3987,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Threshold" @@ -3965,27 +4006,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "" @@ -4041,7 +4082,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4049,7 +4090,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4067,8 +4108,8 @@ msgstr "Reboots hệ điều hành của công cụ" msgid "Receive" msgstr "Receive" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "Máy thu Antenna" @@ -4135,7 +4176,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4158,10 +4199,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4216,8 +4257,8 @@ msgid "Restore backup" msgstr "Phục hồi backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "" @@ -4264,8 +4305,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "" @@ -4303,7 +4344,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4320,7 +4361,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "" @@ -4328,7 +4369,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4339,7 +4380,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "Lưu" @@ -4368,7 +4409,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Scheduled Tasks" @@ -4403,7 +4444,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "Cô lập đối tượng" @@ -4438,7 +4479,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4454,7 +4495,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4462,7 +4503,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4485,11 +4526,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4505,7 +4546,7 @@ msgstr "Dung lượng " msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4514,21 +4555,19 @@ msgstr "" msgid "Skip" msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "Nhảy tới nội dung" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "Chuyển đến mục định hướng" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4615,7 +4654,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "" @@ -4635,7 +4674,7 @@ msgstr "Thống kê leases" msgid "Static Routes" msgstr "Static Routes" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "" @@ -4646,7 +4685,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4666,6 +4705,10 @@ msgstr "" msgid "Strict order" msgstr "Yêu cầu nghiêm ngặt" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "Trình " @@ -4691,15 +4734,15 @@ msgstr "" msgid "Switch" msgstr "chuyển đổi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4708,7 +4751,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4724,8 +4767,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "" @@ -4750,7 +4797,7 @@ msgstr "System Log" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4943,13 +4990,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4973,7 +5020,7 @@ msgstr "" "Tập tin đang tải hình ảnh không bao gồm một hổ trợ format. Bảo đảm rằng bạn " "chọn một image format tổng quát cho platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Thiết kế" @@ -5001,10 +5048,9 @@ msgid "" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5086,24 +5132,24 @@ msgstr "" "Trang này cung cấp một tổng quan về đang hoạt động kết nối mạng hiện tại." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "Phần này chưa có giá trị nào" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Múi giờ " @@ -5142,7 +5188,7 @@ msgstr "" msgid "Transfer" msgstr "Chuyển giao" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "Truyền tải rate" @@ -5150,14 +5196,14 @@ msgstr "Truyền tải rate" msgid "Transmit" msgstr "Transmit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "Truyền tải năng lượng" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "Máy phát Antenna" @@ -5173,7 +5219,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "" @@ -5188,7 +5234,7 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Loại " @@ -5247,19 +5293,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "" @@ -5273,7 +5319,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5288,7 +5333,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "" @@ -5338,8 +5383,8 @@ msgstr "" msgid "Use DNS servers advertised by peer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "" @@ -5442,11 +5487,11 @@ msgstr "" msgid "Used" msgstr "Đã sử dụng" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5474,11 +5519,11 @@ msgstr "" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "" @@ -5524,18 +5569,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "" @@ -5543,8 +5588,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM Mode" @@ -5552,9 +5597,9 @@ msgstr "WMM Mode" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5576,8 +5621,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5585,7 +5630,11 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5612,7 +5661,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5626,12 +5675,12 @@ msgstr "" msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "Bộ tương hợp không dây" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "" @@ -5639,20 +5688,20 @@ msgstr "" msgid "Wireless Overview" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "" @@ -5672,7 +5721,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5692,34 +5741,26 @@ msgstr "" "bạn chó thể trở nên không truy cập được</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5730,11 +5771,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5787,8 +5828,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "Vô hiệu hóa" @@ -5847,19 +5888,6 @@ msgstr "Nếu mục tiêu là một network" msgid "input" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5892,7 +5920,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Tập tin <abbr title=\"Domain Name System\">DNS</abbr> địa phương" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5920,20 +5948,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5977,8 +6003,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -5999,11 +6025,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6030,7 +6056,7 @@ msgstr "" msgid "unspecified -or- create:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "" diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po index ac57c19da5..02f14189ba 100644 --- a/modules/luci-base/po/zh-cn/base.po +++ b/modules/luci-base/po/zh-cn/base.po @@ -1,10 +1,10 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. -# Zheng Qian <sotux82@gmail.com>, 2018. +# Zheng Qian <sotux82@gmail.com>, 2019. +# Yangfl <mmyangfl@gmail.com>, 2018, 2019. # msgid "" msgstr "" -"PO-Revision-Date: 2018-12-14 09:11+0800\n" +"PO-Revision-Date: 2019-05-17 09:18+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: \n" @@ -25,7 +25,7 @@ msgstr "%d Bit" msgid "%d invalid field(s)" msgstr "%d 个无效字段" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "%s 在多个 VLAN 中均未标记!" @@ -57,16 +57,16 @@ msgstr "(没有接口连接)" msgid "-- Additional Field --" msgstr "-- 更多选项 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 请选择 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 自定义 --" @@ -90,6 +90,10 @@ msgstr "-- 根据 UUID 匹配 --" msgid "-- please select --" msgstr "-- 请选择 --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "0 = 不使用 RSSI 阈值,1 = 驱动默认值" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 分钟负载:" @@ -98,7 +102,7 @@ msgstr "1 分钟负载:" msgid "15 Minute Load:" msgstr "15 分钟负载:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "4 字符的十六进制 ID" @@ -110,35 +114,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "5 分钟负载:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "十六进制表示的 6 字节标识符,无冒号分隔" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "802.11r 快速切换" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "802.11w 关联 SA 查询最大超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "802.11w 关联 SA 查询重试超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "802.11w 管理帧保护" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "802.11w 最大超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "802.11w 重试超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "按照“解析文件”里的顺序查询 <abbr title=\"Domain Name System\">DNS</abbr> 服务" "器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -193,7 +197,7 @@ msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 后缀(十六进制)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 配置" @@ -299,7 +303,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM 设备号码" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "ATU-C 系统供应商 ID" @@ -307,8 +311,8 @@ msgstr "ATU-C 系统供应商 ID" msgid "Access Concentrator" msgstr "接入集中器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "接入点 AP" @@ -338,7 +342,7 @@ msgstr "已分配的 DHCP 租约" msgid "Active DHCPv6 Leases" msgstr "已分配的 DHCPv6 租约" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "点对点 Ad-Hoc" @@ -346,8 +350,8 @@ msgstr "点对点 Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -384,8 +388,8 @@ msgstr "额外的 HOSTS 文件" msgid "Additional servers file" msgstr "额外的 SERVERS 文件" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "地址" @@ -394,30 +398,34 @@ msgid "Address to access local relay bridge" msgstr "接入本地中继桥的地址" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "管理权" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "高级" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "高级设置" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "总发射功率(ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "警戒" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "接口别名" @@ -444,21 +452,21 @@ msgstr "顺序分配 IP" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "允许 <abbr title=\"Secure Shell\">SSH</abbr> 密码验证" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "允许 AP 模式时在 low ACK 的情况下断开无线终端" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "仅允许列表外" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "允许传统的 802.11b 速率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "仅允许列表内" @@ -493,13 +501,13 @@ msgstr "总是通告默认路由" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 msgid "Always off (%s)" -msgstr "" +msgstr "总是关闭(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 msgid "Always on (%s)" -msgstr "" +msgstr "总是开启(%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" @@ -507,7 +515,7 @@ msgstr "" "即使辅助信道重叠,也始终使用 40MHz 信道。使用此选项不符合 IEEE 802.11n-2009!" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "Annex" @@ -579,7 +587,7 @@ msgstr "通告的 DNS 域名" msgid "Announced DNS servers" msgstr "通告的 DNS 服务器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "匿名身份" @@ -591,17 +599,17 @@ msgstr "自动挂载未配置的磁盘分区" msgid "Anonymous Swap" msgstr "自动挂载未配置的 Swap 分区" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "天线 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "天线 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "天线配置" @@ -627,7 +635,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "将每个公共 IPv6 前缀的给定长度部分分配给此接口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "分配接口…" @@ -642,7 +650,7 @@ msgstr "将此十六进制子 ID 前缀分配给此接口" msgid "Associated Stations" msgstr "已连接站点" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "关联数" @@ -651,7 +659,7 @@ msgstr "关联数" msgid "Auth Group" msgstr "认证组" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "认证" @@ -669,12 +677,11 @@ msgstr "需要授权" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "自动刷新" @@ -746,7 +753,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -776,7 +783,7 @@ msgstr "返回至扫描结果" msgid "Backup" msgstr "备份" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "备份/升级" @@ -788,12 +795,12 @@ msgstr "文件备份列表" msgid "Bad address specified!" msgstr "指定了错误的地址!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "频宽" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "Beacon 间隔" @@ -822,7 +829,7 @@ msgstr "将隧道绑定到此接口(可选)。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "传输速率" @@ -830,7 +837,7 @@ msgstr "传输速率" msgid "Bogus NX Domain Override" msgstr "忽略虚假空域名解析" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "桥接" @@ -914,20 +921,20 @@ msgstr "更改已应用。" msgid "Changes have been reverted." msgstr "更改已恢复。" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "更改访问设备的管理员密码" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 msgid "Changing password…" -msgstr "正在更改密码……" +msgstr "正在更改密码…" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "信道" @@ -968,13 +975,13 @@ msgstr "" "为此接口分配所属的防火墙区域,选择“不指定”可将该接口移出已关联的区域,或者填" "写“创建”栏来创建一个新的区域,并将当前接口与之建立关联。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "选择指派到此无线接口的网络,或者填写“创建”栏来新建网络。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "算法" @@ -996,8 +1003,8 @@ msgstr "" "单击“保存 mtdblock”以下载指定的 mtdblock 文件。(注意:此功能适用于专业人" "士!)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "客户端 Client" @@ -1039,7 +1046,7 @@ msgstr "关闭列表…" #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "正在收集数据…" @@ -1055,7 +1062,7 @@ msgstr "备注" msgid "Common Configuration" msgstr "一般配置" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1090,7 +1097,7 @@ msgstr "配置已应用。" msgid "Configuration has been rolled back!" msgstr "配置已回滚!" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "确认密码" @@ -1099,12 +1106,12 @@ msgid "Connect" msgstr "连接" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "已连接" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "连接数限制" @@ -1129,9 +1136,9 @@ msgstr "" msgid "Country" msgstr "国家" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "国家代码" @@ -1156,11 +1163,11 @@ msgstr "创建新接口" msgid "Create a bridge over multiple interfaces" msgstr "在多个接口上创建桥接" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "致命错误" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron 日志级别" @@ -1184,7 +1191,7 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 msgid "Custom flash intervall (%s)" -msgstr "" +msgstr "自定义闪烁间隔(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "" @@ -1192,15 +1199,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "自定义此设备的 <abbr title=\"Light Emitting Diode\">LED</abbr> 行为。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "DAE 客户端" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "DAE 端口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "DAE 加密" @@ -1214,7 +1221,7 @@ msgstr "DHCP 服务器" msgid "DHCP and DNS" msgstr "DHCP/DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP 客户端" @@ -1234,16 +1241,16 @@ msgstr "DHCPv6 模式" msgid "DHCPv6-Service" msgstr "DHCPv6 服务" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "DNS" @@ -1276,7 +1283,7 @@ msgstr "DS-Lite AFTR 地址" msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "DSL 状态" @@ -1284,7 +1291,7 @@ msgstr "DSL 状态" msgid "DSL line mode" msgstr "DSL 线路模式" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "DTIM 间隔" @@ -1292,18 +1299,18 @@ msgstr "DTIM 间隔" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "数据速率" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "调试" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "默认 %d" @@ -1342,7 +1349,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "删除" @@ -1356,7 +1363,7 @@ msgstr "删除密钥" msgid "Delete this network" msgstr "删除此网络" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "发送流量指示消息间隔" @@ -1372,8 +1379,8 @@ msgstr "目标地址" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1428,7 +1435,7 @@ msgstr "" msgid "Disable Encryption" msgstr "禁用加密" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "禁用不活动轮询" @@ -1446,11 +1453,11 @@ msgstr "禁用此网络" msgid "Disabled" msgstr "已禁用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "已禁用(默认)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "在低 Ack 应答时断开连接" @@ -1473,16 +1480,16 @@ msgstr "尝试断开连接失败" msgid "Dismiss" msgstr "解除" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "距离优化" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "最远网络用户的距离(米)。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "差异" @@ -1583,7 +1590,7 @@ msgstr "" msgid "EA-bits length" msgstr "EA-位长" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP 类型" @@ -1608,7 +1615,7 @@ msgstr "编辑此接口" msgid "Edit this network" msgstr "编辑此网络" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "紧急" @@ -1644,11 +1651,11 @@ msgstr "启用 IPv6 协商" msgid "Enable IPv6 negotiation on the PPP link" msgstr "在 PPP 链路上启用 IPv6 协商" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "启用巨型帧透传" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "启用 NTP 客户端" @@ -1660,27 +1667,27 @@ msgstr "启用单个 DES" msgid "Enable TFTP server" msgstr "启用 TFTP 服务器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "启用 VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "启用 WPS 一键加密按钮,需要 WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "启用密钥重新安装(KRACK)对策" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "启用智能交换学习" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "启用流入数据包镜像" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "启用流出数据包镜像" @@ -1714,7 +1721,7 @@ msgstr "已启用" msgid "Enables IGMP snooping on this bridge" msgstr "在此桥接上启用 IGMP 窥探" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1731,9 +1738,9 @@ msgstr "封装模式" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "加密" @@ -1753,28 +1760,28 @@ msgstr "输入自定义值" msgid "Enter custom values" msgstr "输入自定义值" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "擦除中…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "错误" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "错误秒数(ES)" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "以太网适配器" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "以太网交换机" @@ -1790,7 +1797,7 @@ msgstr "扩展 HOSTS 文件中的主机后缀" msgid "Expecting %s" msgstr "期望 %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "到期时间" @@ -1803,23 +1810,23 @@ msgstr "租用地址的到期时间,最短 2 分钟(<code>2m</code>)。" msgid "External" msgstr "外部" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "外部 <abbr title=\"R0 Key Holder\">R0KH</abbr> 列表" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "外部 <abbr title=\"R1 Key Holder\">R1KH</abbr> 列表" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "外部系统日志服务器地址" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "外部系统日志服务器端口" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "外部系统日志服务器协议" @@ -1827,15 +1834,15 @@ msgstr "外部系统日志服务器协议" msgid "Extra SSH command options" msgstr "额外的 SSH 命令选项" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "FT over DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "FT over the Air" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "FT 协议" @@ -1927,7 +1934,7 @@ msgstr "刷写新的固件" msgid "Flash operations" msgstr "刷新操作" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "正在刷写…" @@ -1935,17 +1942,17 @@ msgstr "正在刷写…" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 msgid "Flashmemory write access (%s)" -msgstr "" +msgstr "闪存写访问(%s)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 msgid "Force" msgstr "强制" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "强制 40MHz 模式" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "强制 CCMP(AES)" @@ -1953,11 +1960,11 @@ msgstr "强制 CCMP(AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "即使检测到另一台服务器,也要强制使用此网络上的 DHCP。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "强制 TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "强制 TKIP 和 CCMP(AES)" @@ -1981,7 +1988,7 @@ msgstr "表单令牌不匹配" msgid "Forward DHCP traffic" msgstr "转发 DHCP 数据包" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "前向纠错秒数(FECS)" @@ -1989,7 +1996,7 @@ msgstr "前向纠错秒数(FECS)" msgid "Forward broadcast traffic" msgstr "转发广播数据包" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "转发 mesh 节点数据包" @@ -1997,12 +2004,12 @@ msgstr "转发 mesh 节点数据包" msgid "Forwarding mode" msgstr "转发模式" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "分片阈值" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "帧突发" @@ -2021,7 +2028,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2030,8 +2037,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "仅 GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "网关" @@ -2054,7 +2061,7 @@ msgstr "基本设置" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "基本设置" @@ -2062,7 +2069,7 @@ msgstr "基本设置" msgid "Generate Config" msgstr "生成配置" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "本地生成 PMK" @@ -2089,7 +2096,7 @@ msgstr "全局网络选项" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "跳转到密码配置页…" @@ -2114,7 +2121,7 @@ msgstr "HE.net 密码" msgid "HE.net username" msgstr "HE.net 用户名" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "HT 模式(802.11n)" @@ -2122,13 +2129,13 @@ msgstr "HT 模式(802.11n)" msgid "Hang Up" msgstr "挂起" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "请求头错误代码错误(HEC)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 msgid "Heartbeat intervall (%s)" -msgstr "" +msgstr "心跳间隔(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 msgid "" @@ -2136,9 +2143,9 @@ msgid "" "the timezone." msgstr "此处配置设备的基础信息,如主机名称或时区。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "隐藏 <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2172,8 +2179,7 @@ msgstr "Host-Uniq 标签内容" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "主机名" @@ -2234,7 +2240,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 防火墙" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "IPv4 上游" @@ -2326,7 +2332,7 @@ msgstr "IPv6 设置" msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA 前缀" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "IPv6 上游" @@ -2393,7 +2399,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "鉴权" @@ -2505,10 +2511,14 @@ msgstr "活动超时" msgid "Inbound:" msgstr "入站:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "信息" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "信息" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "初始化失败" @@ -2529,7 +2539,7 @@ msgstr "安装 iputils-traceroute6 以进行 IPv6 路由追踪" msgid "Install package %q" msgstr "安装软件包 %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "安装扩展协议…" @@ -2547,7 +2557,7 @@ msgstr "接口" msgid "Interface %q device auto-migrated from %q to %q." msgstr "接口设备 %q 从 %q 自动迁移到了 %q。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "接口配置" @@ -2559,12 +2569,12 @@ msgstr "接口总览" msgid "Interface is reconnecting..." msgstr "正在重新连接接口…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "接口名称" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "接口不存在或未连接。" @@ -2583,15 +2593,15 @@ msgid "Internal Server Error" msgstr "内部服务器错误" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "无效" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "无效的 VLAN ID!只有 %d 和 %d 之间的 ID 有效。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "无效的 VLAN ID!只允许唯一的 ID" @@ -2599,7 +2609,7 @@ msgstr "无效的 VLAN ID!只允许唯一的 ID" msgid "Invalid username and/or password! Please try again." msgstr "无效的用户名和/或密码!请重试。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "隔离客户端" @@ -2610,10 +2620,9 @@ msgid "" msgstr "您尝试刷写的固件与本路由器不兼容,请重新验证固件文件。" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "需要 JavaScript!" @@ -2642,18 +2651,22 @@ msgstr "内核日志" msgid "Kernel Version" msgstr "内核版本" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "密码" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "密码 #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "KiB" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "强制关闭" @@ -2693,7 +2706,7 @@ msgstr "LLC" msgid "Label" msgstr "卷标" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "语言" @@ -2701,7 +2714,7 @@ msgstr "语言" msgid "Language and Style" msgstr "语言和界面" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "延迟" @@ -2752,19 +2765,19 @@ msgstr "仅在网卡所属的子网中提供 DNS 服务。" msgid "Limit listening to these interfaces, and loopback." msgstr "仅监听这些接口和环回接口。" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "线路衰减(LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "线路模式" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "线路状态" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "线路运行时间" @@ -2779,7 +2792,7 @@ msgid "" msgstr "" "将请求转发到的 <abbr title=\"Domain Name System\">DNS</abbr> 服务器列表" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2791,7 +2804,7 @@ msgstr "" "进制字符串)。<br />在从初始移动域关联期间使用的 R0KH 中请求 PMK-R1 密钥时," "该列表用于将 R0KH-ID(NAS 标识符)映射到目标 MAC 地址。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2833,7 +2846,6 @@ msgid "Listening port for inbound DNS queries" msgstr "入站 DNS 查询端口" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "负载" @@ -2850,7 +2862,7 @@ msgstr "加载中" #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 msgid "Loading SSH keys…" -msgstr "正在加载 SSH 密钥……" +msgstr "正在加载 SSH 密钥…" #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -2882,7 +2894,7 @@ msgid "Local Startup" msgstr "本地启动脚本" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "本地时间" @@ -2918,7 +2930,7 @@ msgstr "本地化查询" msgid "Locked to channel %s used by: %s" msgstr "信道道已被锁定为 %s,因为该信道被 %s 使用" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "日志记录等级" @@ -2938,7 +2950,7 @@ msgstr "登录" msgid "Logout" msgstr "退出" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "信号丢失秒数(LOSS)" @@ -2954,24 +2966,24 @@ msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC 地址" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC 地址过滤" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC 过滤" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC 列表" @@ -3017,11 +3029,11 @@ msgstr "确保使用以下命令来复制根文件系统:" msgid "Manual" msgstr "手动" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "最大可达数据速率(ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "允许的最大监听间隔" @@ -3057,12 +3069,16 @@ msgstr "最大地址分配数量。" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "中等" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "内存" @@ -3071,7 +3087,7 @@ msgstr "内存" msgid "Memory usage (%)" msgstr "内存使用率(%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "Mesh ID" @@ -3083,11 +3099,11 @@ msgstr "Mesh ID" msgid "Metric" msgstr "跃点数" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "数据包镜像监听端口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "数据包镜像源端口" @@ -3095,16 +3111,16 @@ msgstr "数据包镜像源端口" msgid "Missing protocol extension for proto %q" msgstr "缺少协议 %q 的协议扩展" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "移动域" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "模式" @@ -3132,12 +3148,16 @@ msgstr "调制解调器信息查询失败" msgid "Modem init timeout" msgstr "调制解调器初始化超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "监听" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "需要更多字符" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "挂载项目" @@ -3147,7 +3167,7 @@ msgstr "挂载项目" msgid "Mount Point" msgstr "挂载点" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3195,7 +3215,7 @@ msgstr "下移" msgid "Move up" msgstr "上移" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr "NAS ID" @@ -3219,7 +3239,7 @@ msgstr "NDP 代理" msgid "NT Domain" msgstr "NT 域" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "候选 NTP 服务器" @@ -3237,18 +3257,17 @@ msgstr "新接口的名称" msgid "Name of the new network" msgstr "新网络的名称" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "导航" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "子网掩码" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3266,13 +3285,13 @@ msgstr "网络启动镜像" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 msgid "Network device activity (%s)" -msgstr "" +msgstr "网络设备活动(%s)" #: modules/luci-base/luasrc/model/network.lua:33 msgid "Network device is not present" msgstr "网络设备不存在" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "无接口的网络。" @@ -3297,7 +3316,7 @@ msgid "No files found" msgstr "未找到文件" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "无可用信息" @@ -3319,10 +3338,9 @@ msgid "No network name specified" msgstr "未指定网络名" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "未设置密码!" @@ -3350,7 +3368,7 @@ msgstr "未指定区域" msgid "Noise" msgstr "噪声" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "噪声容限(SNR)" @@ -3358,7 +3376,7 @@ msgstr "噪声容限(SNR)" msgid "Noise:" msgstr "噪声:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "非抢占 CRC 错误(CRC_P)" @@ -3371,7 +3389,7 @@ msgstr "非全部地址" msgid "None" msgstr "无" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "正常" @@ -3384,16 +3402,20 @@ msgstr "未找到" msgid "Not associated" msgstr "未关联" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "未连接" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "开机时不启动" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "注意:接口名称长度" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "注意" @@ -3405,7 +3427,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "缓存的 DNS 条目数量(最大 10000,0 表示不缓存)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "用于压缩的并行线程数" @@ -3467,7 +3489,7 @@ msgstr "一个或多个必选项值为空!" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." -msgstr "打开列表……" +msgstr "打开列表…" #: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 msgid "OpenConnect (CISCO AnyConnect)" @@ -3485,7 +3507,7 @@ msgstr "选项已更改" msgid "Option removed" msgstr "选项已移除" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "可选" @@ -3598,7 +3620,7 @@ msgstr "重设 TOS" msgid "Override TTL" msgstr "重设 TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "重设默认接口名称" @@ -3660,7 +3682,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN 码被拒绝" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "R1 推送 PMK" @@ -3713,8 +3735,8 @@ msgid "Part of zone %q" msgstr "区域 %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3724,14 +3746,21 @@ msgstr "密码" msgid "Password authentication" msgstr "密码验证" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "私有密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "内部私钥的密码" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "密码强度" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "密码 2" @@ -3740,27 +3769,27 @@ msgstr "密码 2" msgid "Paste or drag SSH key file…" msgstr "粘贴或拖动 SSH 密钥文件……" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "CA 证书路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "客户端证书路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "私钥路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "内部 CA 证书的路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "内部客户端证书的路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "内部私钥的路径" @@ -3838,6 +3867,14 @@ msgstr "请输入用户名和密码。" msgid "Policy" msgstr "策略" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "轮询间隔" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "状态查询的轮询间隔,以秒为单位" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "端口" @@ -3846,11 +3883,11 @@ msgstr "端口" msgid "Port status:" msgstr "端口状态:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "电源管理模式" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "抢占式 CRC 错误(CRCP_P)" @@ -3862,7 +3899,7 @@ msgstr "首选 LTE" msgid "Prefer UMTS" msgstr "首选 UMTS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "分发前缀" @@ -3885,8 +3922,8 @@ msgstr "在指定数量的 LCP 响应故障后假定链路已断开,0 为忽 msgid "Prevent listening on these interfaces." msgstr "不监听这些接口。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "禁止客户端间通信" @@ -3903,7 +3940,7 @@ msgstr "执行" msgid "Processes" msgstr "系统进程" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "配置文件" @@ -3913,8 +3950,8 @@ msgstr "协议" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "协议" @@ -3927,7 +3964,7 @@ msgstr "新接口的协议" msgid "Protocol support is not installed" msgstr "未安装协议支持" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "作为 NTP 服务器提供服务" @@ -3935,7 +3972,7 @@ msgstr "作为 NTP 服务器提供服务" msgid "Provide new network" msgstr "添加新网络" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "伪装 Ad-Hoc(ahdemo)" @@ -3962,7 +3999,7 @@ msgid "QMI Cellular" msgstr "QMI 蜂窝" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "质量" @@ -3973,11 +4010,11 @@ msgid "" msgstr "" "查询所有可用的上游 <abbr title=\"Domain Name System\">DNS</abbr> 服务器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "R0 密钥生存期" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "R1 密钥持有者" @@ -3985,8 +4022,12 @@ msgstr "R1 密钥持有者" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 NAT-T 模式" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "RSSI 加入阈值" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS 阈值" @@ -4000,27 +4041,27 @@ msgstr "接收" msgid "RX Rate" msgstr "接收速率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Radius 计费端口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Radius 计费密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Radius 计费服务器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Radius 认证端口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Radius 认证密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Radius 认证服务器" @@ -4079,7 +4120,7 @@ msgstr "实时流量" msgid "Realtime Wireless" msgstr "实时无线" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "重关联截止时间" @@ -4087,7 +4128,7 @@ msgstr "重关联截止时间" msgid "Rebind protection" msgstr "重绑定保护" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "重启" @@ -4105,8 +4146,8 @@ msgstr "重启您设备上的系统" msgid "Receive" msgstr "接收" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "接收天线" @@ -4173,7 +4214,7 @@ msgstr "请求 IPv6 地址" msgid "Request IPv6-prefix of length" msgstr "请求指定长度的 IPv6 前缀" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "必须" @@ -4198,13 +4239,13 @@ msgstr "" "必须,允许该 Peer 在隧道中使用的 IP 地址和前缀,通常是该 Peer 的隧道 IP 地址" "和通过隧道的路由网络。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" -"需要完整版本的 wpad/hostapd,并且 WiFi 驱动支持<br />(截止 2017.02,已知支持" -"此特性的驱动有 ath9k、ath10k,以及 LEDE 中的 mwlwifi 和 mt76)" +"需要完整版本的 wpad/hostapd,并且 WiFi 驱动支持<br />(截止 2019.01,已知支持" +"此特性的驱动有 ath9k、ath10k、mwlwifi 和 mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4258,8 +4299,8 @@ msgid "Restore backup" msgstr "恢复配置" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "显示/隐藏 密码" @@ -4306,8 +4347,8 @@ msgstr "路由类型" msgid "Router Advertisement-Service" msgstr "路由通告服务" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "主机密码" @@ -4343,7 +4384,7 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH 访问" @@ -4360,7 +4401,7 @@ msgstr "SSH 服务器端口" msgid "SSH username" msgstr "SSH 用户名" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH 密钥" @@ -4368,7 +4409,7 @@ msgstr "SSH 密钥" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "SSID" @@ -4379,7 +4420,7 @@ msgstr "交换分区" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "保存" @@ -4398,7 +4439,7 @@ msgstr "保存 mtdblock 内容" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 msgid "Saving keys…" -msgstr "正在保存密钥……" +msgstr "正在保存密钥…" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 msgid "Scan" @@ -4408,7 +4449,7 @@ msgstr "扫描" msgid "Scan request failed" msgstr "扫描请求失败" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "计划任务" @@ -4445,7 +4486,7 @@ msgid "" "conjunction with failure threshold" msgstr "定时发送 LCP 响应(秒),仅在结合了故障阈值时有效" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "隔离客户端" @@ -4482,7 +4523,7 @@ msgstr "" "不管接口的链路状态如何,总是用应用设置(如果勾选,链路状态变更将不再触发 " "hotplug 事件处理)。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "设置时间同步" @@ -4498,7 +4539,7 @@ msgstr "设置操作模式失败" msgid "Setup DHCP Server" msgstr "配置 DHCP 服务器" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "严重误码秒(SES)" @@ -4506,7 +4547,7 @@ msgstr "严重误码秒(SES)" msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "Short Preamble" @@ -4529,11 +4570,11 @@ msgstr "关闭此接口" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "信号" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "信号衰减(SATN)" @@ -4549,7 +4590,7 @@ msgstr "大小" msgid "Size of DNS query cache" msgstr "DNS 查询缓存的大小" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "ZRam 设备的大小(以兆字节为单位)" @@ -4558,21 +4599,19 @@ msgstr "ZRam 设备的大小(以兆字节为单位)" msgid "Skip" msgstr "跳过" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "跳到内容" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "跳转到导航" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "时隙" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "软件 VLAN" @@ -4661,7 +4700,7 @@ msgstr "开始应用配置…" msgid "Starting wireless scan..." msgstr "正在启动无线扫描…" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "启动项" @@ -4681,7 +4720,7 @@ msgstr "静态地址分配" msgid "Static Routes" msgstr "静态路由" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "静态地址" @@ -4694,7 +4733,7 @@ msgstr "" "静态租约用于给 DHCP 客户端分配固定的 IP 地址和主机标识。只有指定的主机才能连" "接,并且接口须为非动态配置。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "非活动站点限制" @@ -4714,6 +4753,10 @@ msgstr "关闭" msgid "Strict order" msgstr "严谨查序" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "强" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "提交" @@ -4739,15 +4782,15 @@ msgstr "Swap 节点" msgid "Switch" msgstr "交换机" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "交换机 %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "交换机 %q(%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "交换机 %q 具有未知的拓扑结构,VLAN 设置可能不正确。" @@ -4756,7 +4799,7 @@ msgstr "交换机 %q 具有未知的拓扑结构,VLAN 设置可能不正确。 msgid "Switch Port Mask" msgstr "交换机端口掩码" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "交换机 VLAN" @@ -4770,10 +4813,14 @@ msgstr "切换到 CIDR 列表记法" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 msgid "Switchport activity (%s)" -msgstr "" +msgstr "交换口活动(%s)" + +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "与 NTP 服务器同步" #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "同步浏览器时间" @@ -4798,7 +4845,7 @@ msgstr "系统日志" msgid "System Properties" msgstr "系统属性" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "系统日志缓冲区大小" @@ -5003,13 +5050,13 @@ msgstr "所选的协议需要分配设备" msgid "The submitted security token is invalid or already expired!" msgstr "提交的安全令牌无效或已过期!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "系统正在擦除配置分区,完成后会自动重启。" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 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 " @@ -5029,7 +5076,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "不支持所上传的映像文件格式,请选择适合当前平台的通用映像文件。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "主题" @@ -5057,10 +5104,9 @@ msgid "" msgstr "尚未分配设备,请在“物理设置”选项卡中选择网络设备" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5144,30 +5190,30 @@ msgid "This page gives an overview over currently active network connections." msgstr "活跃的网络连接概况。" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "尚无任何配置" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "时间同步" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "尚未配置时间同步。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "重新加密 GTK 的时间间隔" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "时区" #: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 msgid "To login…" -msgstr "登录……" +msgstr "去登录…" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" @@ -5202,7 +5248,7 @@ msgstr "流量" msgid "Transfer" msgstr "传输" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "传送速率" @@ -5210,14 +5256,14 @@ msgstr "传送速率" msgid "Transmit" msgstr "传送" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "无线电功率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "传送天线" @@ -5233,7 +5279,7 @@ msgstr "触发模式" msgid "Tunnel ID" msgstr "隧道 ID" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "隧道接口" @@ -5248,7 +5294,7 @@ msgid "Tx-Power" msgstr "传输功率" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "类型" @@ -5307,19 +5353,19 @@ msgstr "无法解析 AFTR 主机名" msgid "Unable to resolve peer host name" msgstr "无法解析 Pear 主机名" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "不可用秒数(UAS)" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "未知" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "未知错误(%s)" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "不配置协议" @@ -5333,7 +5379,6 @@ msgid "Unnamed key" msgstr "未命名的密钥" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5348,7 +5393,7 @@ msgstr "不支持的 MAP 类型" msgid "Unsupported modem" msgstr "不支持的调制解调器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "不支持的协议类型" @@ -5400,8 +5445,8 @@ msgstr "使用 DHCP 网关" msgid "Use DNS servers advertised by peer" msgstr "使用对端通告的 DNS 服务器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "参考 ISO/IEC 3166 alpha2 国家代码。" @@ -5507,11 +5552,11 @@ msgstr "" msgid "Used" msgstr "已用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "启用密码组" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5541,11 +5586,11 @@ msgstr "VC-Mux" msgid "VDSL" msgstr "VDSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "%q 上的 VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "%q(%s)上的 VLAN" @@ -5591,18 +5636,18 @@ msgstr "验证" msgid "Virtual dynamic interface" msgstr "虚拟动态接口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP 开放式系统" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP 共享密钥" @@ -5610,8 +5655,8 @@ msgstr "WEP 共享密钥" msgid "WEP passphrase" msgstr "WEP 密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "WMM 模式" @@ -5619,9 +5664,9 @@ msgstr "WMM 模式" msgid "WPA passphrase" msgstr "WPA 密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5645,8 +5690,8 @@ msgstr "等待应用配置… %d 秒" msgid "Waiting for device..." msgstr "等待设备…" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "警告" @@ -5654,7 +5699,11 @@ msgstr "警告" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "警告:一些未保存的配置将在重启后丢失!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "弱" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5665,25 +5714,25 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 msgid "Wi-Fi activity (%s)" -msgstr "" +msgstr "Wi-Fi 活动(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 msgid "Wi-Fi client association (%s)" -msgstr "" +msgstr "Wi-Fi 客户端关联(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 msgid "Wi-Fi data reception (%s)" -msgstr "" +msgstr "Wi-Fi 数据接收(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 msgid "Wi-Fi data transmission (%s)" -msgstr "" +msgstr "Wi-Fi 数据传输(%s)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 msgid "Wi-Fi on (%s)" -msgstr "" +msgstr "Wi-Fi 开启(%s)" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "频宽" @@ -5697,12 +5746,12 @@ msgstr "WireGuard VPN" msgid "Wireless" msgstr "无线" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "无线适配器" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "无线网络" @@ -5710,20 +5759,20 @@ msgstr "无线网络" msgid "Wireless Overview" msgstr "无线概况" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "无线安全" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "无线未开启" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "无线未关联" @@ -5743,7 +5792,7 @@ msgstr "无线网络已启用" msgid "Write received DNS requests to syslog" msgstr "将收到的 DNS 请求写入系统日志" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "将系统日志写入文件" @@ -5761,36 +5810,26 @@ msgstr "" "果禁用了必要的启动脚本,比如“network”,可能会导致无法访问设备!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "必须开启浏览器的 JavaScript 支持,否则 LuCI 无法正常工作。" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -msgid "" -"Your Internet Explorer is too old to display this page correctly. Please " -"upgrade it to at least version 7 or use another browser like Firefox, Opera " -"or Safari." -msgstr "" -"您的 IE 浏览器太老了,无法正常显示这个页面!请更新到 IE7 及以上或使用其他浏览" -"器,如 Firefox、Opera、Safari。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "ZRam 压缩算法" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "ZRam 压缩流" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ZRam 设置" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "ZRam 大小" @@ -5801,11 +5840,11 @@ msgstr "任意" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5858,8 +5897,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "禁用" @@ -5918,19 +5957,6 @@ msgstr "如果对象是一个网络" msgid "input" msgstr "输入" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5963,7 +5989,7 @@ msgstr "密钥为 5 或 13 个字符" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "本地 <abbr title=\"Domain Name System\">DNS</abbr> 解析文件" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "分钟" @@ -5991,20 +6017,18 @@ msgstr "非空值" msgid "not present" msgstr "不存在" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "关" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "开" @@ -6050,8 +6074,8 @@ msgstr "中继模式" msgid "routed" msgstr "已路由" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "秒" @@ -6072,11 +6096,11 @@ msgstr "无状态" msgid "stateless + stateful" msgstr "无状态 + 有状态" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "已标记" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "时间单位(TUs / 1.024ms)[1000-65535]" @@ -6103,7 +6127,7 @@ msgstr "未指定" msgid "unspecified -or- create:" msgstr "不指定或新建:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "未标记" @@ -6274,6 +6298,17 @@ msgid "« Back" 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 "" +#~ "您的 IE 浏览器太老了,无法正常显示这个页面!请更新到 IE7 及以上或使用其他" +#~ "浏览器,如 Firefox、Opera、Safari。" + +#~ msgid "kB" +#~ msgstr "kB" + +#~ msgid "" #~ "When using a PSK, the PMK can be generated locally without inter AP " #~ "communications" #~ msgstr "当使用 PSK 时,PMK 可以在没有 AP 间通信的情况下在本地生成" diff --git a/modules/luci-base/po/zh-tw/base.po b/modules/luci-base/po/zh-tw/base.po index 3328c53370..bec7529bfc 100644 --- a/modules/luci-base/po/zh-tw/base.po +++ b/modules/luci-base/po/zh-tw/base.po @@ -23,7 +23,7 @@ msgstr "" msgid "%d invalid field(s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -55,16 +55,16 @@ msgstr "(未連接界面)" msgid "-- Additional Field --" msgstr "-- 更多選項 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 請選擇 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 自訂 --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1分鐘負載" @@ -96,7 +100,7 @@ msgstr "1分鐘負載" msgid "15 Minute Load:" msgstr "15分鐘負載" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5分鐘負載" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -154,7 +158,7 @@ msgid "" "order of the resolvfile" msgstr "將會按照指定的順序查詢<abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -188,7 +192,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-閘道" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" @@ -294,7 +298,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM裝置號碼" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 msgid "ATU-C System Vendor ID" msgstr "" @@ -302,8 +306,8 @@ msgstr "" msgid "Access Concentrator" msgstr "接入集線器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 msgid "Access Point" msgstr "存取點 (AP)" @@ -333,7 +337,7 @@ msgstr "已分配的DHCP租用" msgid "Active DHCPv6 Leases" msgstr "已分配的DHCPv6租用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 #: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 msgid "Ad-Hoc" msgstr "Ad-Hoc" @@ -341,8 +345,8 @@ msgstr "Ad-Hoc" #: modules/luci-base/luasrc/view/cbi/nsection.htm:25 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:34 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 #: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 msgid "Add" @@ -379,8 +383,8 @@ msgstr "額外的HOST檔案" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 msgid "Address" msgstr "位置" @@ -389,30 +393,34 @@ msgid "Address to access local relay bridge" msgstr "存取本地中繼橋接位置" #: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 msgid "Administration" msgstr "管理" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 msgid "Advanced Settings" msgstr "進階設定" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "警示" -#: modules/luci-base/luasrc/model/network.lua:1406 +#: modules/luci-base/luasrc/model/network.lua:1416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 msgid "Alias Interface" msgstr "" @@ -439,21 +447,21 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "允許 <abbr title=\"Secure Shell\">SSH</abbr> 密碼驗證" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 msgid "Allow all except listed" msgstr "僅允許列表外" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:235 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "Allow listed only" msgstr "僅允許列表內" @@ -494,14 +502,14 @@ msgstr "" msgid "Always on (%s)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 msgid "Annex" msgstr "" @@ -573,7 +581,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 msgid "Anonymous Identity" msgstr "" @@ -585,17 +593,17 @@ msgstr "" msgid "Anonymous Swap" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 msgid "Antenna 1" msgstr "天線 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 msgid "Antenna 2" msgstr "天線 2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 msgid "Antenna Configuration" msgstr "天線設定" @@ -621,7 +629,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 msgid "Assign interfaces..." msgstr "分配界面..." @@ -636,7 +644,7 @@ msgstr "" msgid "Associated Stations" msgstr "已連接站點" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 msgid "Associations" msgstr "" @@ -645,7 +653,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 msgid "Authentication" msgstr "認證" @@ -663,12 +671,11 @@ msgstr "需要授權" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:131 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "自動更新" @@ -740,7 +747,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 msgid "BSSID" msgstr "BSSID" @@ -770,7 +777,7 @@ msgstr "返回至掃描結果" msgid "Backup" msgstr "備份" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 msgid "Backup / Flash Firmware" msgstr "備份/升級韌體" @@ -782,12 +789,12 @@ msgstr "備份檔列表" msgid "Bad address specified!" msgstr "指定了錯誤的位置!" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:153 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:287 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 msgid "Band" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 msgid "Beacon Interval" msgstr "" @@ -816,7 +823,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 msgid "Bitrate" msgstr "傳輸速率" @@ -824,7 +831,7 @@ msgstr "傳輸速率" msgid "Bogus NX Domain Override" msgstr "忽略NX網域解析" -#: modules/luci-base/luasrc/model/network.lua:1410 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Bridge" msgstr "橋接" @@ -908,7 +915,7 @@ msgstr "修改已套用" msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:9 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Changes the administrator password for accessing the device" msgstr "修改管理員密碼" @@ -916,12 +923,12 @@ msgstr "修改管理員密碼" msgid "Changing password…" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "Channel" msgstr "頻道" @@ -962,7 +969,7 @@ msgstr "" "選擇您要指定給這介面的防火牆區. 撿選<em>unspecified</em>以便從指定區域除這個" "介面或者填寫<em>create</em>欄以便定義附加這個介面到一個新的區域上." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -970,7 +977,7 @@ msgstr "" "選擇您要附加到無線網路介面的多個網路或者填寫<em>create</em> 以便定義一個新的" "網路." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 msgid "Cipher" msgstr "暗號" @@ -990,8 +997,8 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 msgid "Client" msgstr "用戶端" @@ -1033,7 +1040,7 @@ msgstr "關閉清單中..." #: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 msgid "Collecting data..." msgstr "收集資料中..." @@ -1049,7 +1056,7 @@ msgstr "" msgid "Common Configuration" msgstr "一般設定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1081,7 +1088,7 @@ msgstr "" msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:22 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 msgid "Confirmation" msgstr "再確認" @@ -1090,12 +1097,12 @@ msgid "Connect" msgstr "連線" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 msgid "Connected" msgstr "已連線" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 msgid "Connection Limit" msgstr "連線限制" @@ -1118,9 +1125,9 @@ msgstr "" msgid "Country" msgstr "國別" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:336 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 msgid "Country Code" msgstr "國別碼" @@ -1145,11 +1152,11 @@ msgstr "建立介面" msgid "Create a bridge over multiple interfaces" msgstr "在多個介面上建立橋接" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "緊急" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron的日誌級別" @@ -1182,15 +1189,15 @@ msgstr "" "如果可以的話,自定這個設備的動作 <abbr title=\"Light Emitting Diode\">LED</" "abbr>s ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 msgid "DAE-Secret" msgstr "" @@ -1204,7 +1211,7 @@ msgstr "DHCP伺服器" msgid "DHCP and DNS" msgstr "DHCP 和 DNS" -#: modules/luci-base/luasrc/model/network.lua:962 +#: modules/luci-base/luasrc/model/network.lua:968 msgid "DHCP client" msgstr "DHCP用戶端" @@ -1224,16 +1231,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 msgid "DNS" msgstr "網域名稱伺服器" @@ -1266,7 +1273,7 @@ msgstr "" msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 msgid "DSL Status" msgstr "" @@ -1274,7 +1281,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "DTIM Interval" msgstr "" @@ -1282,18 +1289,18 @@ msgstr "" msgid "DUID" msgstr "DHCP獨立式別碼DUID " -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "除錯" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 msgid "Default %d" msgstr "預設 %d" @@ -1332,7 +1339,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/nsection.htm:11 #: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:11 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 msgid "Delete" msgstr "刪除" @@ -1346,7 +1353,7 @@ msgstr "" msgid "Delete this network" msgstr "刪除這個網路" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1362,8 +1369,8 @@ msgstr "目的地" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:50 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:75 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1417,7 +1424,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 msgid "Disable Inactivity Polling" msgstr "" @@ -1435,11 +1442,11 @@ msgstr "" msgid "Disabled" msgstr "關閉" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1462,16 +1469,16 @@ msgstr "" msgid "Dismiss" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:239 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:333 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 msgid "Distance Optimization" msgstr "最佳化距離" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 msgid "Distance to farthest network member in meters." msgstr "到最遠的網路距離以米表示." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:346 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 msgid "Diversity" msgstr "差異" @@ -1572,7 +1579,7 @@ msgstr "幫用戶端動態發配DHCP位址. 假如關閉的話,僅有有靜態 msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 msgid "EAP-Method" msgstr "EAP協定驗證方式" @@ -1597,7 +1604,7 @@ msgstr "修改這個介面" msgid "Edit this network" msgstr "修改這個網路" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "緊急" @@ -1632,11 +1639,11 @@ msgstr "" msgid "Enable IPv6 negotiation on the PPP link" msgstr "啟用PPP連結上的IPv6交涉" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:141 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 msgid "Enable Jumbo Frame passthrough" msgstr "啟用超大訊框透穿" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "起用NTP用戶功能" @@ -1648,27 +1655,27 @@ msgstr "" msgid "Enable TFTP server" msgstr "啟用TFTP伺服器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:132 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 msgid "Enable VLAN functionality" msgstr "啟用VLAN功能" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 msgid "Enable learning and aging" msgstr "啟用智慧學習功能" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:148 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 msgid "Enable mirroring of incoming packets" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:149 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 msgid "Enable mirroring of outgoing packets" msgstr "" @@ -1702,7 +1709,7 @@ msgstr "啟用" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1719,9 +1726,9 @@ msgstr "封裝模式" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 msgid "Encryption" msgstr "加密" @@ -1741,28 +1748,28 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 msgid "Erasing..." msgstr "刪除中..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "錯誤" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1422 +#: modules/luci-base/luasrc/model/network.lua:1432 msgid "Ethernet Adapter" msgstr "乙太網路卡" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Switch" msgstr "乙太交換器" @@ -1778,7 +1785,7 @@ msgstr "延伸主機" msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 msgid "Expires" msgstr "過期" @@ -1792,23 +1799,23 @@ msgstr "釋放位址的過期週期,最少兩分鐘 (<code>2m</code>)." msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "外部系統日誌伺服器" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "外部系統日誌伺服器埠號" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1816,15 +1823,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 msgid "FT protocol" msgstr "" @@ -1916,7 +1923,7 @@ msgstr "更新新版韌體映像檔" msgid "Flash operations" msgstr "執行更新" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 msgid "Flashing..." msgstr "更新中..." @@ -1930,11 +1937,11 @@ msgstr "" msgid "Force" msgstr "強制" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force CCMP (AES)" msgstr "強制CCMP (AES)加密" @@ -1942,11 +1949,11 @@ msgstr "強制CCMP (AES)加密" msgid "Force DHCP on this network even if another server is detected." msgstr "在網路上即使偵測到其它伺服器也強制採用DHCP的設定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 msgid "Force TKIP" msgstr "強制TKIP加密" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 msgid "Force TKIP and CCMP (AES)" msgstr "強制TKIP+CCMP (AES)加密" @@ -1970,7 +1977,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "轉發DHCP流量" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1978,7 +1985,7 @@ msgstr "" msgid "Forward broadcast traffic" msgstr "轉發廣播流量" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:374 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 msgid "Forward mesh peer traffic" msgstr "" @@ -1986,12 +1993,12 @@ msgstr "" msgid "Forwarding mode" msgstr "轉發模式" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 msgid "Fragmentation Threshold" msgstr "分片閥值" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 msgid "Frame Bursting" msgstr "訊框爆速" @@ -2008,7 +2015,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:167 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 msgid "GHz" msgstr "GHz" @@ -2017,8 +2024,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "僅用GPRS" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 msgid "Gateway" msgstr "匝道器" @@ -2041,7 +2048,7 @@ msgstr "一般設定" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:360 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 msgid "General Setup" msgstr "一般設置" @@ -2049,7 +2056,7 @@ msgstr "一般設置" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 msgid "Generate PMK locally" msgstr "" @@ -2076,7 +2083,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "到密碼設定頁" @@ -2101,7 +2108,7 @@ msgstr " HE.net密碼" msgid "HE.net username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:309 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 msgid "HT mode (802.11n)" msgstr "" @@ -2109,7 +2116,7 @@ msgstr "" msgid "Hang Up" msgstr "斷線" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2123,9 +2130,9 @@ msgid "" "the timezone." msgstr "在這設置基本樣貌類似像主機名稱或者時區..等" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "隱藏 <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2159,8 +2166,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 msgid "Hostname" msgstr "主機名稱" @@ -2221,7 +2227,7 @@ msgstr "IPv4版" msgid "IPv4 Firewall" msgstr "IPv4防火牆" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 msgid "IPv4 Upstream" msgstr "" @@ -2313,7 +2319,7 @@ msgstr "" msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 msgid "IPv6 Upstream" msgstr "" @@ -2380,7 +2386,7 @@ msgstr "IPv6凌駕IPv4外(第6版)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6凌駕IPv4外(6轉4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 msgid "Identity" msgstr "特性" @@ -2490,10 +2496,14 @@ msgstr "閒置過期" msgid "Inbound:" msgstr "輸入" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "訊息" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Information" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 msgid "Initialization failure" msgstr "" @@ -2514,7 +2524,7 @@ msgstr "" msgid "Install package %q" msgstr "安裝軟體包 %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 msgid "Install protocol extensions..." msgstr "安裝延伸協定中..." @@ -2532,7 +2542,7 @@ msgstr "介面" msgid "Interface %q device auto-migrated from %q to %q." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:355 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 msgid "Interface Configuration" msgstr "介面設定" @@ -2544,12 +2554,12 @@ msgstr "介面預覽" msgid "Interface is reconnecting..." msgstr "介面重連" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Interface name" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:130 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 msgid "Interface not present or not connected yet." msgstr "介面尚未出線或者還沒連上" @@ -2568,15 +2578,15 @@ msgid "Internal Server Error" msgstr "內部伺服器發生錯誤" #: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:37 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 msgid "Invalid" msgstr "無效" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:286 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." msgstr "輸入的VLAN ID無效僅有介於 %d 和 %d的被允許" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "打入的是不正確的VLAN ID!僅有獨一無二的IDs被允許" @@ -2584,7 +2594,7 @@ msgstr "打入的是不正確的VLAN ID!僅有獨一無二的IDs被允許" msgid "Invalid username and/or password! Please try again." msgstr "不正確的用戶名稱和/或者密碼!請再試一次." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 msgid "Isolate Clients" msgstr "" @@ -2596,10 +2606,9 @@ msgid "" msgstr "它顯示您正嘗試更新不適用於這個flash記憶體的映像檔,請檢查確認這個映像檔" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "需要Java腳本" @@ -2628,18 +2637,22 @@ msgstr "核心日誌" msgid "Kernel Version" msgstr "核心版本" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 msgid "Key" msgstr "鑰匙" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 msgid "Key #%d" msgstr "鑰匙 #%d" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 +msgid "KiB" +msgstr "" + #: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 msgid "Kill" msgstr "刪除" @@ -2679,7 +2692,7 @@ msgstr "LLC邏輯鏈結控制層" msgid "Label" msgstr "標籤" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "語言" @@ -2687,7 +2700,7 @@ msgstr "語言" msgid "Language and Style" msgstr "語言和風格" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 msgid "Latency" msgstr "" @@ -2738,19 +2751,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 msgid "Line Uptime" msgstr "" @@ -2764,7 +2777,7 @@ msgid "" "requests to" msgstr "列出 <abbr title=\"Domain Name System\">DNS</abbr> 伺服器以便轉發請求" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2773,7 +2786,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2811,7 +2824,6 @@ msgid "Listening port for inbound DNS queries" msgstr "進入的DNS請求聆聽埠" #: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:128 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 msgid "Load" msgstr "掛載" @@ -2860,7 +2872,7 @@ msgid "Local Startup" msgstr "本地啟動" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "本地時區" @@ -2897,7 +2909,7 @@ msgstr "本地化網路請求" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "日誌輸出層級" @@ -2917,7 +2929,7 @@ msgstr "登入" msgid "Logout" msgstr "登出" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2933,24 +2945,24 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:51 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:76 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-位址" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "MAC-Address Filter" msgstr "MAC-位址過濾" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 msgid "MAC-Filter" msgstr "MAC-過濾" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 msgid "MAC-List" msgstr "MAC-清單" @@ -2996,11 +3008,11 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3034,12 +3046,16 @@ msgstr "釋放出的位址群最大數量" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +msgid "Medium" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 msgid "Memory" msgstr "記憶體" @@ -3048,7 +3064,7 @@ msgstr "記憶體" msgid "Memory usage (%)" msgstr "記憶體使用 (%)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 msgid "Mesh Id" msgstr "" @@ -3060,11 +3076,11 @@ msgstr "" msgid "Metric" msgstr "公測單位" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:152 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 msgid "Mirror monitor port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 msgid "Mirror source port" msgstr "" @@ -3072,16 +3088,16 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "協定 %q 漏失的延伸協定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 msgid "Mobility Domain" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:149 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:365 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Mode" msgstr "模式" @@ -3109,12 +3125,16 @@ msgstr "" msgid "Modem init timeout" msgstr "數據機初始化終結時間" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Monitor" msgstr "監視" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +msgid "More Characters" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 msgid "Mount Entry" msgstr "掛載項目" @@ -3124,7 +3144,7 @@ msgstr "掛載項目" msgid "Mount Point" msgstr "掛載點" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3172,7 +3192,7 @@ msgstr "往下移" msgid "Move up" msgstr "往上移" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "NAS ID" msgstr " 網路附存伺服器ID" @@ -3196,7 +3216,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP伺服器備選" @@ -3214,18 +3234,17 @@ msgstr "新介面的名稱" msgid "Name of the new network" msgstr "新網路的名稱" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:167 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 msgid "Navigation" msgstr "導覽" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 msgid "Netmask" msgstr "網路遮罩" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3249,7 +3268,7 @@ msgstr "" msgid "Network device is not present" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 msgid "Network without interfaces." msgstr "尚無任何介面的網路." @@ -3274,7 +3293,7 @@ msgid "No files found" msgstr "尚未發現任何檔案" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:172 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 msgid "No information available" msgstr "尚無可運用資訊" @@ -3296,10 +3315,9 @@ msgid "No network name specified" msgstr "尚未指定網路名稱" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "尚未設定密碼!" @@ -3327,7 +3345,7 @@ msgstr "尚未指定區碼" msgid "Noise" msgstr "噪音比" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 msgid "Noise Margin (SNR)" msgstr "" @@ -3335,7 +3353,7 @@ msgstr "" msgid "Noise:" msgstr "噪音比:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3348,7 +3366,7 @@ msgstr "" msgid "None" msgstr "無" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "正常" @@ -3361,16 +3379,20 @@ msgstr "尚未發現" msgid "Not associated" msgstr "尚未關聯" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 msgid "Not connected" msgstr "尚未連線" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 +msgid "Not started on boot" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "通知" @@ -3382,7 +3404,7 @@ msgstr "DNS偵錯Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3462,7 +3484,7 @@ msgstr "選項已變更" msgid "Option removed" msgstr "選項已移除" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3569,7 +3591,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Override default interface name" msgstr "" @@ -3581,7 +3603,7 @@ msgstr "在DHCP回應中覆蓋匝道器" msgid "" "Override the netmask sent to clients. Normally it is calculated from the " "subnet that is served." -msgstr "覆蓋傳送到客戶端的網路遮罩. 正常來說它會計算來自魚已存子網路." +msgstr "覆蓋傳送到客戶端的子網路遮罩. 正常來說它會計算來自於已存在的子網路." #: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 msgid "Override the table used for internal routes" @@ -3631,7 +3653,7 @@ msgstr "PIN碼" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 msgid "PMK R1 Push" msgstr "" @@ -3684,8 +3706,8 @@ msgid "Part of zone %q" msgstr "區域 %q 的部分 " #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" @@ -3695,14 +3717,21 @@ msgstr "密碼" msgid "Password authentication" msgstr "密碼驗證" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 msgid "Password of Private Key" msgstr "私人金鑰密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 msgid "Password of inner Private Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Password strength" +msgstr "" + #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" @@ -3711,27 +3740,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 msgid "Path to CA-Certificate" msgstr "CA-證書的路徑" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Path to Client-Certificate" msgstr "用戶端-證書的路徑" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 msgid "Path to Private Key" msgstr "私人金鑰的路徑" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 msgid "Path to inner Private Key" msgstr "" @@ -3809,6 +3838,14 @@ msgstr "請輸入您的用戶名稱和密碼" msgid "Policy" msgstr "策略" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "埠" @@ -3817,11 +3854,11 @@ msgstr "埠" msgid "Port status:" msgstr "埠狀態:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3833,7 +3870,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 msgid "Prefix Delegated" msgstr "" @@ -3856,8 +3893,8 @@ msgstr "假若在給于多次的 LCP 呼叫失敗後終點將死, 使用0忽略 msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 msgid "Prevents client-to-client communication" msgstr "防止用戶端對用戶端的通訊" @@ -3874,7 +3911,7 @@ msgstr "前進" msgid "Processes" msgstr "執行緒" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 msgid "Profile" msgstr "" @@ -3884,8 +3921,8 @@ msgstr "協定." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 msgid "Protocol" msgstr "協定" @@ -3898,7 +3935,7 @@ msgstr "新介面的協定家族" msgid "Protocol support is not installed" msgstr "支援的協定尚未安裝" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "提供NTP伺服器" @@ -3906,7 +3943,7 @@ msgstr "提供NTP伺服器" msgid "Provide new network" msgstr "提供新網路" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "偽裝Ad-Hoc (ahdemo模式)" @@ -3931,7 +3968,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Quality" msgstr "品質" @@ -3941,11 +3978,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 msgid "R1 Key Holder" msgstr "" @@ -3953,8 +3990,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 msgid "RTS/CTS Threshold" msgstr "RTS/CTS門檻" @@ -3968,27 +4009,27 @@ msgstr "接收" msgid "RX Rate" msgstr "接收速率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 msgid "Radius-Accounting-Port" msgstr "Radius-驗証帳號-埠" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 msgid "Radius-Accounting-Secret" msgstr "Radius-合法帳號-密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 msgid "Radius-Accounting-Server" msgstr "Radius-合法帳號-伺服器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 msgid "Radius-Authentication-Port" msgstr "Radius-驗証-埠" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 msgid "Radius-Authentication-Secret" msgstr "Radius-驗証-密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 msgid "Radius-Authentication-Server" msgstr "Radius-驗証-伺服器" @@ -4046,7 +4087,7 @@ msgstr "即時流量" msgid "Realtime Wireless" msgstr "即時無線網路" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 msgid "Reassociation Deadline" msgstr "" @@ -4054,7 +4095,7 @@ msgstr "" msgid "Rebind protection" msgstr "重新綁護" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "重開機" @@ -4072,8 +4113,8 @@ msgstr "重啟您設備的作業系統" msgid "Receive" msgstr "接收" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:324 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 msgid "Receiver Antenna" msgstr "接收天線" @@ -4140,7 +4181,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 msgid "Required" msgstr "" @@ -4163,10 +4204,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4221,8 +4262,8 @@ msgid "Restore backup" msgstr "還原之前備份設定" #: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:25 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 msgid "Reveal/hide password" msgstr "明示/隱藏 密碼" @@ -4269,8 +4310,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:6 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 msgid "Router Password" msgstr "路由器密碼" @@ -4306,7 +4347,7 @@ msgstr "" msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH存取" @@ -4323,7 +4364,7 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 #: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 msgid "SSH-Keys" msgstr "SSH-金鑰" @@ -4331,7 +4372,7 @@ msgstr "SSH-金鑰" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 msgid "SSID" msgstr "基地台服務設定識別碼SSID" @@ -4342,7 +4383,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 msgid "Save" msgstr "保存" @@ -4371,7 +4412,7 @@ msgstr "掃描" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "排程任務" @@ -4406,7 +4447,7 @@ msgid "" "conjunction with failure threshold" msgstr "傳送LCP呼叫請求在這個給予的秒數間隔內, 僅影響關聯到失敗門檻" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 msgid "Separate Clients" msgstr "分隔用戶端" @@ -4441,7 +4482,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "安裝校時同步" @@ -4458,7 +4499,7 @@ msgstr "" msgid "Setup DHCP Server" msgstr "安裝DHCP伺服器" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -4466,7 +4507,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 msgid "Short Preamble" msgstr "" @@ -4489,11 +4530,11 @@ msgstr "關閉這個介面" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:154 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 msgid "Signal" msgstr "信號" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 msgid "Signal Attenuation (SATN)" msgstr "" @@ -4509,7 +4550,7 @@ msgstr "大小" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4518,21 +4559,19 @@ msgstr "" msgid "Skip" msgstr "跳過" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:110 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 msgid "Skip to content" msgstr "跳到內容" -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:109 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 msgid "Skip to navigation" msgstr "跳到導覽" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 msgid "Slot time" msgstr "插槽時間" -#: modules/luci-base/luasrc/model/network.lua:1417 +#: modules/luci-base/luasrc/model/network.lua:1427 msgid "Software VLAN" msgstr "" @@ -4621,7 +4660,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 msgid "Startup" msgstr "啟動" @@ -4641,7 +4680,7 @@ msgstr "靜態租約" msgid "Static Routes" msgstr "靜態路由" -#: modules/luci-base/luasrc/model/network.lua:960 +#: modules/luci-base/luasrc/model/network.lua:966 msgid "Static address" msgstr "靜態位址" @@ -4654,7 +4693,7 @@ msgstr "" "靜態租約是用來指定固定的IP位址和表示的主機名稱給予DHCP用戶端. 它們也需要非動" "態介面設定值以便獲取相應租約的主機服務." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "Station inactivity limit" msgstr "" @@ -4674,6 +4713,10 @@ msgstr "停止" msgid "Strict order" msgstr "嚴謹順序" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 +msgid "Strong" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 msgid "Submit" msgstr "提交" @@ -4699,15 +4742,15 @@ msgstr "Swap交換頁項目" msgid "Switch" msgstr "交換器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:127 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 msgid "Switch %q" msgstr "交換器 %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:126 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 msgid "Switch %q (%s)" msgstr "交換器 %q (%s)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:64 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 msgid "" "Switch %q has an unknown topology - the VLAN settings might not be accurate." msgstr "" @@ -4716,7 +4759,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1415 +#: modules/luci-base/luasrc/model/network.lua:1425 msgid "Switch VLAN" msgstr "" @@ -4732,8 +4775,12 @@ msgstr "" msgid "Switchport activity (%s)" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 +msgid "Sync with NTP-Server" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:34 +#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 msgid "Sync with browser" msgstr "同步瀏覽器" @@ -4758,7 +4805,7 @@ msgstr "系統日誌" msgid "System Properties" msgstr "系統屬性" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "系統日誌緩衝大小" @@ -4967,13 +5014,13 @@ msgstr "選到的協定需要指定到設備上" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "系統正在刪除設定分割並且當完成時將自行重開." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4995,7 +5042,7 @@ msgid "" msgstr "" "以上傳的映像檔不包含支援格式. 請確認您選擇的是針對您的平台採用的通用映像檔." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "設計規劃" @@ -5023,10 +5070,9 @@ msgid "" msgstr "尚未指定設備, 請接上一個網路設備在這\"實體設置\"標籤內" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5109,24 +5155,24 @@ msgid "This page gives an overview over currently active network connections." msgstr "這一頁提供目前正在活動中網路連線的預覽." #: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:27 +#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" msgstr "這部分尚未有任何數值." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "校時同步" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "校時同步尚未設定." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "時區" @@ -5167,7 +5213,7 @@ msgstr "流量" msgid "Transfer" msgstr "傳輸" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "Transmission Rate" msgstr "傳輸速率" @@ -5175,14 +5221,14 @@ msgstr "傳輸速率" msgid "Transmit" msgstr "射頻" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:210 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:272 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 msgid "Transmit Power" msgstr "射頻功率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:317 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:348 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 msgid "Transmitter Antenna" msgstr "射頻天線" @@ -5198,7 +5244,7 @@ msgstr "觸發模式" msgid "Tunnel ID" msgstr "通道ID" -#: modules/luci-base/luasrc/model/network.lua:1420 +#: modules/luci-base/luasrc/model/network.lua:1430 msgid "Tunnel Interface" msgstr "通道介面" @@ -5213,7 +5259,7 @@ msgid "Tx-Power" msgstr "傳送-功率" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "型態" @@ -5272,19 +5318,19 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:964 +#: modules/luci-base/luasrc/model/network.lua:970 msgid "Unknown" msgstr "未知" -#: modules/luci-base/luasrc/model/network.lua:1131 +#: modules/luci-base/luasrc/model/network.lua:1137 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:958 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unmanaged" msgstr "非託管" @@ -5298,7 +5344,6 @@ msgid "Unnamed key" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 @@ -5313,7 +5358,7 @@ msgstr "" msgid "Unsupported modem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:118 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 msgid "Unsupported protocol type." msgstr "不支援的協定型態" @@ -5328,7 +5373,7 @@ msgid "" "compatible firmware image)." msgstr "" "上傳一個sysupgrade-相容的映像檔在這以便替代正執行中的韌體. 勾選\"保持設定\"以" -"保留目前設定值(必須要是OpenWrt/LEDE相容性韌體映像檔)." +"保留目前設定值(必須要是OpenWrt相容性韌體映像檔)." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 msgid "Upload archive..." @@ -5365,8 +5410,8 @@ msgstr "使用DHCP的匝道器" msgid "Use DNS servers advertised by peer" msgstr "使用終端發布的DNS伺服器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:226 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:232 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 msgid "Use ISO/IEC 3166 alpha2 country codes." msgstr "使用Use ISO/IEC 3166 alpha2 國碼." @@ -5472,11 +5517,11 @@ msgstr "" msgid "Used" msgstr "已使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 msgid "Used Key Slot" msgstr "已使用的關鍵插槽" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5504,11 +5549,11 @@ msgstr "虛擬電路多工器VC-Mux" msgid "VDSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 msgid "VLANs on %q" msgstr "VLAN 在 %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 msgid "VLANs on %q (%s)" msgstr "VLAN 在 %q (%s)" @@ -5554,18 +5599,18 @@ msgstr "確認" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 msgid "WDS" msgstr "無線分散系統WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 msgid "WEP Open System" msgstr "WEP 開放系統" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 msgid "WEP Shared Key" msgstr "WEP 共享金鑰" @@ -5573,8 +5618,8 @@ msgstr "WEP 共享金鑰" msgid "WEP passphrase" msgstr "WEP通關密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 msgid "WMM Mode" msgstr "無線多媒體機制" @@ -5582,9 +5627,9 @@ msgstr "無線多媒體機制" msgid "WPA passphrase" msgstr "WPA 密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5608,8 +5653,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "警告" @@ -5617,7 +5662,11 @@ msgstr "警告" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5644,7 +5693,7 @@ msgstr "" msgid "Wi-Fi on (%s)" msgstr "" -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:161 +#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 msgid "Width" msgstr "" @@ -5658,12 +5707,12 @@ msgstr "" msgid "Wireless" msgstr "無線網路" -#: modules/luci-base/luasrc/model/network.lua:1408 +#: modules/luci-base/luasrc/model/network.lua:1418 msgid "Wireless Adapter" msgstr "無線網卡" -#: modules/luci-base/luasrc/model/network.lua:1394 -#: modules/luci-base/luasrc/model/network.lua:1855 +#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1865 msgid "Wireless Network" msgstr "無線網路" @@ -5671,20 +5720,20 @@ msgstr "無線網路" msgid "Wireless Overview" msgstr "無線預覽" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 msgid "Wireless Security" msgstr "無線安全" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is disabled" msgstr "無線被關閉" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 msgid "Wireless is not associated" msgstr "無線未關聯" @@ -5704,7 +5753,7 @@ msgstr "無線網路已啟用" msgid "Write received DNS requests to syslog" msgstr "寫入已接收的DNS請求到系統日誌中" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5722,34 +5771,26 @@ msgstr "" "告: 假如您關閉必要的初始化腳本像\"網路\", 您的設備將可能無法存取!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "在瀏覽器您必須啟用JavaScript否則LuCI無法正常運作." -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:97 -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 "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5760,11 +5801,11 @@ msgstr "任意" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:217 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5817,8 +5858,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "disable" msgstr "關閉" @@ -5877,19 +5918,6 @@ msgstr "假如目標是某個網路" msgid "input" msgstr "輸入" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:192 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:193 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:196 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:197 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:200 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:201 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:204 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:205 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:208 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:209 -msgid "kB" -msgstr "kB" - #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 @@ -5922,7 +5950,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr> 檔案" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "minutes" msgstr "" @@ -5950,20 +5978,18 @@ msgstr "" msgid "not present" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:338 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "關閉" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "開啟" @@ -6007,8 +6033,8 @@ msgstr "" msgid "routed" msgstr "路由" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 msgid "sec" msgstr "" @@ -6029,11 +6055,11 @@ msgstr "" msgid "stateless + stateful" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:344 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 msgid "tagged" msgstr "標籤" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" @@ -6060,7 +6086,7 @@ msgstr "尚未指定" msgid "unspecified -or- create:" msgstr "尚未指定 - 或 -建立:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:341 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 msgid "untagged" msgstr "尚未標籤" @@ -6230,6 +6256,9 @@ msgstr "是的" msgid "« Back" msgstr "« 倒退" +#~ msgid "kB" +#~ msgstr "kB" + #~ msgid "" #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " #~ "authentication." diff --git a/modules/luci-mod-admin-mini/luasrc/model/cbi/mini/wifi.lua b/modules/luci-mod-admin-mini/luasrc/model/cbi/mini/wifi.lua index ec929f1ed9..799211fef4 100644 --- a/modules/luci-mod-admin-mini/luasrc/model/cbi/mini/wifi.lua +++ b/modules/luci-mod-admin-mini/luasrc/model/cbi/mini/wifi.lua @@ -169,6 +169,7 @@ s.addremove = false s:option(Value, "ssid", translate("Network Name (<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>)")) bssid = s:option(Value, "bssid", translate("<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>")) +bssid.datatype = "macaddr" local devs = {} luci.model.uci.cursor():foreach("wireless", "wifi-device", diff --git a/modules/luci-mod-freifunk-community/Makefile b/modules/luci-mod-freifunk-community/Makefile deleted file mode 100644 index ad6c4ce2ef..0000000000 --- a/modules/luci-mod-freifunk-community/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=Freifunk Community Meta-Package -LUCI_DEPENDS:= \ - +iptables-mod-nat-extra +iptables-mod-ipopt +luci-app-splash \ - +olsrd +olsrd-mod-dyn-gw-plain +olsrd-mod-jsoninfo +olsrd-mod-nameservice \ - +olsrd-mod-watchdog +kmod-tun +ip +freifunk-watchdog +luci-app-olsr \ - +luci-app-olsr-services +freifunk-gwcheck +freifunk-mapupdate - -include ../../luci.mk - -# call BuildPackage - OpenWrt buildroot signature - diff --git a/modules/luci-mod-freifunk/Makefile b/modules/luci-mod-freifunk/Makefile deleted file mode 100644 index 70de10879c..0000000000 --- a/modules/luci-mod-freifunk/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI Freifunk module -LUCI_DEPENDS:=+luci-mod-admin-full +luci-lib-json +luci-lib-ipkg +freifunk-firewall +freifunk-common - -include ../../luci.mk - -# call BuildPackage - OpenWrt buildroot signature - diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html b/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html deleted file mode 100644 index f9e882ff30..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html +++ /dev/null @@ -1,84 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> - <title>LuCI - System Upgrade</title> - - <style type="text/css"> - body { - background-color: #CCCCCC; - font-family: sans-serif; - font-size: 90%; - padding-left: 50%; - padding-top: 100px; - } - - h2 { - font-size: 110%; - margin: 5px 5px 0.5em 5px; - border-bottom: 1px dotted #0066CC; - color: #0066CC; - } - - p { - font-size: 95%; - margin: 15px 15px 0.5em 15px; - } - - div { - background-color: #F7F7F7; - border: 1px dotted #000000; - width: 600px; - height: 150px; - margin-left: -300px; - } - - em { - color: #555555; - } - </style> - - <script type="text/javascript"><!-- - var time_remaining = 60 * 25; - var interval = window.setInterval(function() { - if( time_remaining <= 0 ) - { - window.clearInterval(interval); - location.href = 'http://' + location.host + '/'; - } - else - { - var minutes = Math.floor(time_remaining / 60); - var seconds = time_remaining % 60; - var label = document.getElementById('time_remaining'); - - if( label ) - { - label.innerHTML = - ( minutes > 0 ? minutes + 'm ' : '' ) + - seconds + 's'; - } - } - - time_remaining = time_remaining - 1; - }, 1000); - --></script> -</head> - -<body class="lang_en"> - <div> - <h2>Performing Upgrade</h2> - - <p> - The System is flashing now. The procedure can take up to 25 minutes, - please be patient and wait until this page reloads itself. - - <br /><img src="resources/flashing.gif" style="vertical-align:middle; margin:10px" /> - - <em>Remaining time (estimated): <span id="time_remaining">unknown</span></em> - </p> - </div> -</body> - -</html> diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm b/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm deleted file mode 100644 index 9f017c9e72..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/resources/OSMLatLon.htm +++ /dev/null @@ -1,19 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> - -<head> - <title>OpenStreetMap</title> - <script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script> - <script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script> - <script type="text/javascript" src="osm.js"></script> -</head> -<body onload="init();drawmap();" style="padding:0px; margin:0px"> - <div id="map"></div> - <div style="position:absolute; bottom:0%; width:100%; background:url('cbi/black_60.png'); font-size:10px; color:#fff;z-index:1000"> - Map by <a href="http://www.openstreetmap.org" title="www.openstreetmap.org" style="color:#fff;" >openstreetmap.org</a>, License CC-BY-SA -      - <span id="osm"> - Latitude: <input id="osmlat" name="osmlat" type="text" size="20" style="font-size:10px;"> - Longitude: <input id="osmlon" name="osmlon" type="text" size="20" style="font-size:10px;"> - </span> - </div> -</body> diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/resources/flashing.gif b/modules/luci-mod-freifunk/htdocs/luci-static/resources/flashing.gif Binary files differdeleted file mode 100644 index e207fc56a1..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/resources/flashing.gif +++ /dev/null diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/resources/freifunk-map/hna.gif b/modules/luci-mod-freifunk/htdocs/luci-static/resources/freifunk-map/hna.gif Binary files differdeleted file mode 100644 index 818780d153..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/resources/freifunk-map/hna.gif +++ /dev/null diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/resources/freifunk-map/node.gif b/modules/luci-mod-freifunk/htdocs/luci-static/resources/freifunk-map/node.gif Binary files differdeleted file mode 100644 index f64ab162a4..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/resources/freifunk-map/node.gif +++ /dev/null diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/resources/osm.js b/modules/luci-mod-freifunk/htdocs/luci-static/resources/osm.js deleted file mode 100644 index 48ae91cd81..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/resources/osm.js +++ /dev/null @@ -1,130 +0,0 @@ -var map; -var layer_mapnik; -var layer_tah; -var layer_markers; -var PI = Math.PI; -var latfield = ''; -var lonfield = ''; -var latfield_id=''; -var lonfield_id=''; -var centerlon = 10; -var centerlat = 52; -var zoom = 6; - -function lon2merc(lon) { - return 20037508.34 * lon / 180; -} - -function lat2merc(lat) { - lat = Math.log(Math.tan( (90 + lat) * PI / 360)) / PI; - return 20037508.34 * lat; -} - -function merc2lon(lon) { - return lon*180/20037508.34; -}; - -function merc2lat(lat) { - return Math.atan(Math.exp(lat*PI/20037508.34))*360/PI-90; -}; - -OpenLayers.Control.Click = OpenLayers.Class(OpenLayers.Control, { - defaultHandlerOptions: { - 'single': true, - 'double': false, - 'pixelTolerance': 0, - 'stopSingle': false, - 'stopDouble': false - }, - - initialize: function(options) { - this.handlerOptions = OpenLayers.Util.extend( - {}, this.defaultHandlerOptions - ); - OpenLayers.Control.prototype.initialize.apply( - this, arguments - ); - this.handler = new OpenLayers.Handler.Click( - this, { - 'click': this.trigger - }, this.handlerOptions - ); - }, - - trigger: function(e) { - var lonlat = map.getLonLatFromViewPortPx(e.xy); - var lat=merc2lat(lonlat.lat); - var lon=merc2lon(lonlat.lon); - if(parent.document.getElementById(latfield_id)==null){ - latfield=document.getElementById('osmlat'); - }else{ - latfield=parent.document.getElementById(latfield_id); - } - if(parent.document.getElementById(lonfield_id)==null){ - lonfield=document.getElementById('osmlon'); - }else{ - lonfield=parent.document.getElementById(lonfield_id); - } - latfield.value = lat; - lonfield.value = lon; - } -}); - -function init(){ - var field = window.name.substring(0, window.name.lastIndexOf(".")); - if(parent.document.getElementById(field+".latfield")!=null){ - latfield_id = parent.document.getElementById(field+".latfield").value; - document.getElementById('osm').style.display="none"; - } - if(parent.document.getElementById(field+".lonfield")!=null){ - lonfield_id = parent.document.getElementById(field+".lonfield").value; - } - if(parent.document.getElementById(field+".centerlat")!=null){ - centerlat =parseFloat(parent.document.getElementById(field+".centerlat").value); - } - if(parent.document.getElementById(field+".centerlon")!=null){ - centerlon = parseFloat(parent.document.getElementById(field+".centerlon").value); - } - if(parent.document.getElementById(field+".zoom")!=null){ - zoom = parseFloat(parent.document.getElementById(field+".zoom").value); - } -} - -function drawmap() { - OpenLayers.Lang.setCode('de'); - var mapdiv=document.getElementById('map'); - mapdiv.style.height=window.innerHeight+"px"; - mapdiv.style.width=window.innerWidth+"px"; - map = new OpenLayers.Map('map', { - projection: new OpenLayers.Projection("EPSG:900913"), - displayProjection: new OpenLayers.Projection("EPSG:4326"), - controls: [ - new OpenLayers.Control.Navigation(), - new OpenLayers.Control.PanZoomBar()], - maxExtent: - new OpenLayers.Bounds(-20037508.34,-20037508.34, 20037508.34, 20037508.34), - numZoomLevels: 18, - maxResolution: 156543, - units: 'meters' - }); - - layer_mapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik"); - - map.addLayers([layer_mapnik]); - var y =lat2merc(centerlat); - var x =lon2merc(centerlon); - map.setCenter(new OpenLayers.LonLat(x, y), zoom); - - // Check for geolocation support - if(navigator.geolocation){ - navigator.geolocation.getCurrentPosition(function(position){ - var y =lat2merc(position.coords.latitude); - var x =lon2merc(position.coords.longitude); - map.setCenter(new OpenLayers.LonLat(x, y), '17'); - }); - } - - var click = new OpenLayers.Control.Click(); - map.addControl(click); - click.activate(); -} diff --git a/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua b/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua deleted file mode 100644 index adad7508bc..0000000000 --- a/modules/luci-mod-freifunk/luasrc/controller/freifunk/freifunk.lua +++ /dev/null @@ -1,218 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.freifunk.freifunk", package.seeall) - -function index() - local uci = require "luci.model.uci".cursor() - local page - - -- Frontend - page = node() - page.lock = true - page.target = alias("freifunk") - page.subindex = true - page.index = false - - page = node("freifunk") - page.title = _("Freifunk") - page.target = alias("freifunk", "index") - page.order = 5 - page.setuser = "nobody" - page.setgroup = "nogroup" - page.i18n = "freifunk" - page.index = true - - page = node("freifunk", "index") - page.target = template("freifunk/index") - page.title = _("Overview") - page.order = 10 - page.indexignore = true - - page = node("freifunk", "contact") - page.target = template("freifunk/contact") - page.title = _("Contact") - page.order = 15 - - page = node("freifunk", "status") - page.target = template("freifunk/public_status") - page.title = _("Status") - page.order = 20 - page.i18n = "base" - page.setuser = false - page.setgroup = false - - entry({"freifunk", "status.json"}, call("jsonstatus")) - entry({"freifunk", "status", "zeroes"}, call("zeroes"), "Testdownload") - - if nixio.fs.access("/usr/sbin/luci-splash") then - assign({"freifunk", "status", "splash"}, {"splash", "publicstatus"}, _("Splash"), 40) - end - - page = assign({"freifunk", "olsr"}, {"admin", "status", "olsr"}, _("OLSR"), 30) - page.setuser = false - page.setgroup = false - - if nixio.fs.access("/etc/config/luci_statistics") then - assign({"freifunk", "graph"}, {"admin", "statistics", "graph"}, _("Statistics"), 40) - end - - -- backend - assign({"mini", "freifunk"}, {"admin", "freifunk"}, _("Freifunk"), 5) - entry({"admin", "freifunk"}, alias("admin", "freifunk", "index"), _("Freifunk"), 5) - - page = node("admin", "freifunk") - page.target = template("freifunk/adminindex") - page.title = _("Freifunk") - page.order = 5 - - page = node("admin", "freifunk", "basics") - page.target = cbi("freifunk/basics") - page.title = _("Basic Settings") - page.order = 5 - - page = node("admin", "freifunk", "basics", "profile") - page.target = cbi("freifunk/profile") - page.title = _("Profile") - page.order = 10 - - page = node("admin", "freifunk", "basics", "profile_expert") - page.target = form("freifunk/profile_expert") - page.title = _("Profile (Expert)") - page.order = 20 - - page = node("admin", "freifunk", "Index-Page") - page.target = cbi("freifunk/user_index") - page.title = _("Index Page") - page.order = 50 - - page = node("admin", "freifunk", "contact") - page.target = cbi("freifunk/contact") - page.title = _("Contact") - page.order = 15 - - entry({"freifunk", "map"}, template("freifunk-map/frame"), _("Map"), 50) - entry({"freifunk", "map", "content"}, template("freifunk-map/map"), nil, 51) - entry({"admin", "freifunk", "profile_error"}, template("freifunk/profile_error")) -end - -function zeroes() - local string = require "string" - local http = require "luci.http" - local zeroes = string.rep(string.char(0), 8192) - local cnt = 0 - local lim = 1024 * 1024 * 1024 - - http.prepare_content("application/x-many-zeroes") - - while cnt < lim do - http.write(zeroes) - cnt = cnt + #zeroes - end -end - -function jsonstatus() - local root = {} - local sys = require "luci.sys" - local uci = require "luci.model.uci" - local util = require "luci.util" - local http = require "luci.http" - local json = require "luci.json" - local ltn12 = require "luci.ltn12" - local version = require "luci.version" - local webadmin = require "luci.tools.webadmin" - - local cursor = uci.cursor_state() - - local ffzone = webadmin.firewall_find_zone("freifunk") - local ffznet = ffzone and cursor:get("firewall", ffzone, "network") - local ffwifs = ffznet and util.split(ffznet, " ") or {} - - local sysinfo = util.ubus("system", "info") or { } - local boardinfo = util.ubus("system", "board") or { } - - local loads = sysinfo.load or { 0, 0, 0 } - - local memory = sysinfo.memory or { - total = 0, - free = 0, - shared = 0, - buffered = 0 - } - - local swap = sysinfo.swap or { - total = 0, - free = 0 - } - - - root.protocol = 1 - - root.system = { - uptime = { sysinfo.uptime or 0 }, - loadavg = { loads[1] / 65535.0, loads[2] / 65535.0, loads[3] / 65535.0 }, - sysinfo = { - boardinfo.system or "?", - boardinfo.model or "?", - memory.total, - 0, -- former cached memory - memory.buffered, - memory.free, - 0, -- former bogomips - swap.total, - 0, -- former cached swap - swap.free - }, - hostname = boardinfo.hostname - } - - root.firmware = { - luciname=version.luciname, - luciversion=version.luciversion, - distname=version.distname, - distversion=version.distversion - } - - root.freifunk = {} - cursor:foreach("freifunk", "public", function(s) - root.freifunk[s[".name"]] = s - end) - - cursor:foreach("system", "system", function(s) - root.geo = { - latitude = s.latitude, - longitude = s.longitude - } - end) - - root.network = {} - root.wireless = {devices = {}, interfaces = {}, status = {}} - local wifs = root.wireless.interfaces - - for _, vif in ipairs(ffwifs) do - root.network[vif] = cursor:get_all("network", vif) - root.wireless.devices[vif] = cursor:get_all("wireless", vif) - cursor:foreach("wireless", "wifi-iface", function(s) - if s.device == vif and s.network == vif then - wifs[#wifs+1] = s - if s.ifname then - local iwinfo = luci.sys.wifi.getiwinfo(s.ifname) - if iwinfo then - root.wireless.status[s.ifname] = { } - - local _, f - for _, f in ipairs({ - "channel", "txpower", "bitrate", "signal", "noise", - "quality", "quality_max", "mode", "ssid", "bssid", "encryption", "ifname" - }) do - root.wireless.status[s.ifname][f] = iwinfo[f] - end - end - end - end - end) - end - - http.prepare_content("application/json") - ltn12.pump.all(json.Encoder(root):source(), http.write) -end diff --git a/modules/luci-mod-freifunk/luasrc/controller/freifunk/remote_update.lua b/modules/luci-mod-freifunk/luasrc/controller/freifunk/remote_update.lua deleted file mode 100644 index b317ab6b5e..0000000000 --- a/modules/luci-mod-freifunk/luasrc/controller/freifunk/remote_update.lua +++ /dev/null @@ -1,52 +0,0 @@ --- Copyright 2009 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.freifunk.remote_update", package.seeall) - -function index() - if not nixio.fs.access("/usr/sbin/remote-update") then - return - end - - entry({"admin", "system", "remote_update"}, call("act_remote_update"), - _("Freifunk Remote Update"), 90) -end - -function act_remote_update() - if luci.http.formvalue("flash") == "1" then - if luci.http.formvalue("confirm") == "1" then - local nobackup = ( luci.http.formvalue("keepcfg") ~= "1" ) - local noverify = ( luci.http.formvalue("verify") ~= "1" ) - - luci.http.redirect("/luci-static/flashing.html") - - os.execute("start-stop-daemon -S -b -x /usr/sbin/remote-update -- %s%s-s 5 -y" % { - noverify and "-v " or "", - nobackup and "-n " or "" - }) - else - luci.template.render("freifunk/remote_update", {confirm=1}) - end - else - local fd = io.popen("remote-update -c") - local update = { } - - if fd then - while true do - local ln=fd:read("*l") - - if not ln then break - elseif ln:find("Local: ") then update.locvar = ln:match("Local: (%d+)") - elseif ln:find("Remote: ") then update.remver = ln:match("Remote: (%d+)") - elseif ln == "--" then update.info = "" - elseif update.info ~= nil then - update.info = update.info .. ln .. "\n" - end - end - - fd:close() - end - - luci.template.render("freifunk/remote_update", {update=update}) - end -end diff --git a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/basics.lua b/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/basics.lua deleted file mode 100644 index b08366de6c..0000000000 --- a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/basics.lua +++ /dev/null @@ -1,92 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2011 Manuel Munz <freifunk at somakoma de> --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local util = require "luci.util" -local uci = require "luci.model.uci".cursor() -local profiles = "/etc/config/profile_*" - -m = Map("freifunk", translate ("Community")) -c = m:section(NamedSection, "community", "public", nil, translate("These are the basic settings for your local wireless community. These settings define the default values for the wizard and DO NOT affect the actual configuration of the router.")) - -community = c:option(ListValue, "name", translate ("Community")) -community.rmempty = false - -local profile -for profile in fs.glob(profiles) do - local name = uci:get_first(profile, "community", "name") or "?" - community:value(string.gsub(profile, "/etc/config/profile_", ""), name) -end - - -n = Map("system", translate("Basic system settings")) -function n.on_after_commit(self) - luci.http.redirect(luci.dispatcher.build_url("admin", "freifunk", "basics")) -end - -b = n:section(TypedSection, "system") -b.anonymous = true - -hn = b:option(Value, "hostname", translate("Hostname")) -hn.rmempty = false -hn.datatype = "hostname" - -loc = b:option(Value, "location", translate("Location")) -loc.rmempty = false -loc.datatype = "minlength(1)" - -lat = b:option(Value, "latitude", translate("Latitude"), translate("e.g.") .. " 48.12345") -lat.datatype = "float" -lat.rmempty = false - -lon = b:option(Value, "longitude", translate("Longitude"), translate("e.g.") .. " 10.12345") -lon.datatype = "float" -lon.rmempty = false - ---[[ -Opens an OpenStreetMap iframe or popup -Makes use of resources/OSMLatLon.htm and htdocs/resources/osm.js -]]-- - -local class = util.class -local ff = uci:get("freifunk", "community", "name") or "" -local co = "profile_" .. ff - -local deflat = uci:get_first("system", "system", "latitude") or uci:get_first(co, "community", "latitude") or 52 -local deflon = uci:get_first("system", "system", "longitude") or uci:get_first(co, "community", "longitude") or 10 -local zoom = 12 -if ( deflat == 52 and deflon == 10 ) then - zoom = 4 -end - -OpenStreetMapLonLat = luci.util.class(AbstractValue) - -function OpenStreetMapLonLat.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/osmll_value" - self.latfield = nil - self.lonfield = nil - self.centerlat = "" - self.centerlon = "" - self.zoom = "0" - self.width = "100%" --popups will ignore the %-symbol, "100%" is interpreted as "100" - self.height = "600" - self.popup = false - self.displaytext="OpenStreetMap" --text on button, that loads and displays the OSMap - self.hidetext="X" -- text on button, that hides OSMap -end - - osm = b:option(OpenStreetMapLonLat, "latlon", translate("Find your coordinates with OpenStreetMap"), translate("Select your location with a mouse click on the map. The map will only show up if you are connected to the Internet.")) - osm.latfield = "latitude" - osm.lonfield = "longitude" - osm.centerlat = uci:get_first("system", "system", "latitude") or deflat - osm.centerlon = uci:get_first("system", "system", "longitude") or deflon - osm.zoom = zoom - osm.width = "100%" - osm.height = "600" - osm.popup = false - osm.displaytext=translate("Show OpenStreetMap") - osm.hidetext=translate("Hide OpenStreetMap") - -return m, n diff --git a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/contact.lua b/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/contact.lua deleted file mode 100644 index 0a6995b266..0000000000 --- a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/contact.lua +++ /dev/null @@ -1,16 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2011 Manuel Munz <freifunk at somakoma dot de> --- Licensed to the public under the Apache License 2.0. - -m = Map("freifunk", translate("Contact"), translate("Please fill in your contact details below.")) - -c = m:section(NamedSection, "contact", "public", "") - -c:option(Value, "nickname", translate("Nickname")) -c:option(Value, "name", translate("Realname")) -c:option(DynamicList, "homepage", translate("Homepage")) -c:option(Value, "mail", translate("E-Mail")) -c:option(Value, "phone", translate("Phone")) -c:option(TextValue, "note", translate("Notice")).rows = 10 - -return m diff --git a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/profile.lua b/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/profile.lua deleted file mode 100644 index de7caf4c18..0000000000 --- a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/profile.lua +++ /dev/null @@ -1,74 +0,0 @@ --- Copyright 2011-2012 Manuel Munz <freifunk at somakoma dot de> --- Licensed to the public under the Apache License 2.0. - -local uci = require "luci.model.uci".cursor() -local ipkg = require "luci.model.ipkg" -local community = uci:get("freifunk", "community", "name") - -if community == nil then - luci.http.redirect(luci.dispatcher.build_url("admin", "freifunk", "profile_error")) - return -else - community = "profile_" .. community - m = Map(community, translate("Community settings"), translate("These are the settings of your local community.")) - c = m:section(NamedSection, "profile", "community") - - local name = c:option(Value, "name", "Name") - name.rmempty = false - - local homepage = c:option(Value, "homepage", translate("Homepage")) - - local cc = c:option(Value, "country", translate("Country code")) - function cc.cfgvalue(self, section) - return uci:get(community, "wifi_device", "country") - end - function cc.write(self, sec, value) - if value then - uci:set(community, "wifi_device", "country", value) - uci:save(community) - end - end - - local ssid = c:option(Value, "ssid", translate("ESSID")) - ssid.rmempty = false - - local prefix = c:option(Value, "mesh_network", translate("Mesh prefix")) - prefix.datatype = "ip4addr" - prefix.rmempty = false - - local splash_net = c:option(Value, "splash_network", translate("Network for client DHCP addresses")) - splash_net.datatype = "ip4addr" - splash_net.rmempty = false - - local splash_prefix = c:option(Value, "splash_prefix", translate("Client network size")) - splash_prefix.datatype = "range(0,32)" - splash_prefix.rmempty = false - - local ipv6 = c:option(Flag, "ipv6", translate("Enable IPv6")) - ipv6.rmempty = true - - local ipv6_config = c:option(ListValue, "ipv6_config", translate("IPv6 Config")) - ipv6_config:depends("ipv6", 1) - ipv6_config:value("static") - if ipkg.installed ("auto-ipv6-ib") then - ipv6_config:value("auto-ipv6-random") - ipv6_config:value("auto-ipv6-fromv4") - end - ipv6_config.rmempty = true - - local ipv6_prefix = c:option(Value, "ipv6_prefix", translate("IPv6 Prefix"), translate("IPv6 network in CIDR notation.")) - ipv6_prefix:depends("ipv6", 1) - ipv6_prefix.datatype = "ip6addr" - ipv6_prefix.rmempty = true - - local vap = c:option(Flag, "vap", translate("VAP"), translate("Enable a virtual access point (VAP) by default if possible.")) - vap.rmempty = true - - local lat = c:option(Value, "latitude", translate("Latitude")) - lat.datatype = "range(-180, 180)" - lat.rmempty = false - - local lon = c:option(Value, "longitude", translate("Longitude")) - lon.rmempty = false - return m -end diff --git a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/profile_expert.lua b/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/profile_expert.lua deleted file mode 100644 index 22554a66fc..0000000000 --- a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/profile_expert.lua +++ /dev/null @@ -1,32 +0,0 @@ --- Copyright 2011 Manuel Munz <freifunk at somakoma dot de> --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local uci = require "luci.model.uci".cursor() -local community = uci:get("freifunk", "community", "name") - -if community == nil then - luci.http.redirect(luci.dispatcher.build_url("admin", "freifunk", "profile_error")) - return -else - community = "/etc/config/profile_" .. community - f = SimpleForm("community", translate("Community profile"), translate("You can manually edit the selected community profile here.")) - - t = f:field(TextValue, "cop") - t.rmempty = true - t.rows = 30 - function t.cfgvalue() - return fs.readfile(community) or "" - end - - function f.handle(self, state, data) - if state == FORM_VALID then - if data.cop then - fs.writefile(community, data.cop:gsub("\r\n", "\n")) - end - end - return true - end - return f -end - diff --git a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/user_index.lua b/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/user_index.lua deleted file mode 100644 index fe1d8fe7ed..0000000000 --- a/modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/user_index.lua +++ /dev/null @@ -1,30 +0,0 @@ -local fs = require "nixio.fs" -local file = "/www/luci-static/index_user.html" - -m = Map("freifunk", translate("Edit index page"), translate("You can display additional content on the public index page by inserting valid XHTML in the form below.<br />Headlines should be enclosed between <h2> and </h2>.")) - -s = m:section(NamedSection, "community", "public", "") -s.anonymous = true - -di = s:option(Flag, "DefaultText", translate("Disable default content"), translate("If selected then the default content element is not shown.")) -di.enabled = "disabled" -di.disabled = "enabled" -di.rmempty = false - -t = s:option(TextValue, "_text") -t.rmempty = true -t.rows = 20 - -function t.cfgvalue() - return fs.readfile(file) or "" -end - -function t.write(self, section, value) - return fs.writefile(file, value) -end - -function t.remove(self, section) - return fs.unlink(file) -end - -return m diff --git a/modules/luci-mod-freifunk/luasrc/view/cbi/osmll_value.htm b/modules/luci-mod-freifunk/luasrc/view/cbi/osmll_value.htm deleted file mode 100644 index 78b4dff91f..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/cbi/osmll_value.htm +++ /dev/null @@ -1,55 +0,0 @@ -<%# -cc-by-sa Andreas Pittrich <andreas.pittrich@web.de> -in behalf of the german pirate party (Piratenpartei) -www.piratenpartei.de - -$Id$ - --%> -<%+cbi/valueheader%> - - <% if self:cfgvalue(section) ~= false then %> - <% if self.latfield and self.lonfield then %> - <input type="hidden" <%= attr("value", string.format('cbid.%s.%s.%s', self.config, section, self.latfield))..attr("id", cbid..".latfield")..attr("name", cbid..".latfield")%>/> - <input type="hidden" <%= attr("value", string.format('cbid.%s.%s.%s', self.config, section, self.lonfield))..attr("id", cbid..".lonfield")..attr("name", cbid..".lonfield")%>/> - <% end %> - <input type="hidden" <%= attr("value", self.centerlat)..attr("id", cbid..".centerlat")..attr("name", cbid..".centerlat")%>/> - <input type="hidden" <%= attr("value", self.centerlon)..attr("id", cbid..".centerlon")..attr("name", cbid..".centerlon")%>/> - <input type="hidden" <%= attr("value", self.zoom)..attr("id", cbid..".zoom")..attr("name", cbid..".zoom")%>/> - <% end %> - - <% if self.popup then %> - <input class="cbi-button cbi-input-button" type="button"<%= attr("name", cbid..".button")..attr("id", cbid..".button")..attr("value", self.displaytext)%> - onclick=" - popup=window.open('/luci-static/resources/OSMLatLon.htm', '<%=cbid%>.window', 'innerWidth=<%=self.width%>, innerHeight=<%=self.height%>, location=no, menubar=no, scrollbars=no, status=no, toolbar=no'); - popup.focus(); - " - /> - </div> - <div> - <% else %> - <input class="cbi-button cbi-input-button" type="button"<%= attr("name", cbid..".displayosm")..attr("id", cbid..".displayosm")..attr("value", self.displaytext)%> - onclick=" - document.getElementById('<%=cbid..".hideosm"%>').style.display='inline'; - document.getElementById('<%=cbid..".displayosm"%>').style.display='none'; - for(var i = 0; Math.min(i, window.frames.length)!=window.frames.lengths; i++){ - if(frames[i].name=='<%=cbid..".iframe"%>'){ - document.getElementById('<%=cbid..".iframediv"%>').style.display='block'; - frames[i].location.href='/luci-static/resources/OSMLatLon.htm'; - } - } - " - /> - <input class="cbi-button cbi-input-button" style="display:none" type="button"<%= attr("name", cbid..".hideosm")..attr("id", cbid..".hideosm")..attr("value", self.hidetext)%> - onclick=" - document.getElementById('<%=cbid..".displayosm"%>').style.display='inline'; - document.getElementById('<%=cbid..".hideosm"%>').style.display='none'; - document.getElementById('<%=cbid..".iframediv"%>').style.display='none'; - " - /> - </div> - <div class="cbi-value-osmiframesection" id="<%=cbid..".iframediv"%>" style="display:none"> - <iframe src="" <%= attr("id", cbid..".iframe")..attr("name", cbid..".iframe")..attr("width", self.width)..attr("height", self.height)%> frameborder="0" scrolling="no"></iframe> - <%end%> - -<%+cbi/valuefooter%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk-map/frame.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk-map/frame.htm deleted file mode 100644 index bd936ac705..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk-map/frame.htm +++ /dev/null @@ -1,29 +0,0 @@ -<%+header%> - -<% - local has_latlon = false - local uci = require "luci.model.uci".cursor() - uci:foreach("olsrd", "LoadPlugin", function(s) - if s.library == "olsrd_nameservice" and s.latlon_file then - has_latlon = true - end - end) -%> - -<% if has_latlon then %> - <iframe style="width:100%; height:640px; border:none" src="<%=url("freifunk/map/content")%>"></iframe> - <h3><%:Legend%>:</h3> - <ul> - <li><strong><span style="color:#00cc00"><%:Green%></span></strong>:<%:Very good (ETX < 2)%></li> - <li><strong><span style="color:#ffcb05"><%:Yellow%></span></strong>:<%:Good (2 < ETX < 4)%></li> - <li><strong><span style="color:#ff6600"><%:Orange%></span></strong>:<%:Still usable (4 < ETX < 10)%></li> - <li><strong><span style="color:#bb3333"><%:Red%></span></strong>:<%:Bad (ETX > 10)%></li> - </ul> - -<% else %> - <h2><%:Map Error%></h2> - <p><%_The OLSRd service is not configured to capture position data from the network.<br /> - Please make sure that the nameservice plugin is properly configured and that the <em>latlon_file</em> option is enabled.%></p> -<% end %> -<%+footer%> - diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk-map/map.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk-map/map.htm deleted file mode 100644 index f69401d6e3..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk-map/map.htm +++ /dev/null @@ -1,118 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> - <head> - <title>Map</title> - </head> - - <body style="margin:0"> - <script src="//dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1&s=1" type="text/javascript"></script> - <script type="text/javascript"> - var alias = new Array; - var points = new Array; - var unkpos = new Array; - var lineid = 0; - onload=new Function("if(null!=window.ffmapinit)ffmapinit();"); - - function Mid(mainip,aliasip) - { - alias[aliasip]=mainip; - } - - function Node(mainip,lat,lon,ishna,hnaip,name) - { - points[mainip] = new VELatLong(lat, lon); - map.AddPushpin(new VEPushpin(mainip, points[mainip], - '<%=luci.config.main.resourcebase%>/freifunk-map/'+(ishna?'hna':'node')+'.gif', 'Node:'+name, - '<br><img src="<%=luci.config.main.resourcebase%>/freifunk-map/'+(ishna?'hna':'node')+'.gif">'+ - '<br>IP:'+mainip+'<br>DefGW:'+hnaip)); - } - - function Self(mainip,lat,lon,ishna,hnaip,name) - { - //map.SetDashboardSize(VEDashboardSize.Small); - map.LoadMap(new VELatLong(lat, lon), 15, VEMapStyle.Hybrid); - map.SetScaleBarDistanceUnit(VEDistanceUnit.Kilometers); - map.ShowMiniMap(14, 474); - Node(mainip,lat,lon,ishna,hnaip,name); - } - - function Link(fromip,toip,lq,nlq,etx) - { - if (0==lineid && null!=window.ffmapstatic) ffmapstatic(); - if (null != alias[toip]) toip = alias[toip]; - if (null != alias[fromip]) fromip = alias[fromip]; - if (null != points[fromip] && null != points[toip]) - { - var color; - var red = 240; - var green = 0; - var blue = 0; - var w = 1 - - if (etx < 100) {red=252;green=102;blue=0;w=2}; - if (etx < 10) {red=255;green=203;blue=5;w=3}; - if (etx < 4) {red=240;green=255;blue=0;w=4}; - if (etx < 2) {red=0;green=204;blue=0;w=5}; - if (etx < 1) {red=80;green=0;blue=0;w=1}; - - map.AddPolyline(new VEPolyline('id'+lineid, [points[fromip], points[toip]], - new VEColor(red, green, blue, 0.5), w)); - - - } - else - { - if (null == points[toip]) unkpos[toip] = ''; - if (null == points[fromip]) unkpos[fromip] = ''; - } - lineid++; - } - - function PLink(fromip,toip,lq,nlq,etx,lata,lona,ishnaa,latb,lonb,ishnab) - { - Link(fromip,toip,lq,nlq,etx); - } - - function ffmapinit() - { - if(null!=window.map)map.Dispose(); - - var INFINITE = 99.99; - - map = new VEMap('ffmap'); - <% - local fd - local uci = require "luci.model.uci".cursor() - - uci:foreach("olsrd", "LoadPlugin", function(s) - if s.library == "olsrd_nameservice" and s.latlon_file then - fd = io.open(s.latlon_file) - end - end) - - if fd then - local data = fd:read("*a") - fd:close() - - if data then - local line - for line in data:gmatch("[^\n]+") do - if line:match(";$") then - write(line .. "\n") - else - break - end - end - end - end - %> - } - - function ffgoto(ip) - { - map.SetCenter(points[ip]); - } - </script> - <div id="ffmap" style="position:relative; width:100%; height:640px;"></div> - </body> -</html> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/adminindex.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/adminindex.htm deleted file mode 100644 index e0252ba891..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/adminindex.htm +++ /dev/null @@ -1,51 +0,0 @@ -<%+header%> -<% -local uci = require "luci.model.uci".cursor() -local contact = uci:get_all("freifunk", "contact") -local contacturl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "contact") -local hostname = uci:get_first ("system", "system", "hostname") -local latitude = uci:get_first ("system", "system", "latitude") -local longitude = uci:get_first ("system", "system", "longitude") -local location = uci:get_first ("system", "system", "location") -local basicsurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "basics") -local nickname, name, mail -if not contact then - nickname, name, mail = "" -else - nickname = contact.nickname - name = contact.name - mail = contact.mail -end - -%> - -<h2><%:Freifunk Overview%></h2> - -<%:These pages will assist you in setting up your router for Freifunk or similar wireless community networks.%> -<p /> - -<% if not (hostname and latitude and longitude and location) then%> -<div class="error"> - <%:Basic settings are incomplete. Please go to%> <a href='<%=basicsurl%>'><%:Basic settings%></a> <%:and fill out all required fields.%> -</div> -<%end%> -<p /> - -<% if not (nickname and name and mail) then%> -<div class="error"> - <%:Contact information is incomplete. Please go to%> <a href='<%=contacturl%>'><%:Contact%></a> <%:and fill out all required fields.%> - <p /> -</div> -<%end%> - -<% uci:foreach("wireless", "wifi-device", function(section) - local device = section[".name"] - local url = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "network", "wireless") - if section.diversity ~= "0" and section.disabled ~= "1" and section.type ~= "mac80211" then - print('<div class="error">' .. translate("Diversity is enabled for device") .. ' <b>' .. section[".name"] .. '</b>. ' - .. translate("Go to") .. ' <a href="' .. url .. '">' .. translate("wireless settings") .. '</a> ' .. - translate("to disable it.") .. '</div><p />') - end -end) %> - -<%+footer%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm deleted file mode 100644 index dca35376cb..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/contact.htm +++ /dev/null @@ -1,64 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Copyright 2011 Manuel Munz <freifunk at somakoma dot de> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -<% -local uci = require "luci.model.uci".cursor() -local contact = uci:get_all("freifunk", "contact") -local nickname, name, mail, phone, location, note -local lon = uci:get_first("system", "system", "longitude") -local lat = uci:get_first("system", "system", "latitude") - -if not contact then - nickname, name, homepage, mail, phone, location, note = "" -else - nickname = contact.nickname or "" - name = contact.name or "" - homepage = contact.homepage or {} - mail = contact.mail or "" - phone = contact.phone or "" - location = uci:get_first("system", "system", "location") or contact.location - note = contact.note or "" -end -%> - -<h2 name="content"><%:Contact%></h2> - -<fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section"> -<legend><%:Operator%></legend> - <div class="table" cellspacing="10" width="100%" style="text-align:left"> - <div class="tr"><div class="th" width="33%"><%:Nickname%>:</div><div class="td"><%=nickname%></div></div> - <div class="tr"><div class="th" width="33%"><%:Realname%>:</div><div class="td"><%=name%></div></div> - <div class="tr"><div class="th" width="33%"><%:Homepage%>:</div><div class="td"> - <% for k, v in ipairs(homepage) do %> - <a href="<%=v%>"><%=v%></a><br /> - <% end %> - </div></div> - <div class="tr"><div class="th" width="33%"><%:E-Mail%>:</div><div class="td"><a href="mailto:<%=mail%>"><%=mail%></a></div></div> - <div class="tr"><div class="th" width="33%"><%:Phone%>:</div><div class="td"><%=phone%></div></div> - </div> -</fieldset> - -<fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section"> -<legend><%:Location%></legend> - <div class="table" cellspacing="10" width="100%" style="text-align:left"> - <div class="tr"><div class="th" width="33%"><%:Location%>:</div><div class="td"><%=location%></div></div> - <div class="tr"><div class="th" width="33%"><%:Coordinates%>:</div><div class="td"><%=lat%> <%=lon%> (<a href="<%=pcdata(luci.dispatcher.build_url("freifunk/map"))%>"><%:Show on map%>)</a></div></div> - </div> -</fieldset> - -<% if note then %> -<fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section"> -<legend><%:Notice%></legend> - <div class="table" cellspacing="10" width="100%" style="text-align:left"> - <div class="tr"><div class="td"><%=note%></div></div> - </div> -</fieldset> -<%end%> - -<%+footer%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/index.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/index.htm deleted file mode 100644 index 3134f0b1b9..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/index.htm +++ /dev/null @@ -1,84 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -<% -local uci = require "luci.model.uci".cursor() -local tpl = require "luci.template" -local fs = require "nixio.fs" -local ff = {} -local ff = uci:get_all("freifunk") - -if not ff or not ff.community.name then - community = "Freifunk" - DefaultText = "" - nickname = "No Nickname set" -else - community = ff.community.name - DefaultText = ff.community.DefaultText - nickname = ff.contact.nickname -end - -local co = "profile_" .. community ---local community = uci:get_first(co, "community", "name") or "Freifunk" -local url = uci:get_first(co, "community", "homepage") or "http://www.freifunk.net" - - -local usertext = fs.readfile("/www/luci-static/index_user.html") - -if DefaultText ~= "disabled" then - - defaulttext = '<h2><a id="content" name="content">'.. - (translate("Hello and welcome in the network of")).. - ' '.. - (community or "Freifunk Deutschland").. - '!</a></h2><p>'.. - translate("We are an initiative to establish a free, independent and open wireless mesh network.").. - '<br />'.. - translate("This is the access point").. - ' '.. - luci.sys.hostname().. - '. '.. - translate("It is operated by").. - ' <a href="'.. - luci.dispatcher.build_url("freifunk", "contact").. - '">'.. - (nickname or translate("Please set your contact information")).. - '</a>.</p><p>'.. - translate("You can find further information about the global Freifunk initiative at").. - ' <a href="http://freifunk.net">Freifunk.net</a>.<br />'.. - translate("If you are interested in our project then contact the local community").. - ' <a href="'..url..'">'..community..'</a>.</p><p><strong>'.. - translate("Notice").. - '</strong>: '.. - translate("Internet access depends on technical and organisational conditions and may or may not work for you.").. - '</p>' -end -%> - -<%=defaulttext%> -<%=usertext%> - -<% --- add custom widgets from view/freifunk/widgets -local widgets = {} -local dir = "/usr/lib/lua/luci/view/freifunk/widgets" - -uci:foreach("freifunk-widgets", "widget", - function(s) - if s.enabled == "1" then - table.insert(widgets, s) - end - end) - -for k, v in ipairs(widgets) do - if v['template'] and fs.access(dir .. "/" .. v['template'] .. "/main.htm") then - tpl.render("freifunk/widgets/" .. v['template'] .. "/main", { data = v }) - end -end - -%> -<%+footer%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/profile_error.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/profile_error.htm deleted file mode 100644 index 984fa0acfc..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/profile_error.htm +++ /dev/null @@ -1,11 +0,0 @@ -<%+header%> - -<% -local profileurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "basics") -%> - -<h2><%:Error%></h2> -<%:You need to select a profile before you can edit it. To select a profile go to%> <a href='<%=profileurl%>'><%:Basic settings%></a>. -<p/> - -<%+footer%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm deleted file mode 100644 index 572f8585d1..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/public_status.htm +++ /dev/null @@ -1,363 +0,0 @@ -<% -local utl = require "luci.util" -local sys = require "luci.sys" -local twa = require "luci.tools.webadmin" -local ip = require "luci.ip" - --- System - -local sysinfo = utl.ubus("system", "info") or { } -local boardinfo = utl.ubus("system", "board") or { } - -local loads = sysinfo.load or { 0, 0, 0 } -local meminfo = sysinfo.memory or { - total = 0, - free = 0, - buffered = 0, - shared = 0 -} - -local uptime = twa.date_format(sysinfo.uptime or 0) -local time = os.date("%a, %d %b %Y, %H:%M:%S") -local load = string.format("%.2f, %.2f, %.2f", loads[1] / 65535.0, loads[2] / 65535.0, loads[3] / 65535.0) - -local mem = string.format( - "%.2f MB (%.2f %s, %.2f %s, %.2f %s)", - meminfo.total / 1024 / 1024, - (meminfo.total - meminfo.free) / 1024 / 1024, - tostring(i18n.translate("used")), - meminfo.free / 1024 / 1024, - tostring(i18n.translate("free")), - meminfo.buffered / 1024 / 1024, - tostring(i18n.translate("buffered")) -) - -local interval = 5 - --- wireless -local ntm = require "luci.model.network".init() -local devices = ntm:get_wifidevs() -local netlist = { } -local netdevs = { } -local dev -for _, dev in ipairs(devices) do - local net - for _, net in ipairs(dev:get_wifinets()) do - netlist[#netlist+1] = net:ifname() - netdevs[net:ifname()] = dev:name() - end -end -local has_iwinfo = pcall(require, "iwinfo") - - --- Find default routes - -local _, r, def4, def6 - -for _, r in ipairs(ip.routes({ type = 1, dest_exact = "0.0.0.0/0" })) do - def4 = { - gateway = r.gw:string(), - dest = r.dest:string(), - dev = r.dev, - metr = r.metric or 0 - } - break -end - -for _, r in ipairs(ip.routes({ type = 1, dest_exact = "::/0" })) do - def6 = { - gateway = r.gw:string(), - dest = r.dest:string(), - dev = r.dev, - metr = r.metric or 0 - } - break -end - - -if luci.http.formvalue("status") == "1" then - local rv = { } - for dev in pairs(netdevs) do - local j = { id = dev } - local iw = luci.sys.wifi.getiwinfo(dev) - if iw then - local f - for _, f in ipairs({ - "channel", "txpower", "bitrate", "signal", "noise", - "quality", "quality_max", "mode", "ssid", "bssid", "encryption", "ifname" - }) do - j[f] = iw[f] - end - end - rv[#rv+1] = j - end - - - rv[#rv+1] = { - time = time, - uptime = uptime, - load = load, - mem = mem, - defroutev4 = def4, - defroutev6 = def6 - } - - luci.http.prepare_content("application/json") - luci.http.write_json(rv) - return -end --%> - -<%+header%> - - -<script type="text/javascript">//<![CDATA[ - XHR.poll(<%=interval%> , '<%=REQUEST_URI%>', { status: 1 }, - function(x, st) - { - if (st) - { - for( var i = 0; i < st.length; i++ ) - { - var iw = st[i]; - var is_assoc = (iw.bssid && iw.channel); - var p = (100 / iw.quality_max * iw.quality); - var q = is_assoc ? p : -1; - - var icon; - if (q < 0) - icon = "<%=resource%>/icons/signal-none.png"; - else if (q == 0) - icon = "<%=resource%>/icons/signal-0.png"; - else if (q < 25) - icon = "<%=resource%>/icons/signal-0-25.png"; - else if (q < 50) - icon = "<%=resource%>/icons/signal-25-50.png"; - else if (q < 75) - icon = "<%=resource%>/icons/signal-50-75.png"; - else - icon = "<%=resource%>/icons/signal-75-100.png"; - - var power = document.getElementById(iw.id + '-txpower'); - if (power) - power.innerHTML = String.format('%s dbm', iw.txpower); - - var signal = document.getElementById(iw.id + '-signal'); - if (signal) - signal.innerHTML = String.format( - '<img src="%s" title="Signal: %s db / Noise: %s db" alt="Signal Quality" />', - icon, iw.signal, iw.noise - ); - - var bitrate = document.getElementById(iw.id + '-bitrate'); - if (bitrate) - bitrate.innerHTML = String.format('%s Mb/s', iw.bitrate ? iw.bitrate / 1000 : '?'); - - var ssid = document.getElementById(iw.id + '-ssid'); - if (ssid) - ssid.innerHTML = iw.ssid; - - var bssid = document.getElementById(iw.id + '-bssid'); - if (bssid) - bssid.innerHTML = iw.bssid; - - var channel = document.getElementById(iw.id + '-channel'); - if (channel) - channel.innerHTML = iw.channel; - - var mode = document.getElementById(iw.id + '-mode'); - if (mode) - mode.innerHTML = iw.mode; - } - - i = st.length - 1 - var u - - if (u = document.getElementById('dynuptime')) - u.innerHTML = st[i].uptime; - - if (u = document.getElementById('dynload')) - u.innerHTML = st[i].load; - - if (u = document.getElementById('dynmem')) - u.innerHTML = st[i].mem; - - if (u = document.getElementById('dyntime')) - u.innerHTML = st[i].time; - - if (st[i].defroutev4) - { - if (u = document.getElementById('v4dst')) - u.innerHTML = st[i].defroutev4.dest; - - if (u = document.getElementById('v4gw')) - u.innerHTML = st[i].defroutev4.gateway; - - if (u = document.getElementById('v4dev')) - u.innerHTML = st[i].defroutev4.dev; - - if (u = document.getElementById('v4metr')) - u.innerHTML = st[i].defroutev4.metr; - } - - if (st[i].defroutev6) - { - if (u = document.getElementById('v6dst')) - u.innerHTML = st[i].defroutev6.dest; - - if (u = document.getElementById('v6gw')) - u.innerHTML = st[i].defroutev6.gateway; - - if (u = document.getElementById('v6dev')) - u.innerHTML = st[i].defroutev6.dev; - - if (u = document.getElementById('v6metr')) - u.innerHTML = st[i].defroutev6.metr; - } - } - } - ); -//]]></script> - -<div class="cbi-map"> - <h2><%:System%></h2> - <div class="cbi-section-node"> - <div class="cbi-value"><label class="cbi-value-title"><%:System%></label><div class="cbi-value-field"><%=boardinfo.system or "?"%></div></div> - <div class="cbi-value"><label class="cbi-value-title"><%:Model%></label><div class="cbi-value-field"><%=boardinfo.model or "?"%></div></div> - <div class="cbi-value"><label class="cbi-value-title"><%:Load%></label><div class="cbi-value-field" id="dynload"><%=load%></div></div> - <div class="cbi-value"><label class="cbi-value-title"><%:Memory%></label><div class="cbi-value-field" id="dynmem"><%=mem%></div></div> - <div class="cbi-value"><label class="cbi-value-title"><%:Local Time%></label><div class="cbi-value-field" id="dyntime"><%=time%></div></div> - <div class="cbi-value"><label class="cbi-value-title"><%:Uptime%></label><div class="cbi-value-field" id="dynuptime"><%=uptime%></div></div> - </div> -</div> - -<% if devices[1] then %> - -<div class="cbi-map"> - <h2><%:Wireless Overview%></h2> - - <% if not has_iwinfo then %> - <div class="alert-message warning"> - <h4><%:Package libiwinfo required!%></h4> - <p><%_The <em>libiwinfo</em> package is not installed. You must install this component for working wireless configuration!%></p> - </div> - <% end %> - - <div class="cbi-section"> - <div class="cbi-section-node"> - <div class="table cbi-section-table"> - <div class="tr cbi-section-table-titles"> - <div class="th cbi-section-table-cell"><%:Signal%></div> - <div class="th cbi-section-table-cell"><%:Bitrate%></div> - <div class="th cbi-section-table-cell"><%:SSID%></div> - <div class="th cbi-section-table-cell"><%:BSSID%></div> - <div class="th cbi-section-table-cell"><%:Channel%></div> - <div class="th cbi-section-table-cell"><%:Mode%></div> - <div class="th cbi-section-table-cell"><%:TX%>-<%:Power%></div> - <div class="th cbi-section-table-cell"><%:Interface%></div> - </div> - <% - for _, dev in ipairs(devices) do - local net - for _, net in ipairs(dev:get_wifinets()) do - netlist[#netlist+1] = net:ifname() - netdevs[net:ifname()] = dev:name() - - if net.iwinfo.signal and net.iwinfo.bssid then - local signal = net.iwinfo.signal or "N/A" - local noise = net.iwinfo.noise or "N/A" - local q = net.iwinfo.quality or "0" - local qmax = net.iwinfo.quality_max or "100" - local qperc = q / qmax * 100 - - if qperc == 0 then - icon = "signal-none.png" - elseif qperc < 26 then - icon = "signal-0-25.png" - elseif qperc < 51 then - icon = "signal-25-50.png" - elseif qperc < 76 then - icon = "signal-50-75.png" - elseif qperc < 100 then - icon = "signal-75-100.png" - else - icon = "signal-0.png" - end - - signal_string = "<img src='"..resource.."/icons/"..icon.."' title='Signal: "..signal.." db / Noise: "..noise.." db' alt='Signal Quality'></img>" - - local ssid = net.iwinfo.ssid or "N/A" - local bssid = net.iwinfo.bssid or "N/A" - local chan = net.iwinfo.channel or "N/A" - local mode = net.iwinfo.mode or "N/A" - local txpwr = net.iwinfo.txpower or "N/A" - if txpwr ~= "N/A" then - txpwr = txpwr.." dbm" - end - local bitrate = net.iwinfo.bitrate or "N/A" - if bitrate ~= "N/A" then - bitrate = ( bitrate / 1000 ).."Mb/s" - end - local interface = net.iwinfo.ifname or "N/A" - %> - <div class="tr cbi-section-table-row cbi-rowstyle-1"> - <div class="td cbi-value-field" id="<%=net:ifname()%>-signal"><%=signal_string%></div> - <div class="td cbi-value-field" id="<%=net:ifname()%>-bitrate"><%=bitrate%></div> - <div class="td cbi-value-field" id="<%=net:ifname()%>-ssid"><%=ssid%></div> - <div class="td cbi-value-field" id="<%=net:ifname()%>-bssid"><%=bssid%></div> - <div class="td cbi-value-field" id="<%=net:ifname()%>-channel"><%=chan%></div> - <div class="td cbi-value-field" id="<%=net:ifname()%>-mode"><%=mode%></div> - <div class="td cbi-value-field" id="<%=net:ifname()%>-txpower"><%=txpwr%></div> - <div class="td cbi-value-field"><%=interface%></div> - </div> - <% end - end - end %> - </div> - </div> - </div> -</div> -<% end %> - -<div class="cbi-map"> - <h2><%:Default routes%></h2> - <div class="cbi-section"> - <div class="cbi-section-node"> - -<% if not def4 and not def6 then %> - <%:No default routes known.%> -<%else%> - <div class="table cbi-section-table"> - <div class="tr cbi-section-table-titles"> - <div class="th cbi-section-table-cell"><%:Network%></div> - <div class="th cbi-section-table-cell"><%:Interface%></div> - <div class="th cbi-section-table-cell"><%:Gateway%></div> - <div class="th cbi-section-table-cell"><%:Metric%></div> - </div> - - <% if def4 then %> - <div class="tr cbi-section-table-row cbi-rowstyle-1"> - <div class="td cbi-value-field" id="v4dst"><%=def4.dest%></div> - <div class="td cbi-value-field" id="v4dev"><%=def4.dev%></div> - <div class="td cbi-value-field" id="v4gw"><%=def4.gateway%></div> - <div class="td cbi-value-field" id="v4metr"><%=def4.metr%></div> - </div> - - <% end - if def6 then %> - - <div class="tr cbi-section-table-row cbi-rowstyle-2"> - <div class="td cbi-value-field" id="v6dst"><%=def6.dest%></div> - <div class="td cbi-value-field" id="v6dev"><%=def6.dev%></div> - <div class="td cbi-value-field" id="v6gw"><%=def6.gateway%></div> - <div class="td cbi-value-field" id="v6metr"><%=def6.metr%></div> - </div> - - <% end %> - - </div> -<% end %> - </div> - </div> -</div> -<%+footer%> diff --git a/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm b/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm deleted file mode 100644 index f087472d31..0000000000 --- a/modules/luci-mod-freifunk/luasrc/view/freifunk/remote_update.htm +++ /dev/null @@ -1,53 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -<h2><%:Freifunk Remote Update%></h2> - -<p><%:Check for new firmware versions and perform automatic updates.%></p> - -<% if update then %> - - <% if update.info then %> - <strong><%:Update available!%></strong> - <br /><br /> - <pre><%=update.info%></pre><br /> - <% else %> - <strong><%:The installed firmware is the most recent version.%></strong> - <br /><br /> - <% end %> - - <p> - <form method="post" action="" class="inline"> - <input type="hidden" name="flash" value="1" /> - <input type="submit" class="cbi-button cbi-button-apply" value="<%:Start Upgrade%>" /> - </form> - </p> - -<% elseif confirm then %> - - <strong><%:Update Settings%></strong> - <br /><br /> - - <p><form method="post" action="" class="inline"> - <input type="hidden" name="flash" value="1" /> - <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%>" /> - </form></p> - -<% end %> - -<%+footer%> diff --git a/modules/luci-mod-freifunk/po/ca/freifunk.po b/modules/luci-mod-freifunk/po/ca/freifunk.po deleted file mode 100644 index 338c688282..0000000000 --- a/modules/luci-mod-freifunk/po/ca/freifunk.po +++ /dev/null @@ -1,407 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2014-07-18 00:15+0200\n" -"Last-Translator: Alex <alexhenrie24@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Dolent (ETX > 10)" - -msgid "Basic Settings" -msgstr "Ajusts bàsics" - -msgid "Basic settings" -msgstr "Ajusts bàsics" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Els ajusts bàsics estan incomplets. Si us plau, aneu a" - -msgid "Basic system settings" -msgstr "Ajusts de sistema bàsics" - -msgid "Bitrate" -msgstr "Velocitat de bits" - -msgid "Channel" -msgstr "Canal" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Busca versions de microprogramari noves i realitza actualitzacions " -"automàtiques." - -msgid "Client network size" -msgstr "Mida de xarxa client" - -msgid "Community" -msgstr "Comunitat" - -msgid "Community profile" -msgstr "Perfil de comunitat" - -msgid "Community settings" -msgstr "Ajusts de comunitat" - -msgid "Confirm Upgrade" -msgstr "Confirma actualització" - -msgid "Contact" -msgstr "Contacte" - -msgid "Contact information is incomplete. Please go to" -msgstr "La informació de contacte està incompleta. Si us plau, aneu a" - -msgid "Coordinates" -msgstr "Coordenades" - -msgid "Country code" -msgstr "Codi de país" - -msgid "Default routes" -msgstr "Rutes per defecte" - -msgid "Disable default content" -msgstr "Deshabilita el contingut per defecte" - -msgid "Diversity is enabled for device" -msgstr "La diversitat està habilitada en el dispositiu" - -msgid "E-Mail" -msgstr "Adreça electrònica" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Edita la pàgina d'índex" - -msgid "Enable IPv6" -msgstr "Habilita IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "Habilita un punt d'accés virtual (VAP) per defecte si és possible." - -msgid "Error" -msgstr "Error" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Troba les vostres coordenades amb l'OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Visió de conjunt del Freifunk" - -msgid "Freifunk Remote Update" -msgstr "Actualització remota del Freifunk" - -msgid "Gateway" -msgstr "Passarel·la" - -msgid "Go to" -msgstr "Vés a" - -msgid "Good (2 < ETX < 4)" -msgstr "Bo (2 < ETX < 4)" - -msgid "Green" -msgstr "Verd" - -msgid "Hello and welcome in the network of" -msgstr "Hola i benvingut a la xarxa de" - -msgid "Hide OpenStreetMap" -msgstr "Amaga l'OpenStreetMap" - -msgid "Homepage" -msgstr "Pàgina principal" - -msgid "Hostname" -msgstr "Nom de màquina" - -msgid "IPv6 Config" -msgstr "Configuració IPv6" - -msgid "IPv6 Prefix" -msgstr "Prefix IPv6" - -msgid "IPv6 network in CIDR notation." -msgstr "Xarxa IPv6 en notació CIDR." - -msgid "If selected then the default content element is not shown." -msgstr "Si està seleccionat, l'element de contingut per defecte no es mostra." - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Si estàs interessat en el nostre projecte, llavors contacta la comunitat " -"local" - -msgid "Index Page" -msgstr "Pàgina d'índex" - -msgid "Interface" -msgstr "Interfície" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"L'accés a Internet depèn de les condicions tècniques i organitzatives, i pot " -"funcionar o no per tu." - -msgid "It is operated by" -msgstr "És administrat per" - -msgid "Keep configuration" -msgstr "Manté la configuració" - -msgid "Latitude" -msgstr "Latitud" - -msgid "Legend" -msgstr "Llegenda" - -msgid "Load" -msgstr "Càrrega" - -msgid "Local Time" -msgstr "Hora local" - -msgid "Location" -msgstr "Ubicació" - -msgid "Longitude" -msgstr "Longitud" - -msgid "Map" -msgstr "Mapa" - -msgid "Map Error" -msgstr "Error de mapa" - -msgid "Memory" -msgstr "Memòria" - -msgid "Mesh prefix" -msgstr "Prefix de malla" - -msgid "Metric" -msgstr "Mètric" - -msgid "Mode" -msgstr "Mode" - -msgid "Network" -msgstr "Xarxa" - -msgid "Network for client DHCP addresses" -msgstr "Xarxa de les adreces DHCP dels clients" - -msgid "Nickname" -msgstr "Nickname" - -msgid "No default routes known." -msgstr "No es coneix cap ruta per defecte." - -msgid "Notice" -msgstr "Avís" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Operador" - -msgid "Orange" -msgstr "Taronja" - -msgid "Overview" -msgstr "Visió de conjunt" - -msgid "Package libiwinfo required!" -msgstr "Es requereix el paquet libiwinfo!" - -msgid "Phone" -msgstr "Telèfon" - -msgid "Please fill in your contact details below." -msgstr "Si us plau, empleneu els vostres detalls de contacte a baix." - -msgid "Please set your contact information" -msgstr "Si us plau, establiu la vostra informació de contacte" - -msgid "Power" -msgstr "Potència" - -msgid "Processor" -msgstr "Processador" - -msgid "Profile" -msgstr "Perfil" - -msgid "Profile (Expert)" -msgstr "Perfil (expert)" - -msgid "Realname" -msgstr "Nom real" - -msgid "Red" -msgstr "Xarxa" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Seleccioneu la vostra ubicació per un clic del ratolí en el mapa. El mapa es " -"mostra només si esteu connectat al Internet." - -msgid "Show OpenStreetMap" -msgstr "Mostra OpenStreetMap" - -msgid "Show on map" -msgstr "Mostra en mapa" - -msgid "Signal" -msgstr "Senyal" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "Inicia l'actualització" - -msgid "Statistics" -msgstr "Estadístiques" - -msgid "Status" -msgstr "Estat" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Encara utilitzable (4 < ETX < 10)" - -msgid "System" -msgstr "Sistema" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"El paquet <em>libiwinfo</em> no està instal·lat. Heu d'instal·lar aquest " -"component per a tenir una configuració sense fil funcionant!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "El microprogramari instal·lat és la versió més recent." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "Aquests són els ajusts de la vostra comunitat local." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "Això és el punt d'accés" - -msgid "Update Settings" -msgstr "Actualitza els ajusts" - -msgid "Update available!" -msgstr "Actualització disponible!" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "Molt bo (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Som una iniciativa per establir una xarxa mesh lliure, independent i oberta." - -msgid "Wireless Overview" -msgstr "Visió de conjunt sense fil" - -msgid "Yellow" -msgstr "Groc" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Pots trobar més informació sobre la iniciativa global Freifunk a" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "lliure" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "utilitzat" - -msgid "wireless settings" -msgstr "ajusts sense fil" diff --git a/modules/luci-mod-freifunk/po/cs/freifunk.po b/modules/luci-mod-freifunk/po/cs/freifunk.po deleted file mode 100644 index cf22c008bb..0000000000 --- a/modules/luci-mod-freifunk/po/cs/freifunk.po +++ /dev/null @@ -1,404 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-08-08 21:21+0200\n" -"Last-Translator: koli <lukas.koluch@gmail.com>\n" -"Language-Team: none\n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Špatné (ETX > 10)" - -msgid "Basic Settings" -msgstr "Základní nastavení" - -msgid "Basic settings" -msgstr "Základní nastavení" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Základní nastavení není kompletní. Prosím přejděte na" - -msgid "Basic system settings" -msgstr "Základní nastavení systému" - -msgid "Bitrate" -msgstr "Datový tok" - -msgid "Channel" -msgstr "Kanál" - -#, fuzzy -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Zkontrolovat dostupnost nové verze firmwaru a provést automatické " -"aktualizace." - -msgid "Client network size" -msgstr "Velikost klientské sítě" - -msgid "Community" -msgstr "Komunita" - -msgid "Community profile" -msgstr "Komunitní profil" - -msgid "Community settings" -msgstr "Nastavení komunity" - -msgid "Confirm Upgrade" -msgstr "Potvrďte upgrade" - -msgid "Contact" -msgstr "Kontakt" - -msgid "Contact information is incomplete. Please go to" -msgstr "Kontaktní informace není kompletní. Prosím pokračujte na" - -msgid "Coordinates" -msgstr "Souřadnice" - -msgid "Country code" -msgstr "Kód země" - -msgid "Default routes" -msgstr "Výchozí trasy" - -#, fuzzy -msgid "Disable default content" -msgstr "Zakázat výchozí obsah" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "Povolit IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "Chyba" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Najděte své souřadnice pomocí OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Freifunk - Přehled" - -msgid "Freifunk Remote Update" -msgstr "Freifunk - Vzdálené aktualizace" - -msgid "Gateway" -msgstr "Brána" - -msgid "Go to" -msgstr "Jít na" - -msgid "Good (2 < ETX < 4)" -msgstr "Dobré (2 < ETX < 4)" - -msgid "Green" -msgstr "Zelený" - -msgid "Hello and welcome in the network of" -msgstr "Dobrý den, vítejte v síti" - -msgid "Hide OpenStreetMap" -msgstr "Skrýt OpenStreetMap" - -msgid "Homepage" -msgstr "Domovská stránka" - -msgid "Hostname" -msgstr "Hostname" - -msgid "IPv6 Config" -msgstr "Konfigurace IPv6" - -msgid "IPv6 Prefix" -msgstr "IPv6 Prefix" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "Pokud se zajímáte o náš projekt, kontaktujte místní komunitu" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "Rozhraní" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Přístup k Internetu závisí na technických a organizačních podmínkách. Může " -"(ale nemusí) vám fungovat." - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "Uchovat nastavení" - -msgid "Latitude" -msgstr "Zeměpisná šířka" - -msgid "Legend" -msgstr "Legenda" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "Místní čas" - -msgid "Location" -msgstr "Umístění" - -msgid "Longitude" -msgstr "Zeměpisná délka" - -msgid "Map" -msgstr "Mapa" - -msgid "Map Error" -msgstr "Chyba mapy" - -msgid "Memory" -msgstr "Paměť" - -msgid "Mesh prefix" -msgstr "Mesh prefix" - -msgid "Metric" -msgstr "Metrika" - -msgid "Mode" -msgstr "Režim" - -msgid "Network" -msgstr "Síť" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "Přezdívka" - -msgid "No default routes known." -msgstr "Nejsou známy výchozí cesty" - -msgid "Notice" -msgstr "Upozornění" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Operátor" - -msgid "Orange" -msgstr "Oranžový" - -msgid "Overview" -msgstr "Přehled" - -msgid "Package libiwinfo required!" -msgstr "Balíček libiwinfo je vyžadován!" - -msgid "Phone" -msgstr "Telefon" - -msgid "Please fill in your contact details below." -msgstr "Prosím níže vyplňte kontaktní detaily." - -msgid "Please set your contact information" -msgstr "Prosím nastavte si vaše kontaktní informace" - -msgid "Power" -msgstr "Výkon" - -msgid "Processor" -msgstr "Procesor" - -msgid "Profile" -msgstr "Profil" - -msgid "Profile (Expert)" -msgstr "Profil (Expert)" - -msgid "Realname" -msgstr "Skutečné jméno" - -msgid "Red" -msgstr "Červený" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Kliknutím na mapu vyberte vaše umístění. Mapa se zobrazí, pouze pokud jste " -"připojen do sítě Internet." - -msgid "Show OpenStreetMap" -msgstr "Zobrazit OpenStreetMap" - -msgid "Show on map" -msgstr "Zobrazit na mapě" - -msgid "Signal" -msgstr "Signál" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "Spustit aktualizaci" - -msgid "Statistics" -msgstr "Statistiky" - -msgid "Status" -msgstr "Stav" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Stále použitelné (4 < ETX < 10)" - -msgid "System" -msgstr "Systém" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Balíček <em>libiwinfo</em> není nainstalován. Je třeba ho nainstalovat, aby " -"byla funkční konfigurace bezdrátové sítě!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "Nainstalovaný firmware je aktuální." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "To je přístupový bod (AP)" - -msgid "Update Settings" -msgstr "Nastavení aktualizace" - -msgid "Update available!" -msgstr "Aktualizace dostupná!" - -msgid "Uptime" -msgstr "Doba provozu" - -msgid "VAP" -msgstr "VAP" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "Velmi dobré (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "Žlutý" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "např." - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "nastavení bezdrátové sítě" diff --git a/modules/luci-mod-freifunk/po/de/freifunk.po b/modules/luci-mod-freifunk/po/de/freifunk.po deleted file mode 100644 index ff6e6bc67d..0000000000 --- a/modules/luci-mod-freifunk/po/de/freifunk.po +++ /dev/null @@ -1,447 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-05-12 17:58+0200\n" -"PO-Revision-Date: 2013-01-28 22:17+0200\n" -"Last-Translator: DAC324 <gerd_roethig@web.de>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Schlecht (ETX > 10)" - -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -msgid "Basic settings" -msgstr "Grundeinstellungen" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Die Grundeinstellungen sind unvollständig. Bitte gehe zur Seite" - -msgid "Basic system settings" -msgstr "Grundlegende Systemeinstellungen" - -msgid "Bitrate" -msgstr "Bitrate" - -msgid "Channel" -msgstr "Kanal" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Der Fernupdate-Mechanismus prüft nach neuen Firmware-Versionen und führt " -"automatisierte Updates durch." - -msgid "Client network size" -msgstr "Größe des DHCP-Netzes" - -msgid "Community" -msgstr "Community" - -msgid "Community profile" -msgstr "Community Profile" - -msgid "Community settings" -msgstr "Community Einstellungen" - -msgid "Confirm Upgrade" -msgstr "Updatevorgang starten" - -msgid "Contact" -msgstr "Kontakt" - -msgid "Contact information is incomplete. Please go to" -msgstr "Die Kontaktinformationen sind unvollständig. Bitte gehe zur Seite" - -msgid "Coordinates" -msgstr "Geokoordinaten" - -msgid "Country code" -msgstr "Ländercode" - -msgid "Default routes" -msgstr "Standardrouten" - -msgid "Disable default content" -msgstr "Standardtext deaktivieren" - -msgid "Diversity is enabled for device" -msgstr "Diversity ist aktiv für das Interface" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Indexseite bearbeiten" - -msgid "Enable IPv6" -msgstr "IPv6 aktivieren" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "Fehler" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Geokoordinaten mit OpenStreetMap ermitteln" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Freifunk Übersicht" - -msgid "Freifunk Remote Update" -msgstr "Freifunk Fernupdate" - -msgid "Gateway" -msgstr "Gateway" - -msgid "Go to" -msgstr "Gehe zu" - -msgid "Good (2 < ETX < 4)" -msgstr "Gut (2 < ETX < 4)" - -msgid "Green" -msgstr "Grün" - -msgid "Hello and welcome in the network of" -msgstr "Hallo und willkommen im Netz von" - -msgid "Hide OpenStreetMap" -msgstr "OpenStreetMap ausblenden" - -msgid "Homepage" -msgstr "Homepage" - -msgid "Hostname" -msgstr "Hostname" - -msgid "IPv6 Config" -msgstr "IPv6 Konfiguration" - -msgid "IPv6 Prefix" -msgstr "IPv6 Prefix" - -msgid "IPv6 network in CIDR notation." -msgstr "IPv6 Subnetz in CIDR-Notation" - -msgid "If selected then the default content element is not shown." -msgstr "" -"Wird diese Option gewählt dann wird das standardmässige Inhaltselement nicht " -"angezeigt." - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Hast du Interesse an diesem Projekt, dann wende dich an deine lokale " -"Gemeinschaft" - -msgid "Index Page" -msgstr "Index-Seite" - -msgid "Interface" -msgstr "Schnittstelle" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Der Internetzugang über das experimentelle Freifunknetz ist an technische " -"und organisatorische Bedingungen geknüpft und deshalb möglicherweise nicht " -"(immer) gewährleistet." - -msgid "It is operated by" -msgstr "Er wird betrieben von " - -msgid "Keep configuration" -msgstr "Konfigurationsdateien wiederherstellen" - -msgid "Latitude" -msgstr "Breite" - -msgid "Legend" -msgstr "Erklärung" - -msgid "Load" -msgstr "Load" - -msgid "Local Time" -msgstr "Lokale Zeit" - -msgid "Location" -msgstr "Standort" - -msgid "Longitude" -msgstr "Länge" - -msgid "Map" -msgstr "Karte" - -msgid "Map Error" -msgstr "Fehler beim Darstellen der Karte" - -msgid "Memory" -msgstr "Hauptspeicher" - -msgid "Mesh prefix" -msgstr "Prefix des Meshs" - -msgid "Metric" -msgstr "Metrik" - -msgid "Mode" -msgstr "Modus" - -msgid "Network" -msgstr "Netzwerk" - -msgid "Network for client DHCP addresses" -msgstr "Netzwerk aus dem IPs für Clients vergeben werden" - -msgid "Nickname" -msgstr "Pseudonym" - -msgid "No default routes known." -msgstr "Es sind keine Standardrouten bekannt." - -msgid "Notice" -msgstr "Notiz" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Betreiber" - -msgid "Orange" -msgstr "Orange" - -msgid "Overview" -msgstr "Übersicht" - -msgid "Package libiwinfo required!" -msgstr "Das Paket libiwinfo wird benötigt!" - -msgid "Phone" -msgstr "Telefon" - -msgid "Please fill in your contact details below." -msgstr "Bitte gib hier deine Kontaktdaten an." - -msgid "Please set your contact information" -msgstr "Bitte gib deine Kontaktinformationen ein" - -msgid "Power" -msgstr "Power" - -msgid "Processor" -msgstr "Prozessor" - -msgid "Profile" -msgstr "Profil" - -msgid "Profile (Expert)" -msgstr "Profil (Expertenmodus)" - -msgid "Realname" -msgstr "Name" - -msgid "Red" -msgstr "Rot" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Wähle hier deinen Standort durch einen Mausklick aus. Die Karte funktioniert " -"nur, wenn bereits eine Verbindung zum Internet besteht." - -msgid "Show OpenStreetMap" -msgstr "OpenStreetMap anzeigen" - -msgid "Show on map" -msgstr "Karte öffnen" - -msgid "Signal" -msgstr "Signal" - -msgid "Splash" -msgstr "Splash" - -msgid "Start Upgrade" -msgstr "Updatevorgang starten" - -msgid "Statistics" -msgstr "Statistiken" - -msgid "Status" -msgstr "Status" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Noch nutzbar (4 < ETX < 10)" - -msgid "System" -msgstr "System" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Das <em>libiwinfo</em>-Paket ist nicht installiert. Dieses Paket muss für " -"eine funktionierende WLAN-Konfiguration vorhanden sein!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"OLSRd ist nicht dafür konfiguriert worden Geoinformationen zu speichern.<br /" -"> Bitte sicherstellen dass das OLSRd-Nameservice-Plugin geladen und richtig " -"konfiguriert wurde (Option latlon_file)." - -msgid "The installed firmware is the most recent version." -msgstr "Die installierte Firmware ist bereits die neueste Version." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Dies hier sind die Grundeinstellungen für die Freifunk Community in deiner " -"Nachbarschaft. Diese Einstellungen legen die Standardwerte für den ffwizard " -"fest und beeinflussen die aktuelle Konfiguration des Routers NICHT." - -msgid "These are the settings of your local community." -msgstr "Dies sind die Einstellungen für deine Freifunk Community." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Diese Seiten helfen dabei, den Router für Freifunk oder ähnliche Wireless " -"Community Netzwerke einzurichten." - -msgid "This is the access point" -msgstr "Dies ist der Zugangspunkt " - -msgid "Update Settings" -msgstr "Einstellungen zum Update" - -msgid "Update available!" -msgstr "Update verfügbar!" - -msgid "Uptime" -msgstr "Uptime" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "Heruntergeladene Images verifizieren" - -msgid "Very good (ETX < 2)" -msgstr "Sehr gut (ETX < 2) " - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Wir sind eine Initiative zur Schaffung eines freien, offenen und " -"unabhängigen Funknetzwerks auf WLAN-Basis." - -msgid "Wireless Overview" -msgstr "WLAN Übersicht" - -msgid "Yellow" -msgstr "Gelb" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"Hier kann der Indexseite weiterer Inhalt hinzugefügt werden. Dazu muss " -"gültiges XHTML verwendet werden.<br />Überschriften sollten zwischen den " -"Tags <h2> und </h2> eingeschlossen werden." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Weitere Informationen zur globalen Freifunkinitiative findest du unter" - -msgid "You can manually edit the selected community profile here." -msgstr "Hier kann das ausgewählte Community-Profil bearbeitet werden." - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" -"Es muss ein Profil ausgewählt werden, bevor es editiert werden kann. Gehe " -"dazu zur Seite" - -msgid "and fill out all required fields." -msgstr "und fülle alle benötigten Felder aus." - -msgid "buffered" -msgstr "gepuffert" - -msgid "cached" -msgstr "gecacht" - -msgid "e.g." -msgstr "z.B." - -msgid "free" -msgstr "ungenutzt" - -msgid "to disable it." -msgstr "um es auszuschalten." - -msgid "used" -msgstr "benutzt" - -msgid "wireless settings" -msgstr "Drahtloseinstellungen" - -#~ msgid "" -#~ "No services can be shown, because olsrd is not running or the olsrd-" -#~ "nameservice Plugin is not loaded." -#~ msgstr "" -#~ "Es kann keine Liste der Dienste angezeigt werden, da olsrd nicht läuft " -#~ "oder das nameservice plugin nicht geladen oder konfiguriert wurde." - -#~ msgid "Services" -#~ msgstr "Dienste" - -#~ msgid "Source" -#~ msgstr "Quelle" - -#~ msgid "" -#~ "The <em>libiwinfo-lua</em> package is not installed. You must install " -#~ "this component for working wireless configuration!" -#~ msgstr "" -#~ "Das <em>libiwinfo-lua</em>-Paket ist nicht installiert. Das Paket muss " -#~ "für eine funktionierende WLAN-Konfiguration installiert sein!" - -#~ msgid "Url" -#~ msgstr "Adresse" diff --git a/modules/luci-mod-freifunk/po/el/freifunk.po b/modules/luci-mod-freifunk/po/el/freifunk.po deleted file mode 100644 index 95d58eae0b..0000000000 --- a/modules/luci-mod-freifunk/po/el/freifunk.po +++ /dev/null @@ -1,407 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-28 02:08+0200\n" -"PO-Revision-Date: 2012-03-18 15:11+0200\n" -"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.4\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "Βασικές Ρυθμίσεις" - -msgid "Basic settings" -msgstr "Βασικές ρυθμίσεις" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "Βασικές ρυθμίσεις συστήματος" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "Κανάλι" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "Κοινότητα" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "Επικοινωνία" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "Συντεταγμένες" - -msgid "Country code" -msgstr "Κωδικός xώρας" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "Ηλ. Ταχυδρομείο" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "Σφάλμα" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "Πύλη" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "Γεια σας και καλώς ήλθατε στο δίκτυο" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "Αν ενδιαφέρεστε για το έργο μας, επικοινωνήστε με την τοπική κοινότητα" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "Διεπαφή" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Η πρόσβαση στο διαδίκτυο εξαρτάται από τις τεχνικές και τις οργανωτικές " -"συνθήκες και μπορεί να λειτουργεί ή όχι για σας." - -msgid "It is operated by" -msgstr "Διαχειρίζεται από" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "Γεωγραφικό πλάτος" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "Τοπική Ώρα" - -msgid "Location" -msgstr "Τοποθεσία" - -msgid "Longitude" -msgstr "Γεωγραφικό μήκος" - -msgid "Map" -msgstr "Χάρτης" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "Μνήμη" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "Δίκτυο" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "Ψευδώνυμο" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "Σημείωση" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "Τηλέφωνο" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "Επεξεργαστής" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "Ονοματεπώνυμο" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "Σήμα" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "Στατιστικά" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "Σύστημα" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "Αυτές είναι οι ρυθμίσεις της τοπικής σας κοινότητας." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Αυτές οι σελίδες θα σας βοηθήσουν να ρυθμίσετε το δρομολογητή σας για το " -"Freifunk ή παρόμοια ασύρματα κοινοτικά δίκτυα." - -msgid "This is the access point" -msgstr "Αυτό είναι το access point" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Είμαστε μία πρωτοβουλία για την εδραίωση ενός ελεύθερου, ανεξάρτητου και " -"ανοιχτού ασύρματου mesh δικτύου." - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" -"Μπορείτε να βρείτε περισσότερες πληροφορίες για την παγκόσμια πρωτοβουλία " -"Freifunk στο" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "π.χ." - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" - -#~ msgid "Source" -#~ msgstr "Πηγή" diff --git a/modules/luci-mod-freifunk/po/en/freifunk.po b/modules/luci-mod-freifunk/po/en/freifunk.po deleted file mode 100644 index bf99116722..0000000000 --- a/modules/luci-mod-freifunk/po/en/freifunk.po +++ /dev/null @@ -1,400 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-30 06:42+0200\n" -"PO-Revision-Date: 2009-07-06 23:21+0200\n" -"Last-Translator: Jo-Philipp Wich <jow@openwrt.org>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "Check for new firmware versions and perform automatic updates." - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "Coordinates" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "Freifunk Remote Update" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "Hello and welcome in the network of" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "Hostname" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "If you are interested in our project then contact the local community" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." - -msgid "It is operated by" -msgstr "It is operated by" - -msgid "Keep configuration" -msgstr "Keep configuration" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "Location" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "Memory" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "Nickname" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "Notice" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "Phone" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "Realname" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "Start Upgrade" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "The installed firmware is the most recent version." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "This is the access point" - -msgid "Update Settings" -msgstr "Update Settings" - -msgid "Update available!" -msgstr "Update available!" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "Verify downloaded images" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" -"You can find further information about the global Freifunk initiative at" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/es/freifunk.po b/modules/luci-mod-freifunk/po/es/freifunk.po deleted file mode 100644 index 7242268d96..0000000000 --- a/modules/luci-mod-freifunk/po/es/freifunk.po +++ /dev/null @@ -1,417 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2014-06-15 13:16+0200\n" -"Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Malo (ETX > 10)" - -msgid "Basic Settings" -msgstr "Configuración básica" - -msgid "Basic settings" -msgstr "Configuración básica" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Configuración básica incompleta. Por favor, vaya a" - -msgid "Basic system settings" -msgstr "Configuración básica del sistema" - -msgid "Bitrate" -msgstr "Bitrate" - -msgid "Channel" -msgstr "Canal" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Comprobar nuevas versiones de firmware y realizar actualizaciones " -"automáticas." - -msgid "Client network size" -msgstr "Tamaño de la red cliente" - -msgid "Community" -msgstr "Comunidad" - -msgid "Community profile" -msgstr "Perfil de la comunidad" - -msgid "Community settings" -msgstr "Configuración de la comunidad" - -msgid "Confirm Upgrade" -msgstr "Confirmar actualización" - -msgid "Contact" -msgstr "Contacto" - -msgid "Contact information is incomplete. Please go to" -msgstr "La información de contacto no está completa. Por favor, vaya a" - -msgid "Coordinates" -msgstr "Coordenadas" - -msgid "Country code" -msgstr "Código de país" - -msgid "Default routes" -msgstr "Rutas por defecto" - -msgid "Disable default content" -msgstr "Desactive contenido por defecto" - -msgid "Diversity is enabled for device" -msgstr "Diversidad activar para el dispositivo" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Editar índice" - -msgid "Enable IPv6" -msgstr "Activar IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "Activa un punto virtual de acceso (VAP) por dehecto si es posible." - -msgid "Error" -msgstr "Error" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Busca sus coordenadas con OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Resumen de Freifunk" - -msgid "Freifunk Remote Update" -msgstr "Actualización remota de Freifunk" - -msgid "Gateway" -msgstr "Pasarela" - -msgid "Go to" -msgstr "Ir a" - -msgid "Good (2 < ETX < 4)" -msgstr "Bueno (2 < ETX < 4)" - -msgid "Green" -msgstr "Verde" - -msgid "Hello and welcome in the network of" -msgstr "Hola y bienvenido a la red de" - -msgid "Hide OpenStreetMap" -msgstr "Ocultar OpenStreetMap" - -msgid "Homepage" -msgstr "Página inicial" - -msgid "Hostname" -msgstr "Nombre de máquina" - -msgid "IPv6 Config" -msgstr "Configuración de IPv6" - -msgid "IPv6 Prefix" -msgstr "Prefijo IPv6" - -msgid "IPv6 network in CIDR notation." -msgstr "Red IPv6 en notación CIDR." - -msgid "If selected then the default content element is not shown." -msgstr "No mostrar el contenido por defecto." - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Si se encuentra interesado en nuestro proyecto contacte, por favor, con su " -"comunidad local mas cercana" - -msgid "Index Page" -msgstr "Índice" - -msgid "Interface" -msgstr "Interfaz" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"El acceso a Internet depende de condiciones tanto técnicas como " -"organizativas por lo que puede no funcionarle." - -msgid "It is operated by" -msgstr "Administrado por" - -msgid "Keep configuration" -msgstr "Mantener configuración" - -msgid "Latitude" -msgstr "Latitud" - -msgid "Legend" -msgstr "Leyenda" - -msgid "Load" -msgstr "Carga" - -msgid "Local Time" -msgstr "Hora local" - -msgid "Location" -msgstr "Lugar" - -msgid "Longitude" -msgstr "Longitud" - -msgid "Map" -msgstr "Mapa" - -msgid "Map Error" -msgstr "Error en el map" - -msgid "Memory" -msgstr "Memoria" - -msgid "Mesh prefix" -msgstr "Prefijo mesh" - -msgid "Metric" -msgstr "Métrica" - -msgid "Mode" -msgstr "Modo" - -msgid "Network" -msgstr "Red" - -msgid "Network for client DHCP addresses" -msgstr "Red para las direcciones DHCP de los clientes" - -msgid "Nickname" -msgstr "Apodo" - -msgid "No default routes known." -msgstr "Sin rutas por defecto." - -msgid "Notice" -msgstr "Aviso" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Administrador" - -msgid "Orange" -msgstr "Naranja" - -msgid "Overview" -msgstr "Repaso" - -msgid "Package libiwinfo required!" -msgstr "¡Es necesario el paquete libiwinfo!" - -msgid "Phone" -msgstr "Teléfono" - -msgid "Please fill in your contact details below." -msgstr "Por favor, introduzca sus datos de contacto." - -msgid "Please set your contact information" -msgstr "Por favor, configure su información de contacto" - -msgid "Power" -msgstr "Potencia" - -msgid "Processor" -msgstr "Procesador" - -msgid "Profile" -msgstr "Perfil" - -msgid "Profile (Expert)" -msgstr "Perfil (experto)" - -msgid "Realname" -msgstr "Nombre real" - -msgid "Red" -msgstr "Rojo" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Elija su posición pulsando el ratón sobre el mapa. El mapa solo aparecerá si " -"está conectado a internet." - -msgid "Show OpenStreetMap" -msgstr "Mostrar OpenStreetMap" - -msgid "Show on map" -msgstr "Mostrar en el mapa" - -msgid "Signal" -msgstr "Señal" - -msgid "Splash" -msgstr "Presentación" - -msgid "Start Upgrade" -msgstr "Iniciar actualización" - -msgid "Statistics" -msgstr "Estadísticas" - -msgid "Status" -msgstr "Estado" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Aún utilizable (4 < ETX < 10)" - -msgid "System" -msgstr "Sistema" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"El paquete <em>libiwinfo</em> no está instalado. ¡Debe instalarlo para que " -"funcione la red inalámbrica!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"El servicio OLSRd no está configurado para tomar los datos de posición desde " -"la red.<br />Asegúrese de que el plugin \"nameservice\" está bien " -"configurado y que la opción <em>latlon_file</em> está marcada." - -msgid "The installed firmware is the most recent version." -msgstr "El firmare instalado está en la versión más reciente." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Configuración básica de su comunidad inalámbrica. Aquí puede definir los " -"valores por defecto para el asistente SIN afectar a la configuración del " -"router." - -msgid "These are the settings of your local community." -msgstr "Configuración de su comunidad local." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Configuración de su router para Freifunk o redes comunitarias similares." - -msgid "This is the access point" -msgstr "Este es el punto de acceso" - -msgid "Update Settings" -msgstr "Actualizar configuración" - -msgid "Update available!" -msgstr "¡Actualización disponible!" - -msgid "Uptime" -msgstr "Tiempo activo" - -msgid "VAP" -msgstr "VAP" - -msgid "Verify downloaded images" -msgstr "Verificar las descargas" - -msgid "Very good (ETX < 2)" -msgstr "Muy bueno (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Somos una iniciativa que pretende crear una red libre, independiente y " -"abierta utilizando una red mesh inalámbrica." - -msgid "Wireless Overview" -msgstr "Resumen de red inalámbrica" - -msgid "Yellow" -msgstr "Amarillo" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"Puede mostrar más contenido en el índice público poniendo XHTML válido en " -"este formulario.<br />Las cabeceras deben ir entre <h2> y </h2>." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Puede obtener información acerca de la iniciativa global Freifunk en" - -msgid "You can manually edit the selected community profile here." -msgstr "Edite el perfil comunitario local." - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "Elija un perfil para editarlo. Para elegir el perfil vaya a" - -msgid "and fill out all required fields." -msgstr "y rellene los campos requeridos." - -msgid "buffered" -msgstr "en búfer" - -msgid "cached" -msgstr "en caché" - -msgid "e.g." -msgstr "ej." - -msgid "free" -msgstr "libre" - -msgid "to disable it." -msgstr "para desactivarlo." - -msgid "used" -msgstr "usado" - -msgid "wireless settings" -msgstr "configuración inalámbrica" diff --git a/modules/luci-mod-freifunk/po/fr/freifunk.po b/modules/luci-mod-freifunk/po/fr/freifunk.po deleted file mode 100644 index 028a2ce2b1..0000000000 --- a/modules/luci-mod-freifunk/po/fr/freifunk.po +++ /dev/null @@ -1,395 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/he/freifunk.po b/modules/luci-mod-freifunk/po/he/freifunk.po deleted file mode 100644 index 3dfdefd595..0000000000 --- a/modules/luci-mod-freifunk/po/he/freifunk.po +++ /dev/null @@ -1,394 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2013-01-22 02:48+0200\n" -"Last-Translator: citizen.amitai <citizen.amitai@gmail.com>\n" -"Language-Team: none\n" -"Language: he\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "חלש" - -msgid "Basic Settings" -msgstr "הגדרות בסיס" - -msgid "Basic settings" -msgstr "הגדרות בסיס" - -msgid "Basic settings are incomplete. Please go to" -msgstr "לא סיימת להגדיר את הגדרות הבסיס. תחזור ל" - -msgid "Basic system settings" -msgstr "הגדרות מערכת" - -msgid "Bitrate" -msgstr "קצב העברה" - -msgid "Channel" -msgstr "ערוץ" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "בדוק אם קיים גרסת חומרה חדשה ובצע עדכון אוטומטי" - -msgid "Client network size" -msgstr "גודל הרשת" - -msgid "Community" -msgstr "קהילה" - -msgid "Community profile" -msgstr "פרופיל הקהילה" - -msgid "Community settings" -msgstr "הגדרות קהילה" - -msgid "Confirm Upgrade" -msgstr "אשר שדרוג" - -msgid "Contact" -msgstr "צור קשר" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "קוד מדינה" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "אימייל" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "ערוך דף אינדקס" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "שגיאה" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "מצא את המיקום שלך עם OpenStreetMap" - -msgid "Freifunk" -msgstr "אריג" - -msgid "Freifunk Overview" -msgstr "סקירה כללית על אריג" - -msgid "Freifunk Remote Update" -msgstr "עדכון מרחוק " - -msgid "Gateway" -msgstr "שער" - -msgid "Go to" -msgstr "עבור אל" - -msgid "Good (2 < ETX < 4)" -msgstr "טוב" - -msgid "Green" -msgstr "ירוק" - -msgid "Hello and welcome in the network of" -msgstr "שלום וברוך הבא לרשת " - -msgid "Hide OpenStreetMap" -msgstr "הסתר OpenStreetMap" - -msgid "Homepage" -msgstr "דף הבית" - -msgid "Hostname" -msgstr "שם מחשב" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "אם מסומן, תוכן ברירת המחדל לא יופיע" - -msgid "If you are interested in our project then contact the local community" -msgstr "אם הנכם מעוניינים בפרוייקט שלנו אנא צרו קשר עם הקהילה באזורכם" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "ממשק" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "זה מופעל ע\"י" - -msgid "Keep configuration" -msgstr "שמור הגדרות" - -msgid "Latitude" -msgstr "רוחב" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "טען" - -msgid "Local Time" -msgstr "זמן מקומי" - -msgid "Location" -msgstr "מיקום" - -msgid "Longitude" -msgstr "אורך" - -msgid "Map" -msgstr "מפה" - -msgid "Map Error" -msgstr "שגיאת מפה" - -msgid "Memory" -msgstr "זכרון" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "מצב" - -msgid "Network" -msgstr "רשת" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "כינוי" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "סקירה" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "אנא הזינו פרטי יצירת קשר" - -msgid "Power" -msgstr "כח" - -msgid "Processor" -msgstr "מעבד" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "פרופיל (מומחה)" - -msgid "Realname" -msgstr "שם אמיתי" - -msgid "Red" -msgstr "אדום" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "פתח OpenStreetMap" - -msgid "Show on map" -msgstr "הצג על גבי מפה" - -msgid "Signal" -msgstr "אות" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "התחל שדרוג" - -msgid "Statistics" -msgstr "סטטיסטיקה" - -msgid "Status" -msgstr "סטטוס" - -msgid "Still usable (4 < ETX < 10)" -msgstr "מתפקד" - -msgid "System" -msgstr "מערכת" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "יוזמה לביסוס רשת אריג אל-חוטית שתהיה חינמית, נגישה, ועצמאית" - -msgid "Wireless Overview" -msgstr "סקירת הרשת האלחוטית" - -msgid "Yellow" -msgstr "צהוב" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/hu/freifunk.po b/modules/luci-mod-freifunk/po/hu/freifunk.po deleted file mode 100644 index 71829ef517..0000000000 --- a/modules/luci-mod-freifunk/po/hu/freifunk.po +++ /dev/null @@ -1,392 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/it/freifunk.po b/modules/luci-mod-freifunk/po/it/freifunk.po deleted file mode 100644 index 26610f75c9..0000000000 --- a/modules/luci-mod-freifunk/po/it/freifunk.po +++ /dev/null @@ -1,422 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2014-07-19 16:27+0200\n" -"Last-Translator: clagir <cgirlanda@girtech.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Difettoso (ETX > 10)" - -msgid "Basic Settings" -msgstr "Impostazioni Base" - -msgid "Basic settings" -msgstr "Impostazioni Base" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Le impostazioni base sono incomplete. Si prega di andare a" - -msgid "Basic system settings" -msgstr "Impostazioni Base del Sistema" - -msgid "Bitrate" -msgstr "Bitrate" - -msgid "Channel" -msgstr "Canale" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Verificare la presenza di nuove versioni del firmware ed eseguire gli " -"aggiornamenti automatici." - -msgid "Client network size" -msgstr "Dimensione Rete Client" - -msgid "Community" -msgstr "Comunità" - -msgid "Community profile" -msgstr "Profilo Comunità" - -msgid "Community settings" -msgstr "Impostazioni Comunità" - -msgid "Confirm Upgrade" -msgstr "Conferma Aggiornamento" - -msgid "Contact" -msgstr "Contatto" - -msgid "Contact information is incomplete. Please go to" -msgstr "Le informazioni di contatto sono incomplete. Si prega di andare a" - -msgid "Coordinates" -msgstr "Coordinate" - -msgid "Country code" -msgstr "Codice Nazione" - -msgid "Default routes" -msgstr "Instradamenti Predefiniti" - -msgid "Disable default content" -msgstr "Disattivare contenuto predefinito" - -msgid "Diversity is enabled for device" -msgstr "La diversità è abilitata per il dispositivo" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Modifica indice pagina" - -msgid "Enable IPv6" -msgstr "Attiva IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "Attiva un access point virtuale (VAP) di default se possibile" - -msgid "Error" -msgstr "Errore" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Trova le coordinate con OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Panoramica Freifunk" - -msgid "Freifunk Remote Update" -msgstr "Aggiornamento Remoto Freifunk" - -msgid "Gateway" -msgstr "Gateway" - -msgid "Go to" -msgstr "Vai a" - -msgid "Good (2 < ETX < 4)" -msgstr "Buono (2 < ETX < 4)" - -msgid "Green" -msgstr "Verde" - -msgid "Hello and welcome in the network of" -msgstr "Ciao e benvenuto nella rete di" - -msgid "Hide OpenStreetMap" -msgstr "Nascondi OpenStreetMap" - -msgid "Homepage" -msgstr "Homepage" - -msgid "Hostname" -msgstr "Nome Host" - -msgid "IPv6 Config" -msgstr "Configura IPv6" - -msgid "IPv6 Prefix" -msgstr "Prefisso IPv6" - -msgid "IPv6 network in CIDR notation." -msgstr "Rete IPv6 in notazione CIDR." - -msgid "If selected then the default content element is not shown." -msgstr "" -"Se selezionata, l'elemento di contenuto predefinito non viene visualizzato." - -msgid "If you are interested in our project then contact the local community" -msgstr "Se siete interessati al nostro progetto, contattare la comunità locale" - -msgid "Index Page" -msgstr "Indice Pagina" - -msgid "Interface" -msgstr "Interfaccia" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"L'accesso a Internet dipende dalle condizioni tecniche e organizzative e può " -"o non può funzionare per voi." - -msgid "It is operated by" -msgstr "E' gestito da" - -msgid "Keep configuration" -msgstr "Mantieni configurazione" - -msgid "Latitude" -msgstr "Latitudine" - -msgid "Legend" -msgstr "Legenda" - -msgid "Load" -msgstr "Carica" - -msgid "Local Time" -msgstr "Ora Locale" - -msgid "Location" -msgstr "Posizione" - -msgid "Longitude" -msgstr "Longitudine" - -msgid "Map" -msgstr "Mappa" - -msgid "Map Error" -msgstr "Errore Mappa" - -msgid "Memory" -msgstr "Memoria" - -msgid "Mesh prefix" -msgstr "Prefisso Rete" - -msgid "Metric" -msgstr "Metrica" - -msgid "Mode" -msgstr "Modalità" - -msgid "Network" -msgstr "Rete" - -msgid "Network for client DHCP addresses" -msgstr "Rete per indirizzi Client DHCP" - -msgid "Nickname" -msgstr "Nome Nick" - -msgid "No default routes known." -msgstr "Nessun instradamento predefinito conosciuto." - -msgid "Notice" -msgstr "Avviso" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Operatore" - -msgid "Orange" -msgstr "Arancio" - -msgid "Overview" -msgstr "Panoramica" - -msgid "Package libiwinfo required!" -msgstr "Il pacchetto libiwinfo è richiesto!" - -msgid "Phone" -msgstr "Telefono" - -msgid "Please fill in your contact details below." -msgstr "Inserisci i tuoi dati di contatto qui sotto." - -msgid "Please set your contact information" -msgstr "Vi preghiamo di impostare le informazioni di contatto" - -msgid "Power" -msgstr "Potenza" - -msgid "Processor" -msgstr "Processore" - -msgid "Profile" -msgstr "Profilo" - -msgid "Profile (Expert)" -msgstr "Profilo (Esperto)" - -msgid "Realname" -msgstr "Nome Reale" - -msgid "Red" -msgstr "Rosso" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Selezionare la propria posizione con un clic del mouse sulla mappa. La mappa " -"viene visualizzata solo se si è connessi a Internet." - -msgid "Show OpenStreetMap" -msgstr "Mostra OpenStreetMap" - -msgid "Show on map" -msgstr "Mostra sulla mappa" - -msgid "Signal" -msgstr "Segnale" - -msgid "Splash" -msgstr "Splash" - -msgid "Start Upgrade" -msgstr "Avvia Aggiornamento" - -msgid "Statistics" -msgstr "Statistiche" - -msgid "Status" -msgstr "Stato" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Ancora utilizzabile (4 < ETX < 10)" - -msgid "System" -msgstr "Sistema" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Il pacchetto <em>libiwinfo</em> non è installato. Si deve installare questo " -"componente per usare di configurazione wireless!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"Il servizio OLSRd non è configurato per acquisire i dati di posizione della " -"rete. <br/> Assicurarsi che il plugin nameservice sia configurato " -"correttamente e che l'opzione <em>latlon_file</em> è abilitata." - -msgid "The installed firmware is the most recent version." -msgstr "Il firmware installato è la versione più recente." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Queste sono le impostazioni di base per la vostra comunità locale wireless. " -"Queste impostazioni definiscono i valori predefiniti per la procedura " -"guidata e non influenzano la configurazione attuale del router." - -msgid "These are the settings of your local community." -msgstr "Queste sono le impostazioni della vostra comunità locale." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Queste pagine vi aiuteranno a configurare il router per Freifunk o reti " -"wireless della comunità simile." - -msgid "This is the access point" -msgstr "Questo è il punto di accesso" - -msgid "Update Settings" -msgstr "Aggiorna impostazioni" - -msgid "Update available!" -msgstr "Aggiornamento disponibile!" - -msgid "Uptime" -msgstr "Tempo di attività" - -msgid "VAP" -msgstr "VAP" - -msgid "Verify downloaded images" -msgstr "Verifica delle immagini scaricate" - -msgid "Very good (ETX < 2)" -msgstr "Molto buono (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Siamo un'iniziativa per creare una rete libera, indipendente e aperto " -"wireless mesh." - -msgid "Wireless Overview" -msgstr "Panoramica Wireless" - -msgid "Yellow" -msgstr "Giallo" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"È possibile visualizzare contenuti aggiuntivi nella pagina indice pubblica " -"inserendo XHTML valida nel modulo sottostante. <br/> I titoli dovrebbero " -"essere racchiusi tra <h2> e </h2>." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" -"È possibile trovare ulteriori informazioni sull'iniziativa Freifunk globale a" - -msgid "You can manually edit the selected community profile here." -msgstr "" -"È possibile modificare manualmente il profilo selezionato della comunità qui" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" -"È necessario selezionare un profilo prima di poterlo modificare. Per " -"selezionare un profilo andare a" - -msgid "and fill out all required fields." -msgstr "e compilare tutti i campi richiesti." - -msgid "buffered" -msgstr "buffered" - -msgid "cached" -msgstr "in memoria cache" - -msgid "e.g." -msgstr "es." - -msgid "free" -msgstr "libero" - -msgid "to disable it." -msgstr "per disattivarlo." - -msgid "used" -msgstr "usato" - -msgid "wireless settings" -msgstr "Impostazioni Wireless" diff --git a/modules/luci-mod-freifunk/po/ja/freifunk.po b/modules/luci-mod-freifunk/po/ja/freifunk.po deleted file mode 100644 index 028a2ce2b1..0000000000 --- a/modules/luci-mod-freifunk/po/ja/freifunk.po +++ /dev/null @@ -1,395 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/ms/freifunk.po b/modules/luci-mod-freifunk/po/ms/freifunk.po deleted file mode 100644 index 262991d217..0000000000 --- a/modules/luci-mod-freifunk/po/ms/freifunk.po +++ /dev/null @@ -1,391 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/no/freifunk.po b/modules/luci-mod-freifunk/po/no/freifunk.po deleted file mode 100644 index 62df8b9f7a..0000000000 --- a/modules/luci-mod-freifunk/po/no/freifunk.po +++ /dev/null @@ -1,430 +0,0 @@ -msgid "" -msgstr "" -"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "Grunnleggende Innstillinger" - -msgid "Basic settings" -msgstr "Grunnleggende innstillinger" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Grunnleggende innstillinger er mangelfull. Gå til" - -msgid "Basic system settings" -msgstr "Grunnleggende system innstillinger" - -msgid "Bitrate" -msgstr "Bithastighet" - -msgid "Channel" -msgstr "Kanal" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "Se etter nye firmware-versjoner og utfør automatiske oppdatering." - -msgid "Client network size" -msgstr "Klient nettverk størrelse" - -msgid "Community" -msgstr "Sted" - -msgid "Community profile" -msgstr "Sted profil" - -msgid "Community settings" -msgstr "Sted innstillinger" - -msgid "Confirm Upgrade" -msgstr "Bekreft Oppgradering" - -msgid "Contact" -msgstr "Kontakt" - -msgid "Contact information is incomplete. Please go to" -msgstr "Kontaktinformasjonen er mangelfull. Gå til" - -msgid "Coordinates" -msgstr "Koordinater" - -msgid "Country code" -msgstr "Landskode" - -msgid "Default routes" -msgstr "Standard ruter" - -msgid "Disable default content" -msgstr "Deaktiver standard innhold" - -msgid "Diversity is enabled for device" -msgstr "Antennevariasjon er aktivert på enhet" - -msgid "E-Mail" -msgstr "E-Post" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Rediger indeks side" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "Feil" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Finn koordinatene dine med OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Freifunk Oversikt" - -msgid "Freifunk Remote Update" -msgstr "Freifunk Fjernkontrollert Oppgradering" - -msgid "Gateway" -msgstr "Gateway" - -msgid "Go to" -msgstr "Gå til" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "Hei og velkommen til nettverket av" - -msgid "Hide OpenStreetMap" -msgstr "Skjul OpenStreetMap" - -msgid "Homepage" -msgstr "Hjemmeside" - -msgid "Hostname" -msgstr "Vertsnavn" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "Om valgt vises ikke det vanlige innholdselementet" - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Hvis du er interessert i prosjektet vårt så ta kontakt med en lokale gruppe " -"på" - -msgid "Index Page" -msgstr "Indeks Side" - -msgid "Interface" -msgstr "Grensesnitt" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Internett tilgang er avhengig av tekniske og organisatoriske forhold, defor " -"er det ikke sikkert det fungerer for deg." - -msgid "It is operated by" -msgstr "Det drives av" - -msgid "Keep configuration" -msgstr "Behold konfigurasjonen" - -msgid "Latitude" -msgstr "Breddegrad" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "Last" - -msgid "Local Time" -msgstr "Lokal Tid" - -msgid "Location" -msgstr "Sted" - -msgid "Longitude" -msgstr "Lengdegrad" - -msgid "Map" -msgstr "Kart" - -msgid "Map Error" -msgstr "Kart Feil" - -msgid "Memory" -msgstr "Minne" - -msgid "Mesh prefix" -msgstr "Mesh prefiks" - -msgid "Metric" -msgstr "Metrisk" - -msgid "Mode" -msgstr "Modus" - -msgid "Network" -msgstr "Nettverk" - -msgid "Network for client DHCP addresses" -msgstr "Nettverk for klient DHCP adresser" - -msgid "Nickname" -msgstr "Kallenavn" - -msgid "No default routes known." -msgstr "Ingen standard rute er kjent" - -msgid "Notice" -msgstr "Merknad" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "Oversikt" - -msgid "Package libiwinfo required!" -msgstr "Pakken libiwinfo er nødvendig!" - -msgid "Phone" -msgstr "Telefon" - -msgid "Please fill in your contact details below." -msgstr "Vennligst fyll ut skjema nedenfor." - -msgid "Please set your contact information" -msgstr "Vennligst oppgi din kontaktinformasjon" - -msgid "Power" -msgstr "Styrke" - -msgid "Processor" -msgstr "Prosessor" - -msgid "Profile" -msgstr "Profil" - -msgid "Profile (Expert)" -msgstr "Profil (Ekspert)" - -msgid "Realname" -msgstr "Virkelig Navn" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Velg din posisjon med et museklikk på kartet. Kartet vises bare om du er " -"koblet til internett." - -msgid "Show OpenStreetMap" -msgstr "Vis OpenStreetMap" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "Signal" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "Start Oppgradering" - -msgid "Statistics" -msgstr "Statistikk" - -msgid "Status" -msgstr "Status" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "System" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"OLSRd tjenesten er ikke konfigurert til å hente posisjons data fra " -"nettverket.<br/>Kontroller at navnetjener pluginen er riktig konfigurert og " -"at <em>latlon_file</em> alternativet er aktivert." - -msgid "The installed firmware is the most recent version." -msgstr "Den installerte firmware er den nyeste versjonen." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Dette er de grunnleggende innstillinger for det lokale trådløse stedet. " -"Disse innstillingene definerer standard verdiene for veiviseren og vil " -"derfor IKKE gjøre noen endringer på ruteren." - -msgid "These are the settings of your local community." -msgstr "Dette er innstillingene for det lokale stedet" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Disse sidene vil hjelpe deg med å sette opp ruteren til for Freifunk og " -"lignende trådløse nettverk." - -msgid "This is the access point" -msgstr "Dette er aksess punktet" - -msgid "Update Settings" -msgstr "Oppdater Innstillingene" - -msgid "Update available!" -msgstr "Oppdatering tilgjengelig!" - -msgid "Uptime" -msgstr "Oppetid" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "Verifiser nedlastede filer" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Vi er et initiativ for å etablere fri, uavhengig og åpne trådløse mesh-" -"nettverk." - -msgid "Wireless Overview" -msgstr "Trådløs Oversikt" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"Du kan vise ytterligere innhold på den offentlige side ved å legge til " -"gyldig XHTML med form som vist under.<br />Overskrifter bør legges mellom " -"<h2> og </h2>." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Du kan finne mere informasjon om den globale Freifunk initiativ på" - -msgid "You can manually edit the selected community profile here." -msgstr "Du kan manuelt endre den valgte stedsprofilen here" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" -"Du må velge en profil før du kan endre den. For å velge en profil går du til" - -msgid "and fill out all required fields." -msgstr "og fylle ut alle nødvendige felt" - -msgid "buffered" -msgstr "bufret" - -msgid "cached" -msgstr "hurtigbufret" - -msgid "e.g." -msgstr "f.eks." - -msgid "free" -msgstr "tilgjengelig" - -msgid "to disable it." -msgstr "å deaktivere det" - -msgid "used" -msgstr "brukt" - -msgid "wireless settings" -msgstr "trådløse innstillinger" - -#~ msgid "" -#~ "No services can be shown, because olsrd is not running or the olsrd-" -#~ "nameservice Plugin is not loaded." -#~ msgstr "" -#~ "Ingen tjenester kan vises her, dette kan være pga. at olsrd ikke kjører " -#~ "eller fordi olsrd-navnetjener plugin ikke er lastet." - -#~ msgid "Services" -#~ msgstr "Tjenester" - -#~ msgid "Source" -#~ msgstr "Kilde" - -#~ msgid "" -#~ "The <em>libiwinfo-lua</em> package is not installed. You must install " -#~ "this component for working wireless configuration!" -#~ msgstr "" -#~ "Pakken <em>libiwinfo-lua</em> er ikke installert. Du må installere denne " -#~ "pakken for å kunne konfigurerer trådløse enheter!" - -#~ msgid "Url" -#~ msgstr "Url" diff --git a/modules/luci-mod-freifunk/po/pl/freifunk.po b/modules/luci-mod-freifunk/po/pl/freifunk.po deleted file mode 100644 index ac46e1fd2c..0000000000 --- a/modules/luci-mod-freifunk/po/pl/freifunk.po +++ /dev/null @@ -1,422 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-04-23 19:16+0200\n" -"Last-Translator: goodgod261 <goodgod261@wp.pl>\n" -"Language-Team: none\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Błąd (Etx > 10)" - -msgid "Basic Settings" -msgstr "Ustawienia Podstawowe" - -msgid "Basic settings" -msgstr "Ustawienia podstawowe" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Niekompletne ustawienia podstawowe. Proszę uzupełnić" - -msgid "Basic system settings" -msgstr "Podstawowe ustawienia systemu" - -msgid "Bitrate" -msgstr "Bitrate" - -msgid "Channel" -msgstr "Kanał" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "Automatycznie sprawdź i uaktualnij wersję firmware`u" - -msgid "Client network size" -msgstr "Rozmiar sieci klientów" - -msgid "Community" -msgstr "Społeczność" - -msgid "Community profile" -msgstr "Profil w społeczności" - -msgid "Community settings" -msgstr "Ustawienia społeczności" - -msgid "Confirm Upgrade" -msgstr "Potwierdź uaktualnienie" - -msgid "Contact" -msgstr "Dane kontaktowe" - -msgid "Contact information is incomplete. Please go to" -msgstr "Dane kontaktowe są niekompletne. Proszę uzupełnij je" - -msgid "Coordinates" -msgstr "Współrzędne" - -msgid "Country code" -msgstr "Prefiks kraju" - -msgid "Default routes" -msgstr "Domyślne trasy (routes)" - -msgid "Disable default content" -msgstr "Wyłącz domyślną zawartość" - -# Nie przetłumaczymy tego lepiej. -msgid "Diversity is enabled for device" -msgstr "Różnorodność jest włączona dla urządzenia" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "Nazwa sieci (ESSID)" - -msgid "Edit index page" -msgstr "Edytuj stronę główną" - -msgid "Enable IPv6" -msgstr "Włącz IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "Błąd" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Znajdź swoje współrzędne w OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Przegląd sieci Freifunk" - -msgid "Freifunk Remote Update" -msgstr "Zdalna aktualizacja Freifunk" - -msgid "Gateway" -msgstr "Brama" - -msgid "Go to" -msgstr "Przejdź do" - -msgid "Good (2 < ETX < 4)" -msgstr "Dobrze (2 < ETX < 4)" - -msgid "Green" -msgstr "Zielone" - -msgid "Hello and welcome in the network of" -msgstr "Cześć! Witamy w sieci" - -msgid "Hide OpenStreetMap" -msgstr "Ukryj OpenStreetMap" - -msgid "Homepage" -msgstr "Strona domowa" - -msgid "Hostname" -msgstr "Nazwa hosta" - -msgid "IPv6 Config" -msgstr "Konfiguracja IPv6" - -msgid "IPv6 Prefix" -msgstr "Prefiks IPv6" - -msgid "IPv6 network in CIDR notation." -msgstr "Sieć IPv6 w notacji CIDR" - -msgid "If selected then the default content element is not shown." -msgstr "Jeśli zaznaczone domyślna zawartość nie jest widoczna" - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Jeśli jesteś zainteresowany projektem kontaktuj się z lokalna społecznością " -"Freifunk" - -msgid "Index Page" -msgstr "Strona początkowa" - -msgid "Interface" -msgstr "Interfejs" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Dostęp do internetu zależy od warunków technicznych i organizacyjnych, i " -"dlatego może nie działać." - -msgid "It is operated by" -msgstr "Jest zarządzany przez" - -msgid "Keep configuration" -msgstr "Zachowaj konfigurację" - -msgid "Latitude" -msgstr "Szerokość" - -msgid "Legend" -msgstr "Legenda" - -msgid "Load" -msgstr "Obciążenie" - -msgid "Local Time" -msgstr "Czas Lokalny" - -# Może ktoś ma lepsze słowo? -msgid "Location" -msgstr "Lokacja" - -msgid "Longitude" -msgstr "Długość" - -msgid "Map" -msgstr "Mapa" - -msgid "Map Error" -msgstr "Błąd Mapy" - -msgid "Memory" -msgstr "Pamięć" - -# Dosłownie prefiks kraty -msgid "Mesh prefix" -msgstr "Prefiks komórki" - -msgid "Metric" -msgstr "Metryka" - -msgid "Mode" -msgstr "Tryb" - -msgid "Network" -msgstr "Sieć" - -msgid "Network for client DHCP addresses" -msgstr "Sieć dla adresów klienta DHCP" - -msgid "Nickname" -msgstr "Twoja ksywka" - -msgid "No default routes known." -msgstr "Nie są znane żadne domyślne ścieżki routingu." - -msgid "Notice" -msgstr "Uwaga" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Zarządca" - -msgid "Orange" -msgstr "Pomarańczowe" - -msgid "Overview" -msgstr "Przegląd" - -msgid "Package libiwinfo required!" -msgstr "Wymagany pakiet libiwinfo !" - -msgid "Phone" -msgstr "Telefon" - -msgid "Please fill in your contact details below." -msgstr "Proszę uzupełnij dane kontaktowe poniżej." - -msgid "Please set your contact information" -msgstr "Proszę uzupełnić swoje dane kontaktowe" - -msgid "Power" -msgstr "Moc" - -msgid "Processor" -msgstr "Procesor" - -msgid "Profile" -msgstr "Profil" - -msgid "Profile (Expert)" -msgstr "Profil (tryb eksperta)" - -msgid "Realname" -msgstr "Imię i Nazwisko (prawdziwe)" - -msgid "Red" -msgstr "Czerwone" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Proszę zaznaczyć swoją lokację na mapie. Mapa jest pokazywana tylko jeśli " -"masz dostęp do internetu." - -msgid "Show OpenStreetMap" -msgstr "Pokaż OpenStreetMap" - -msgid "Show on map" -msgstr "Pokaż na mapie" - -msgid "Signal" -msgstr "Sygnał" - -msgid "Splash" -msgstr "Splash" - -msgid "Start Upgrade" -msgstr "Zacznij aktualizację" - -msgid "Statistics" -msgstr "Statystyki" - -msgid "Status" -msgstr "Status" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Cały Czas do użycia (4 < ETX < 10)" - -msgid "System" -msgstr "System" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Pakiet <em>libiwinfo</em> nie jest zainstalowany. Musisz go zainstalować, " -"aby konfiguracja sieci bezprzewodowej mogła być uaktywniona!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"Usługa OLSRd nie jest skonfigurowana do pozyskiwania nazwy z sieci.<br /> " -"Proszę się upewnić, że plugin nameservice jest poprawnie skonfigurowany, " -"oraz opcja użycia pliku <em>latlon_file</em> jest zaznaczona." - -msgid "The installed firmware is the most recent version." -msgstr "Zainstalowany firmware jest aktualny." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Są to podstawowe ustawienia dla twojej lokalnej bezprzewodowej społeczności. " -"Te ustawienia określają domyślne wartości dla kreatora i NIE MAJĄ wpływu na " -"aktualną konfigurację routera." - -msgid "These are the settings of your local community." -msgstr "To są ustawienia twojej lokalnej społeczności (community)." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Te strony pomogą ci skonfigurować twój router do sieci Freifunk, lub innej " -"sieci społecznościowej ." - -msgid "This is the access point" -msgstr "To jest punk dostępowy (AP)" - -msgid "Update Settings" -msgstr "Uaktualnij ustawienia" - -msgid "Update available!" -msgstr "Aktualizacja dostępna!!!" - -msgid "Uptime" -msgstr "Aktualizacja" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "Sprawdź pobrane obrazy" - -msgid "Very good (ETX < 2)" -msgstr "Bardzo Dobrze (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Jesteśmy inicjatywą na rzecz ustanowienia wolnej, niezależnej i otwartej " -"bezprzewodowej siatki kratowej." - -msgid "Wireless Overview" -msgstr "Przegląd Ustawień WiFi" - -msgid "Yellow" -msgstr "Żółty" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"Można wyświetlić dodatkową zawartość na publicznej stronie indeksu " -"wstawiając poprawny XHTML do formularza poniżej.<br />Nagłówki powinny być " -"zamknięte tagami <h2> i </h2>." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" -"Możesz znaleźć więcej informacji o naszej globalnej inicjatywie Freifunk na" - -msgid "You can manually edit the selected community profile here." -msgstr "Możesz ręcznie edytować wybrany profil społeczności tutaj" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" -"Aby edytować profil musisz go najpierw zaznaczyć. Zaznacz profil aby " -"kontynuować" - -msgid "and fill out all required fields." -msgstr "i wypełnij wszystkie wymagane pola." - -msgid "buffered" -msgstr "buforowany" - -msgid "cached" -msgstr "cachowany" - -msgid "e.g." -msgstr "np." - -msgid "free" -msgstr "darmowy" - -msgid "to disable it." -msgstr "aby wyłączyć" - -msgid "used" -msgstr "używany" - -msgid "wireless settings" -msgstr "ustawienia sieci bezprzewodowej" diff --git a/modules/luci-mod-freifunk/po/pt-br/freifunk.po b/modules/luci-mod-freifunk/po/pt-br/freifunk.po deleted file mode 100644 index a906a937b2..0000000000 --- a/modules/luci-mod-freifunk/po/pt-br/freifunk.po +++ /dev/null @@ -1,447 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2014-06-21 19:00+0200\n" -"Last-Translator: Éder <eder.grigorio@openmailbox.org>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Mal (ETX > 10)" - -msgid "Basic Settings" -msgstr "Configurações Básicas" - -msgid "Basic settings" -msgstr "Configurações básicas" - -msgid "Basic settings are incomplete. Please go to" -msgstr "As configurações básicas estão incompletas. Por favor vá para" - -msgid "Basic system settings" -msgstr "Configurações básicas do sistema" - -msgid "Bitrate" -msgstr "Taxa de bit" - -msgid "Channel" -msgstr "Canal" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Verifique a existência de novas versões e realize a atualização " -"automaticamente." - -msgid "Client network size" -msgstr "Tamanho da rede dos clientes" - -msgid "Community" -msgstr "Comunidade" - -msgid "Community profile" -msgstr "Perfil da comunidade" - -msgid "Community settings" -msgstr "Configurações da comunidade" - -msgid "Confirm Upgrade" -msgstr "Confirmar a atualização" - -msgid "Contact" -msgstr "Contato" - -msgid "Contact information is incomplete. Please go to" -msgstr "A informação de contato está incompleta. Por favor, vá para" - -msgid "Coordinates" -msgstr "Coordenadas" - -msgid "Country code" -msgstr "Código do país" - -msgid "Default routes" -msgstr "Rotas padrão" - -msgid "Disable default content" -msgstr "Desabilitar o conteúdo padrão" - -msgid "Diversity is enabled for device" -msgstr "A diversidade está habilitada neste dispositivo" - -msgid "E-Mail" -msgstr "E-mail" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Edita a página índice" - -msgid "Enable IPv6" -msgstr "Habilitar IPv6" - -# 20140621: edersg: tradução -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "Habilitar um ponto de acesso virtual (VAP) por padrão, se possível" - -msgid "Error" -msgstr "Erro" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Encontre sua coordenada com o OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Visão Geral do Freifunk" - -msgid "Freifunk Remote Update" -msgstr "Atualização Remota do Freifunk" - -msgid "Gateway" -msgstr "Roteador" - -msgid "Go to" -msgstr "Vá para" - -msgid "Good (2 < ETX < 4)" -msgstr "Bom (2 < ETX < 4)" - -msgid "Green" -msgstr "Verde" - -msgid "Hello and welcome in the network of" -msgstr "Olá e seja bem-vindo à rede do" - -msgid "Hide OpenStreetMap" -msgstr "Esconder o OpenStreetMap" - -msgid "Homepage" -msgstr "Página" - -msgid "Hostname" -msgstr "Nome do equipamento" - -msgid "IPv6 Config" -msgstr "Configuração IPv6" - -msgid "IPv6 Prefix" -msgstr "Prefixo IPv6" - -msgid "IPv6 network in CIDR notation." -msgstr "Rede IPv6 em notação CIDR." - -msgid "If selected then the default content element is not shown." -msgstr "Se selecionado, o conteúdo padrão não é mostrado." - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Se estiver interessado no nosso projeto, entre em contacto com a comunidade " -"local" - -msgid "Index Page" -msgstr "Página Índice" - -msgid "Interface" -msgstr "Interface" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"O acesso à Internet depende de fatores técnicos e organizacionais, e pode " -"funcionar ou não no seu caso." - -msgid "It is operated by" -msgstr "É operado por" - -msgid "Keep configuration" -msgstr "Manter a configuração" - -msgid "Latitude" -msgstr "Latitude" - -msgid "Legend" -msgstr "Legenda" - -msgid "Load" -msgstr "Carregar" - -msgid "Local Time" -msgstr "Horário Local" - -msgid "Location" -msgstr "Localização" - -msgid "Longitude" -msgstr "Longitude" - -msgid "Map" -msgstr "Mapa" - -msgid "Map Error" -msgstr "Erro do Mapa" - -msgid "Memory" -msgstr "Memória" - -msgid "Mesh prefix" -msgstr "Prefixo da rede em malha" - -msgid "Metric" -msgstr "Métrica" - -msgid "Mode" -msgstr "Modo" - -msgid "Network" -msgstr "Rede" - -msgid "Network for client DHCP addresses" -msgstr "Rede para os endereços dos clientes DHCP" - -msgid "Nickname" -msgstr "Apelido" - -msgid "No default routes known." -msgstr "Nenhuma rota padrão conhecida." - -msgid "Notice" -msgstr "Aviso" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Operador" - -msgid "Orange" -msgstr "Laranja" - -msgid "Overview" -msgstr "Visão Geral" - -msgid "Package libiwinfo required!" -msgstr "O pacote libiwinfo é necessário!" - -msgid "Phone" -msgstr "Telefone" - -msgid "Please fill in your contact details below." -msgstr "Por favor, preencha seus detalhes de contato abaixo." - -msgid "Please set your contact information" -msgstr "Por favor, defina a informação de contato" - -msgid "Power" -msgstr "Potência" - -msgid "Processor" -msgstr "Processador" - -msgid "Profile" -msgstr "Perfil" - -msgid "Profile (Expert)" -msgstr "Perfil (Especialista)" - -msgid "Realname" -msgstr "Nome Real" - -msgid "Red" -msgstr "Vermelho" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Selecione a sua localização com o mouse clicando no mapa. O mapa irá mostrar " -"se você está conectado na internet." - -msgid "Show OpenStreetMap" -msgstr "Mostrar o OpenStreetMap" - -msgid "Show on map" -msgstr "Mostrar no mapa" - -msgid "Signal" -msgstr "Sinal" - -msgid "Splash" -msgstr "Splash" - -msgid "Start Upgrade" -msgstr "Iniciar a Atualização" - -msgid "Statistics" -msgstr "Estatística" - -msgid "Status" -msgstr "Estado" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Ainda usável (4 < ETX < 10)" - -msgid "System" -msgstr "Sistema" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"O pacote <em>libiwinfo</em> não está instalado. Você precisa instalar este " -"componente para ter uma configuração sem fio funcional!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"O serviço OLSRd não está configurado para capturar os dados de posição da " -"rede.<br /> Por favor, garnta que o plugin nameservice está corretametne " -"configurado e que a opção <em>latlon_file</em> está habilitada." - -msgid "The installed firmware is the most recent version." -msgstr "O firmware instalado é a última versão." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Estas são as configurações básicas para a comunidade sem fio local. Estas " -"configurações definem os valores padrão para o assistente e NÃO afetam a " -"configuração atual do roteador." - -msgid "These are the settings of your local community." -msgstr "Estas são as configurações da sua comunidade local." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Esta página ajudará você na configuração do seu roteador Freifunk ou de " -"redes comunitárias sem fio similares." - -msgid "This is the access point" -msgstr "Este é o ponto de acesso " - -msgid "Update Settings" -msgstr "Configurações da Atualização" - -msgid "Update available!" -msgstr "Existe uma atualização disponível!" - -msgid "Uptime" -msgstr "Tempo de atividade" - -# 20140621: edersg: tradução -msgid "VAP" -msgstr "VAP" - -msgid "Verify downloaded images" -msgstr "Verifique as imagens baixadas" - -msgid "Very good (ETX < 2)" -msgstr "Muito bom (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Somos uma iniciativa para implementação de uma rede sem fio em malha livre, " -"independente e não-comercial." - -msgid "Wireless Overview" -msgstr "Visão Geral da Rede Sem Fio" - -msgid "Yellow" -msgstr "Amarelo" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"Você pode mostrar conteúdo adicional na página índice pública inserindo " -"XHTML válido no formulário abaixo.<br />As manchetes devem ficam entre <" -"h2> e </h2>." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" -"Você pode encontrar mais informações sobre a iniciativa global Freifunk em" - -msgid "You can manually edit the selected community profile here." -msgstr "Você pode editar manualmente o perfil da comunidade selecionada aqui." - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" -"Você precisa selecionar um perfil antes de poder editá-lo. Para selecionar " -"um perfil, vá para" - -msgid "and fill out all required fields." -msgstr "e preencher todos os campos obrigatórios." - -msgid "buffered" -msgstr "no Buffer" - -msgid "cached" -msgstr "no Cache" - -msgid "e.g." -msgstr "ex:" - -msgid "free" -msgstr "livre" - -msgid "to disable it." -msgstr "para desabilitá-lo." - -msgid "used" -msgstr "usado" - -msgid "wireless settings" -msgstr "configurações da rede sem fio" - -#~ msgid "" -#~ "No services can be shown, because olsrd is not running or the olsrd-" -#~ "nameservice Plugin is not loaded." -#~ msgstr "" -#~ "Nenhum serviço pode ser mostrado porque o olsrd não está rodando ou o " -#~ "plugin do olsrd-nameservice não está carregado." - -#~ msgid "Services" -#~ msgstr "Serviços" - -#~ msgid "Source" -#~ msgstr "Origem" - -#~ msgid "" -#~ "The <em>libiwinfo-lua</em> package is not installed. You must install " -#~ "this component for working wireless configuration!" -#~ msgstr "" -#~ "O pacote <em>libiwinfo-lua</em> não está instalado. Você deve instalar " -#~ "este componente para ter uma configuração sem fio funcional!" - -#~ msgid "Url" -#~ msgstr "URL" diff --git a/modules/luci-mod-freifunk/po/pt/freifunk.po b/modules/luci-mod-freifunk/po/pt/freifunk.po deleted file mode 100644 index b5b822b880..0000000000 --- a/modules/luci-mod-freifunk/po/pt/freifunk.po +++ /dev/null @@ -1,401 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: 2009-05-19 17:33+0200\n" -"Last-Translator: Jose Monteiro <jm@unimos.net>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "Coordenadas" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "email" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "Olá e benvindo à rede " - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Se estiver interessado no nosso projecto, entre em contacto com a sua " -"comunidade local" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"O acesso à Internet depende de factores técnicos e organizacionais, e pode " -"funcionar ou não no seu caso." - -msgid "It is operated by" -msgstr "É operado por " - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "Localização" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "Memória" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "Nome curto (nick)" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "Notas" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "Telefone" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "Nome" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "Este é o ponto de acesso " - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Somos uma iniciativa para implementação de uma rede livre, independente e " -"não-comercial." - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Pode encontrar mais informações sobre a iniciativa global Freifunk em " - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/ro/freifunk.po b/modules/luci-mod-freifunk/po/ro/freifunk.po deleted file mode 100644 index 408abd8de6..0000000000 --- a/modules/luci-mod-freifunk/po/ro/freifunk.po +++ /dev/null @@ -1,395 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-06-29 19:53+0200\n" -"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n" -"Language-Team: none\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "Setări de bază" - -msgid "Basic settings" -msgstr "Setări de bază" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Setările de bază sunt incomplete. Mergi la" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "Canal" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "Comunitate" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "Contact" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "Coordonate" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "Activează IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "Eroare" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "Du-te la" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "Verde" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "Interfaţă" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "Păstrează configuraţia" - -msgid "Latitude" -msgstr "Latitudine" - -msgid "Legend" -msgstr "Legendă" - -msgid "Load" -msgstr "Încarcă" - -msgid "Local Time" -msgstr "Oră locală" - -msgid "Location" -msgstr "Locaţie" - -msgid "Longitude" -msgstr "Longitudine" - -msgid "Map" -msgstr "Hartă" - -msgid "Map Error" -msgstr "Eroare hartă" - -msgid "Memory" -msgstr "Memorie" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "Mod" - -msgid "Network" -msgstr "Reţea" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "Poreclă" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "Portocaliu" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "Telefon" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "Putere" - -msgid "Processor" -msgstr "Procesor" - -msgid "Profile" -msgstr "Profil" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "Nume real" - -msgid "Red" -msgstr "Roşu" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "Arată pe hartă" - -msgid "Signal" -msgstr "Semnal" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "Statistici" - -msgid "Status" -msgstr "Stare" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "Firmware-ul instalat este cea mai recentă versiune." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "Galben" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "şi completaţi toate câmpurile" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "ex." - -msgid "free" -msgstr "liber" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "folosit" - -msgid "wireless settings" -msgstr "setări wireless" diff --git a/modules/luci-mod-freifunk/po/ru/freifunk.po b/modules/luci-mod-freifunk/po/ru/freifunk.po deleted file mode 100644 index f9b44a2c61..0000000000 --- a/modules/luci-mod-freifunk/po/ru/freifunk.po +++ /dev/null @@ -1,423 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: LuCI: freifunk\n" -"POT-Creation-Date: 2013-09-06 09:41+0200\n" -"PO-Revision-Date: 2018-01-30 17:02+0300\n" -"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n" -"Language-Team: http://cyber-place.ru\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"X-Generator: Poedit 1.8.7.1\n" -"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " -"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "Плохо (ETX > 10)" - -msgid "Basic Settings" -msgstr "Основные настройки" - -msgid "Basic settings" -msgstr "Основные настройки" - -msgid "Basic settings are incomplete. Please go to" -msgstr "Основные настройки не верны. Пожалуйста, перейдите в" - -msgid "Basic system settings" -msgstr "Основные настройки системы" - -msgid "Bitrate" -msgstr "Скорость" - -msgid "Channel" -msgstr "Канал" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" -"Проверить наличие новой версии прошивки и выполнить автоматическое " -"обновление." - -msgid "Client network size" -msgstr "Размер клиентской сети" - -msgid "Community" -msgstr "Сообщество" - -msgid "Community profile" -msgstr "Профиль сообщества" - -msgid "Community settings" -msgstr "Настройки сообщества" - -msgid "Confirm Upgrade" -msgstr "Подтвердить обновление" - -msgid "Contact" -msgstr "Контакты для связи" - -msgid "Contact information is incomplete. Please go to" -msgstr "Контактная информация не верна. Пожалуйста, перейдите в" - -msgid "Coordinates" -msgstr "Координаты" - -msgid "Country code" -msgstr "Код страны" - -msgid "Default routes" -msgstr "Маршруты по умолчанию" - -msgid "Disable default content" -msgstr "Запретить контент по умолчанию" - -msgid "Diversity is enabled for device" -msgstr "Неопределенность пути включена" - -msgid "E-Mail" -msgstr "E-Mail" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "Редактировать главную страницу" - -msgid "Enable IPv6" -msgstr "Включить IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" -"Включить виртуальную точку доступа (VAP) с настройками по умолчанию, если " -"это возможно." - -msgid "Error" -msgstr "Ошибка" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "Найдите свои координаты с помощью OpenStreetMap" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Главное меню Freifunk" - -msgid "Freifunk Remote Update" -msgstr "Удалённое обновление Freifunk" - -msgid "Gateway" -msgstr "Шлюз" - -msgid "Go to" -msgstr "Перейти" - -msgid "Good (2 < ETX < 4)" -msgstr "Хорошо (2 < ETX < 4)" - -msgid "Green" -msgstr "Зеленый" - -msgid "Hello and welcome in the network of" -msgstr "Здравствуйте и добро пожаловать в сеть" - -msgid "Hide OpenStreetMap" -msgstr "Скрыть OpenStreetMap" - -msgid "Homepage" -msgstr "Домашняя страница" - -msgid "Hostname" -msgstr "Имя хоста" - -msgid "IPv6 Config" -msgstr "Настройка IPv6" - -msgid "IPv6 Prefix" -msgstr "Префикс IPv6" - -msgid "IPv6 network in CIDR notation." -msgstr "Сеть IPv6 в CIDR-нотации" - -msgid "If selected then the default content element is not shown." -msgstr "Если выбрано, содержимое по умолчанию не будет показано." - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Если вы заинтересованы в нашем проекте, свяжитесь с местным сообществом" - -msgid "Index Page" -msgstr "Главная страница" - -msgid "Interface" -msgstr "Интерфейс" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Доступ в Интернет зависит от технических и организационных условий и может " -"быть не доступен для вас." - -msgid "It is operated by" -msgstr "Точка доступа управляется" - -msgid "Keep configuration" -msgstr "Сохранить настройки" - -msgid "Latitude" -msgstr "Широта" - -msgid "Legend" -msgstr "События" - -msgid "Load" -msgstr "Загрузка" - -msgid "Local Time" -msgstr "Дата и время" - -msgid "Location" -msgstr "Расположение" - -msgid "Longitude" -msgstr "Долгота" - -msgid "Map" -msgstr "Карта" - -msgid "Map Error" -msgstr "Ошибка карты" - -msgid "Memory" -msgstr "Оперативная память (RAM)" - -msgid "Mesh prefix" -msgstr "Mesh префикс" - -msgid "Metric" -msgstr "Метрика" - -msgid "Mode" -msgstr "Режим" - -msgid "Network" -msgstr "Сеть" - -msgid "Network for client DHCP addresses" -msgstr "Сеть для клиентских<br />DHCP-адресов" - -msgid "Nickname" -msgstr "Никнейм" - -msgid "No default routes known." -msgstr "Маршруты по умолчанию не известны." - -msgid "Notice" -msgstr "Заметка" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "Оператор" - -msgid "Orange" -msgstr "Оранжевый" - -msgid "Overview" -msgstr "Главное меню" - -msgid "Package libiwinfo required!" -msgstr "Требуется пакет libiwinfo!" - -msgid "Phone" -msgstr "Телефон" - -msgid "Please fill in your contact details below." -msgstr "Пожалуйста, введите вашу контактную информацию." - -msgid "Please set your contact information" -msgstr "Пожалуйста, введите вашу контактную информацию" - -msgid "Power" -msgstr "Питание" - -msgid "Processor" -msgstr "CPU" - -msgid "Profile" -msgstr "Профиль" - -msgid "Profile (Expert)" -msgstr "Профиль (эксперт)" - -msgid "Realname" -msgstr "Имя" - -msgid "Red" -msgstr "Красный" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" -"Укажите ваше местоположение на карте с помощью щелчка мыши. Карта будет " -"показана только если вы подключены к Интернету." - -msgid "Show OpenStreetMap" -msgstr "Показать карту OpenStreetMap" - -msgid "Show on map" -msgstr "Показать на карте" - -msgid "Signal" -msgstr "Сигнал" - -msgid "Splash" -msgstr "Splash-экран" - -msgid "Start Upgrade" -msgstr "Начать обновление" - -msgid "Statistics" -msgstr "Статистика" - -msgid "Status" -msgstr "Состояние" - -msgid "Still usable (4 < ETX < 10)" -msgstr "Еще можно использовать (4 < ETX < 10)" - -msgid "System" -msgstr "Система" - -msgid "TX" -msgstr "Передача (TX)" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Пакет <em>libiwinfo-lua</em> не установлен. Для включения настроек " -"беспроводных сетей, вам необходимо установить этот компонент!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"Сервис OLSRd не настроен на получение данных о местоположении из сети.<br /> " -"Пожалуйста, удостоверьтесь, что модуль пространства имён настроен правильно " -"и что опция <em>latlon_file</em> включена." - -msgid "The installed firmware is the most recent version." -msgstr "Установлена прошивка самой последней версии." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"Это основные настройки вашего сообщества. Они определяют стандартные " -"настройки для 'Мастера настройки Mesh сети' и НЕ влияют на конечные настройки " -"маршрутизатора." - -msgid "These are the settings of your local community." -msgstr "Здесь вы сможете настроить ваше сообщество." - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" -"Эти страницы помогут настроить ваш маршрутизатор для Freifunk или подобной " -"беспроводной сети." - -msgid "This is the access point" -msgstr "Это - точка доступа" - -msgid "Update Settings" -msgstr "Настройки обновления" - -msgid "Update available!" -msgstr "Доступно обновление!" - -msgid "Uptime" -msgstr "Время работы" - -msgid "VAP" -msgstr "Виртуальная точка доступа (VAP)" - -msgid "Verify downloaded images" -msgstr "Проверять загруженные образы" - -msgid "Very good (ETX < 2)" -msgstr "Очень хорошо (ETX < 2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" -"Мы - это сообщество, цель которого создать бесплатную, независимую и " -"открытую беспроводную Mesh сеть." - -msgid "Wireless Overview" -msgstr "Список беспроводных сетей" - -msgid "Yellow" -msgstr "Желтый" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"У вас есть возможность установить дополнительное содержимое публичной " -"страницы, вставив соответствующий XHTML-код в форму.<br /> Заголовки должны " -"быть заключены между <h2> и </h2>." - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Вы можете найти дополнительную информацию о Freifunk по адресу" - -msgid "You can manually edit the selected community profile here." -msgstr "" -"Здесь вы сможете отредактировать config файл выбранного профиля сообщества." - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" -"Необходимо выбрать профиль перед его редактированием. Чтобы выбрать профиль, " -"перейдите в" - -msgid "and fill out all required fields." -msgstr "и заполните все необходимые поля." - -msgid "buffered" -msgstr "буферизировано" - -msgid "cached" -msgstr "кэшировано" - -msgid "e.g." -msgstr "напр." - -msgid "free" -msgstr "свободно" - -msgid "to disable it." -msgstr "чтобы выключить." - -msgid "used" -msgstr "использовано" - -msgid "wireless settings" -msgstr "настройки беспроводной сети" diff --git a/modules/luci-mod-freifunk/po/sk/freifunk.po b/modules/luci-mod-freifunk/po/sk/freifunk.po deleted file mode 100644 index 343f02204b..0000000000 --- a/modules/luci-mod-freifunk/po/sk/freifunk.po +++ /dev/null @@ -1,391 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/sv/freifunk.po b/modules/luci-mod-freifunk/po/sv/freifunk.po deleted file mode 100644 index cf42fa159b..0000000000 --- a/modules/luci-mod-freifunk/po/sv/freifunk.po +++ /dev/null @@ -1,392 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/tr/freifunk.po b/modules/luci-mod-freifunk/po/tr/freifunk.po deleted file mode 100644 index f485e01b42..0000000000 --- a/modules/luci-mod-freifunk/po/tr/freifunk.po +++ /dev/null @@ -1,392 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/uk/freifunk.po b/modules/luci-mod-freifunk/po/uk/freifunk.po deleted file mode 100644 index 5abfa11cc7..0000000000 --- a/modules/luci-mod-freifunk/po/uk/freifunk.po +++ /dev/null @@ -1,393 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/vi/freifunk.po b/modules/luci-mod-freifunk/po/vi/freifunk.po deleted file mode 100644 index 8076d61b21..0000000000 --- a/modules/luci-mod-freifunk/po/vi/freifunk.po +++ /dev/null @@ -1,398 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-16 06:58+0200\n" -"PO-Revision-Date: 2009-08-15 11:56+0200\n" -"Last-Translator: Stefan Pirwitz <i18n@freifunk-bno.de>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "Kiểm tra các phiên bản phần cứng mới và thực hiện tự động cập nhật." - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "Tọa độ" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "E-mail" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "Freifunk cập nhật từ xa" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "Xin chào và chào mừng gia nhập mạng lưới của" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "Hostname" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" -"Nếu bạn quan tâm đến đề án của chúng tôi, hãy liên hệ cộng đồng địa phương" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"Truy cập Internet phù thuộc vào kỹ thật và điều kiện tổ chức và có thể hoạt " -"động hoặc không hoạt động cho bạn" - -msgid "It is operated by" -msgstr "Nó hoạt động bởi " - -msgid "Keep configuration" -msgstr "Giữ cấu hình" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "Địa chỉ" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "Bộ nhớ" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "Tên" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "Chú ý" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "Điện thoại" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "Tên thật " - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "Bắt đầu cập nhật " - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "Phần cứng được cài đặt là phiên bản mới nhất." - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "Đây là điểm truy cập " - -msgid "Update Settings" -msgstr "Cập nhật cài đặt" - -msgid "Update available!" -msgstr "Cập nhật sẵn có!" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "Xác minh hình ảnh đã tải" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "Chúng tôi là phát triển mạng lưới nguồn mở không dây đầu tiên" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "Bạn có thể tìm thấy thông tin về Freifunk toàn cầu tại " - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-freifunk/po/zh-cn/freifunk.po b/modules/luci-mod-freifunk/po/zh-cn/freifunk.po deleted file mode 100644 index d273055d12..0000000000 --- a/modules/luci-mod-freifunk/po/zh-cn/freifunk.po +++ /dev/null @@ -1,403 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2014-06-22 14:33+0200\n" -"Last-Translator: phantasm131 <phantasm131@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" - -msgid "BSSID" -msgstr "BSSID" - -msgid "Bad (ETX > 10)" -msgstr "错误(ETX>10)" - -msgid "Basic Settings" -msgstr "基础设置" - -msgid "Basic settings" -msgstr "基础设置" - -msgid "Basic settings are incomplete. Please go to" -msgstr "基础设置不完整,请转到" - -msgid "Basic system settings" -msgstr "基础系统设置" - -msgid "Bitrate" -msgstr "速率" - -msgid "Channel" -msgstr "频道" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "检查新的固件版本并自动升级。" - -msgid "Client network size" -msgstr "客户端网络容量" - -msgid "Community" -msgstr "群组" - -msgid "Community profile" -msgstr "群组配置文件" - -msgid "Community settings" -msgstr "群组设置" - -msgid "Confirm Upgrade" -msgstr "确认升级" - -msgid "Contact" -msgstr "联系人" - -msgid "Contact information is incomplete. Please go to" -msgstr "联系人信息不全。请继续填写" - -msgid "Coordinates" -msgstr "位置" - -msgid "Country code" -msgstr "国家代码" - -msgid "Default routes" -msgstr "缺省路由" - -msgid "Disable default content" -msgstr "禁用默认内容" - -msgid "Diversity is enabled for device" -msgstr "启用多重设备" - -msgid "E-Mail" -msgstr "电子邮件" - -msgid "ESSID" -msgstr "ESSID" - -msgid "Edit index page" -msgstr "编辑索引页" - -msgid "Enable IPv6" -msgstr "启用IPv6" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "启用一个虚拟接入点(如果可以的话)" - -msgid "Error" -msgstr "错误" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "使用OpenStreetMap查找位置坐标" - -msgid "Freifunk" -msgstr "Freifunk" - -msgid "Freifunk Overview" -msgstr "Freifunk简介" - -msgid "Freifunk Remote Update" -msgstr "Freifunk远程更新" - -msgid "Gateway" -msgstr "网关" - -msgid "Go to" -msgstr "去" - -msgid "Good (2 < ETX < 4)" -msgstr "好(2<ETX<4)" - -msgid "Green" -msgstr "绿色" - -msgid "Hello and welcome in the network of" -msgstr "您好,欢迎加入网络" - -msgid "Hide OpenStreetMap" -msgstr "隐藏OpenStreetMap" - -msgid "Homepage" -msgstr "主页" - -msgid "Hostname" -msgstr "主机名" - -msgid "IPv6 Config" -msgstr "IPv6设置" - -msgid "IPv6 Prefix" -msgstr "IPv6前缀" - -msgid "IPv6 network in CIDR notation." -msgstr "CIDR表示法的IPv6网络。" - -msgid "If selected then the default content element is not shown." -msgstr "如果选中,那么默认内容元素将不显示。" - -msgid "If you are interested in our project then contact the local community" -msgstr "如果您对我们的项目感兴趣,请联系当地的社区" - -msgid "Index Page" -msgstr "索引页" - -msgid "Interface" -msgstr "接口" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" -"访问因特网取决于技术和机构的前提,可能会、也可能不会像您设想的那样运作。" - -msgid "It is operated by" -msgstr "它是由" - -msgid "Keep configuration" -msgstr "保留配置" - -msgid "Latitude" -msgstr "纬度" - -msgid "Legend" -msgstr "铭文" - -msgid "Load" -msgstr "加载" - -msgid "Local Time" -msgstr "本地时间" - -msgid "Location" -msgstr "所在位置" - -msgid "Longitude" -msgstr "经度" - -msgid "Map" -msgstr "地图定位" - -msgid "Map Error" -msgstr "定位出错" - -msgid "Memory" -msgstr "内存" - -msgid "Mesh prefix" -msgstr "Mesh前缀" - -msgid "Metric" -msgstr "度量单位" - -msgid "Mode" -msgstr "模式" - -msgid "Network" -msgstr "网络" - -msgid "Network for client DHCP addresses" -msgstr "客户端DHCP地址" - -msgid "Nickname" -msgstr "昵称" - -msgid "No default routes known." -msgstr "没有缺省路由" - -msgid "Notice" -msgstr "注意" - -msgid "OLSR" -msgstr "OLSR" - -msgid "Operator" -msgstr "操作者" - -msgid "Orange" -msgstr "橙色" - -msgid "Overview" -msgstr "概要" - -msgid "Package libiwinfo required!" -msgstr "需要libiwinfo包!" - -msgid "Phone" -msgstr "电话" - -msgid "Please fill in your contact details below." -msgstr "请填写下列联系信息" - -msgid "Please set your contact information" -msgstr "请提供联系信息" - -msgid "Power" -msgstr "电源" - -msgid "Processor" -msgstr "处理器" - -msgid "Profile" -msgstr "概要" - -msgid "Profile (Expert)" -msgstr "概要(专家)" - -msgid "Realname" -msgstr "真实姓名" - -msgid "Red" -msgstr "红色" - -msgid "SSID" -msgstr "SSID" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "在地图上用鼠标点出您的位置。需要连接到互联网地图。" - -msgid "Show OpenStreetMap" -msgstr "显示OpenStreetMap" - -msgid "Show on map" -msgstr "地图上显示" - -msgid "Signal" -msgstr "信号" - -msgid "Splash" -msgstr "公示" - -msgid "Start Upgrade" -msgstr "开始升级" - -msgid "Statistics" -msgstr "统计" - -msgid "Status" -msgstr "状态" - -msgid "Still usable (4 < ETX < 10)" -msgstr "一直可用(4<ETX<10)" - -msgid "System" -msgstr "系统" - -msgid "TX" -msgstr "TX" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "<em> libiwinfo </em>包没有安装。进行无线配置您必须安装此组件!" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" -"没有配置OLSRd从网络获取位置数据。<br />请确保正确配置域名服务插件,且<em> " -"latlon_file </em>选项被启用。" - -msgid "The installed firmware is the most recent version." -msgstr "所安装固件为最新版本。" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" -"这些基本设置为您本地的无线社区。这些设置定义为向导默认值并不会影响路由器的实" -"际配置。" - -msgid "These are the settings of your local community." -msgstr "当地社区设置。" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "这些页面将帮助您设置路由器Freifunk或类似的无线社区网络。" - -msgid "This is the access point" -msgstr "AP" - -msgid "Update Settings" -msgstr "升级设置" - -msgid "Update available!" -msgstr "可用更新!" - -msgid "Uptime" -msgstr "正常运行时间" - -msgid "VAP" -msgstr "VAP" - -msgid "Verify downloaded images" -msgstr "校验下载的镜像包" - -msgid "Very good (ETX < 2)" -msgstr "非常好(ETX<2)" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "我们倡议建立一个自由,独立和开放的无线mesh网络。" - -msgid "Wireless Overview" -msgstr "无线概要" - -msgid "Yellow" -msgstr "黄色" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" -"可以显示更多的内容,对公众的索引页下面的表格中插入有效的XHTML。<br />标题应放" -"在<H2>和</ H2>中" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "您可以找到更多有关全球Freifunk活动的信息" - -msgid "You can manually edit the selected community profile here." -msgstr "您可以在这里手动编辑所选社区配置文件。" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "编辑它之前,您需要选择一个配置文件。选择配置文件" - -msgid "and fill out all required fields." -msgstr "填写所有必填字段。" - -msgid "buffered" -msgstr "已缓存" - -msgid "cached" -msgstr "已暂存" - -msgid "e.g." -msgstr "例如:" - -msgid "free" -msgstr "空闲" - -msgid "to disable it." -msgstr "禁用它。" - -msgid "used" -msgstr "占用" - -msgid "wireless settings" -msgstr "无线设置" diff --git a/modules/luci-mod-freifunk/po/zh-tw/freifunk.po b/modules/luci-mod-freifunk/po/zh-tw/freifunk.po deleted file mode 100644 index 51432e2e3b..0000000000 --- a/modules/luci-mod-freifunk/po/zh-tw/freifunk.po +++ /dev/null @@ -1,390 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid "BSSID" -msgstr "" - -msgid "Bad (ETX > 10)" -msgstr "" - -msgid "Basic Settings" -msgstr "" - -msgid "Basic settings" -msgstr "" - -msgid "Basic settings are incomplete. Please go to" -msgstr "" - -msgid "Basic system settings" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "Channel" -msgstr "" - -msgid "Check for new firmware versions and perform automatic updates." -msgstr "" - -msgid "Client network size" -msgstr "" - -msgid "Community" -msgstr "" - -msgid "Community profile" -msgstr "" - -msgid "Community settings" -msgstr "" - -msgid "Confirm Upgrade" -msgstr "" - -msgid "Contact" -msgstr "" - -msgid "Contact information is incomplete. Please go to" -msgstr "" - -msgid "Coordinates" -msgstr "" - -msgid "Country code" -msgstr "" - -msgid "Default routes" -msgstr "" - -msgid "Disable default content" -msgstr "" - -msgid "Diversity is enabled for device" -msgstr "" - -msgid "E-Mail" -msgstr "" - -msgid "ESSID" -msgstr "" - -msgid "Edit index page" -msgstr "" - -msgid "Enable IPv6" -msgstr "" - -msgid "Enable a virtual access point (VAP) by default if possible." -msgstr "" - -msgid "Error" -msgstr "" - -msgid "Find your coordinates with OpenStreetMap" -msgstr "" - -msgid "Freifunk" -msgstr "" - -msgid "Freifunk Overview" -msgstr "" - -msgid "Freifunk Remote Update" -msgstr "" - -msgid "Gateway" -msgstr "" - -msgid "Go to" -msgstr "" - -msgid "Good (2 < ETX < 4)" -msgstr "" - -msgid "Green" -msgstr "" - -msgid "Hello and welcome in the network of" -msgstr "" - -msgid "Hide OpenStreetMap" -msgstr "" - -msgid "Homepage" -msgstr "" - -msgid "Hostname" -msgstr "" - -msgid "IPv6 Config" -msgstr "" - -msgid "IPv6 Prefix" -msgstr "" - -msgid "IPv6 network in CIDR notation." -msgstr "" - -msgid "If selected then the default content element is not shown." -msgstr "" - -msgid "If you are interested in our project then contact the local community" -msgstr "" - -msgid "Index Page" -msgstr "" - -msgid "Interface" -msgstr "" - -msgid "" -"Internet access depends on technical and organisational conditions and may " -"or may not work for you." -msgstr "" - -msgid "It is operated by" -msgstr "" - -msgid "Keep configuration" -msgstr "" - -msgid "Latitude" -msgstr "" - -msgid "Legend" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Local Time" -msgstr "" - -msgid "Location" -msgstr "" - -msgid "Longitude" -msgstr "" - -msgid "Map" -msgstr "" - -msgid "Map Error" -msgstr "" - -msgid "Memory" -msgstr "" - -msgid "Mesh prefix" -msgstr "" - -msgid "Metric" -msgstr "" - -msgid "Mode" -msgstr "" - -msgid "Network" -msgstr "" - -msgid "Network for client DHCP addresses" -msgstr "" - -msgid "Nickname" -msgstr "" - -msgid "No default routes known." -msgstr "" - -msgid "Notice" -msgstr "" - -msgid "OLSR" -msgstr "" - -msgid "Operator" -msgstr "" - -msgid "Orange" -msgstr "" - -msgid "Overview" -msgstr "" - -msgid "Package libiwinfo required!" -msgstr "" - -msgid "Phone" -msgstr "" - -msgid "Please fill in your contact details below." -msgstr "" - -msgid "Please set your contact information" -msgstr "" - -msgid "Power" -msgstr "" - -msgid "Processor" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Profile (Expert)" -msgstr "" - -msgid "Realname" -msgstr "" - -msgid "Red" -msgstr "" - -msgid "SSID" -msgstr "" - -msgid "" -"Select your location with a mouse click on the map. The map will only show " -"up if you are connected to the Internet." -msgstr "" - -msgid "Show OpenStreetMap" -msgstr "" - -msgid "Show on map" -msgstr "" - -msgid "Signal" -msgstr "" - -msgid "Splash" -msgstr "" - -msgid "Start Upgrade" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Still usable (4 < ETX < 10)" -msgstr "" - -msgid "System" -msgstr "" - -msgid "TX" -msgstr "" - -msgid "" -"The <em>libiwinfo</em> package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -msgid "" -"The OLSRd service is not configured to capture position data from the " -"network.<br /> Please make sure that the nameservice plugin is properly " -"configured and that the <em>latlon_file</em> option is enabled." -msgstr "" - -msgid "The installed firmware is the most recent version." -msgstr "" - -msgid "" -"These are the basic settings for your local wireless community. These " -"settings define the default values for the wizard and DO NOT affect the " -"actual configuration of the router." -msgstr "" - -msgid "These are the settings of your local community." -msgstr "" - -msgid "" -"These pages will assist you in setting up your router for Freifunk or " -"similar wireless community networks." -msgstr "" - -msgid "This is the access point" -msgstr "" - -msgid "Update Settings" -msgstr "" - -msgid "Update available!" -msgstr "" - -msgid "Uptime" -msgstr "" - -msgid "VAP" -msgstr "" - -msgid "Verify downloaded images" -msgstr "" - -msgid "Very good (ETX < 2)" -msgstr "" - -msgid "" -"We are an initiative to establish a free, independent and open wireless mesh " -"network." -msgstr "" - -msgid "Wireless Overview" -msgstr "" - -msgid "Yellow" -msgstr "" - -msgid "" -"You can display additional content on the public index page by inserting " -"valid XHTML in the form below.<br />Headlines should be enclosed between <" -"h2> and </h2>." -msgstr "" - -msgid "" -"You can find further information about the global Freifunk initiative at" -msgstr "" - -msgid "You can manually edit the selected community profile here." -msgstr "" - -msgid "" -"You need to select a profile before you can edit it. To select a profile go " -"to" -msgstr "" - -msgid "and fill out all required fields." -msgstr "" - -msgid "buffered" -msgstr "" - -msgid "cached" -msgstr "" - -msgid "e.g." -msgstr "" - -msgid "free" -msgstr "" - -msgid "to disable it." -msgstr "" - -msgid "used" -msgstr "" - -msgid "wireless settings" -msgstr "" diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js index acca7cf8a5..bab23cc3c7 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js @@ -1,7 +1,7 @@ function iface_reconnect(id) { L.halt(); L.dom.content(document.getElementById(id + '-ifc-description'), E('em', _('Interface is reconnecting...'))); - L.post(L.url('admin/network/iface_reconnect', id), L.run); + L.post(L.url('admin/network/iface_reconnect', id), null, L.run); } function iface_delete(ev) { @@ -81,7 +81,7 @@ L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null, desc = desc ? '%s (%s)'.format(desc, ifc.desc) : ifc.desc; L.itemlist(d, [ - _('Protocol'), '%h'.format(desc || '?'), + _('Protocol'), desc || '?', _('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null, _('MAC'), (!ifc.is_dynamic && !ifc.is_alias && ifc.macaddr) ? ifc.macaddr : null, _('RX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null, @@ -102,6 +102,7 @@ L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null, _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[8] : null, _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[9] : null, _('IPv6-PD'), ifc.ip6prefix, + _('Information'), ifc.is_auto ? null : _('Not started on boot'), _('Error'), ifc.errors ? ifc.errors[0] : null, _('Error'), ifc.errors ? ifc.errors[1] : null, _('Error'), ifc.errors ? ifc.errors[2] : null, @@ -113,7 +114,7 @@ L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null, var e = document.getElementById(ifc.id + '-ifc-edit'); if (e) e.disabled = true; - var link = L.url('admin/system/packages') + '?query=luci-proto&display=available'; + var link = L.url('admin/system/opkg') + '?query=luci-proto'; L.dom.content(d, [ E('em', _('Unsupported protocol type.')), E('br'), E('a', { href: link }, _('Install protocol extensions...')) diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js index 7e14d999bd..108a141f88 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js @@ -39,7 +39,7 @@ requestAnimationFrame(function() { L.itemlist(info, [ _('Mode'), iw.mode, - _('SSID'), '%h'.format(iw.ssid || '?'), + _('SSID'), iw.ssid || '?', _('BSSID'), is_assoc ? iw.bssid : null, _('Encryption'), is_assoc ? iw.encryption || _('None') : null, _('Channel'), is_assoc ? '%d (%.3f %s)'.format(iw.channel, iw.frequency || 0, _('GHz')) : null, diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index bdeb23d235..57e6bbb04c 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -70,7 +70,7 @@ L.poll(5, L.url('admin/network/wireless_status', networks.join(',')), null, }, [ E('img', { src: icon }), ' %d%%'.format(p) ])); L.itemlist(info, [ - _('SSID'), '%h'.format(iw.ssid || '?'), + _('SSID'), iw.ssid || '?', _('Mode'), iw.mode, _('BSSID'), iw.is_assoc ? iw.bssid : null, _('Encryption'), iw.is_assoc ? iw.encryption || _('None') : null, diff --git a/modules/luci-mod-network/luasrc/controller/admin/network.lua b/modules/luci-mod-network/luasrc/controller/admin/network.lua index 1da5eac464..2312dcf6e0 100644 --- a/modules/luci-mod-network/luasrc/controller/admin/network.lua +++ b/modules/luci-mod-network/luasrc/controller/admin/network.lua @@ -212,6 +212,7 @@ function iface_status(ifaces) is_up = net:is_up() and device:is_up(), is_alias = net:is_alias(), is_dynamic = net:is_dynamic(), + is_auto = net:is_auto(), rx_bytes = device:rx_bytes(), tx_bytes = device:tx_bytes(), rx_packets = device:rx_packets(), diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua index bff859befa..de7b8676e8 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua @@ -226,8 +226,8 @@ if not net:is_installed() then function p_install.write() return luci.http.redirect( - luci.dispatcher.build_url("admin/system/packages") .. - "?submit=1&install=%s" % net:opkg_package() + luci.dispatcher.build_url("admin/system/opkg") .. + "?query=%s" % net:opkg_package() ) end end @@ -247,7 +247,7 @@ for _, pr in ipairs(nw:get_protocols()) do end -auto = s:taboption("advanced", Flag, "auto", translate("Bring up on boot")) +auto = s:taboption("general", Flag, "auto", translate("Bring up on boot")) auto.default = (net:proto() == "none") and auto.disabled or auto.enabled delegate = s:taboption("advanced", Flag, "delegate", translate("Use builtin IPv6-management")) diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua index d79b3c4704..edeb193ef7 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua @@ -42,6 +42,8 @@ local update_interfaces = function(old_ifname, new_ifname) end end +local vlan_already_created + m.uci:foreach("network", "switch", function(x) local sid = x['.name'] @@ -200,8 +202,29 @@ m.uci:foreach("network", "switch", -- When creating a new vlan, preset it with the highest found vid + 1. s.create = function(self, section, origin) - -- Filter by switch - if m:get(origin, "device") ~= switch_name then + -- VLAN has already been created for another switch + if vlan_already_created then + return + + -- VLAN add button was pressed in an empty VLAN section so only + -- accept the create event if our switch is without existing VLANs + elseif origin == "" then + local is_empty_switch = true + + m.uci:foreach("network", "switch_vlan", + function(s) + if s.device == switch_name then + is_empty_switch = false + return false + end + end) + + if not is_empty_switch then + return + end + + -- VLAN was created for another switch + elseif m:get(origin, "device") ~= switch_name then return end @@ -227,6 +250,8 @@ m.uci:foreach("network", "switch", m:set(sid, has_vlan4k, max_id + 1) end + vlan_already_created = true + return sid end diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua index 9ab282c3ab..6cf4bdd244 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua @@ -177,6 +177,7 @@ if found_sta then else ch = s:taboption("general", Value, "_mode_freq", '<br />'..translate("Operating frequency")) ch.iwinfo = iw + ch.hostapd_acs = (os.execute("hostapd -vacs >/dev/null 2>/dev/null") == 0) ch.template = "cbi/wireless_modefreq" function ch.cfgvalue(self, section) @@ -376,6 +377,14 @@ meshfwd.rmempty = false meshfwd.default = "1" meshfwd:depends({mode="mesh"}) +mesh_rssi_th = s:taboption("advanced", Value, "mesh_rssi_threshold", + translate("RSSI threshold for joining"), + translate("0 = not using RSSI threshold, 1 = do not change driver default")) +mesh_rssi_th.rmempty = false +mesh_rssi_th.default = "0" +mesh_rssi_th.datatype = "range(-255,1)" +mesh_rssi_th:depends({mode="mesh"}) + ssid = s:taboption("general", Value, "ssid", translate("<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>")) ssid.datatype = "maxlength(32)" ssid:depends({mode="ap"}) @@ -388,6 +397,7 @@ ssid:depends({mode="sta-wds"}) ssid:depends({mode="wds"}) bssid = s:taboption("general", Value, "bssid", translate("<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>")) +bssid.datatype = "macaddr" network = s:taboption("general", Value, "network", translate("Network"), translate("Choose the network(s) you want to attach to this wireless interface or " .. @@ -665,22 +675,44 @@ if hwtype == "mac80211" or hwtype == "prism2" then local has_ap_eap = (os.execute("hostapd -veap >/dev/null 2>/dev/null") == 0) local has_sta_eap = (os.execute("wpa_supplicant -veap >/dev/null 2>/dev/null") == 0) + -- Probe SAE support + local has_ap_sae = (os.execute("hostapd -vsae >/dev/null 2>/dev/null") == 0) + local has_sta_sae = (os.execute("wpa_supplicant -vsae >/dev/null 2>/dev/null") == 0) + + -- Probe OWE support + local has_ap_owe = (os.execute("hostapd -vowe >/dev/null 2>/dev/null") == 0) + local has_sta_owe = (os.execute("wpa_supplicant -vowe >/dev/null 2>/dev/null") == 0) + if hostapd and supplicant then encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) + if has_ap_sae and has_sta_sae then + encr:value("sae", "WPA3-SAE", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}, {mode="mesh"}) + encr:value("sae-mixed", "WPA2-PSK/WPA3-SAE Mixed Mode", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) + end if has_ap_eap and has_sta_eap then encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}) encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}) end + if has_ap_owe and has_sta_owe then + encr:value("owe", "OWE", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) + end elseif hostapd and not supplicant then encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="ap-wds"}) encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="ap-wds"}) encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="ap-wds"}) + if has_ap_sae then + encr:value("sae", "WPA3-SAE", {mode="ap"}, {mode="ap-wds"}) + encr:value("sae-mixed", "WPA2-PSK/WPA3-SAE Mixed Mode", {mode="ap"}, {mode="ap-wds"}) + end if has_ap_eap then encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="ap-wds"}) encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="ap-wds"}) end + if has_ap_owe then + encr:value("owe", "OWE", {mode="ap"}, {mode="ap-wds"}) + end encr.description = translate( "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " .. "and ad-hoc mode) to be installed." @@ -689,10 +721,17 @@ if hwtype == "mac80211" or hwtype == "prism2" then encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) + if has_sta_sae then + encr:value("sae", "WPA3-SAE", {mode="sta"}, {mode="sta-wds"}, {mode="mesh"}) + encr:value("sae-mixed", "WPA2-PSK/WPA3-SAE Mixed Mode", {mode="sta"}, {mode="sta-wds"}) + end if has_sta_eap then encr:value("wpa", "WPA-EAP", {mode="sta"}, {mode="sta-wds"}) encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"}) end + if has_sta_owe then + encr:value("owe", "OWE", {mode="sta"}, {mode="sta-wds"}) + end encr.description = translate( "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " .. "and ad-hoc mode) to be installed." @@ -786,6 +825,8 @@ wpakey:depends("encryption", "psk") wpakey:depends("encryption", "psk2") wpakey:depends("encryption", "psk+psk2") wpakey:depends("encryption", "psk-mixed") +wpakey:depends("encryption", "sae") +wpakey:depends("encryption", "sae-mixed") wpakey.datatype = "wpakey" wpakey.rmempty = true wpakey.password = true @@ -858,9 +899,13 @@ if hwtype == "mac80211" or hwtype == "prism2" then ieee80211r:depends({mode="ap", encryption="psk"}) ieee80211r:depends({mode="ap", encryption="psk2"}) ieee80211r:depends({mode="ap", encryption="psk-mixed"}) + ieee80211r:depends({mode="ap", encryption="sae"}) + ieee80211r:depends({mode="ap", encryption="sae-mixed"}) ieee80211r:depends({mode="ap-wds", encryption="psk"}) ieee80211r:depends({mode="ap-wds", encryption="psk2"}) ieee80211r:depends({mode="ap-wds", encryption="psk-mixed"}) + ieee80211r:depends({mode="ap-wds", encryption="sae"}) + ieee80211r:depends({mode="ap-wds", encryption="sae-mixed"}) end ieee80211r.rmempty = true @@ -1087,8 +1132,8 @@ if hwtype == "mac80211" then ieee80211w = s:taboption("encryption", ListValue, "ieee80211w", translate("802.11w Management Frame Protection"), translate("Requires the 'full' version of wpad/hostapd " .. - "and support from the wifi driver <br />(as of Feb 2017: " .. - "ath9k and ath10k, in LEDE also mwlwifi and mt76)")) + "and support from the wifi driver <br />(as of Jan 2019: " .. + "ath9k, ath10k, mwlwifi and mt76)")) ieee80211w.default = "" ieee80211w.rmempty = true ieee80211w:value("", translate("Disabled (default)")) @@ -1098,8 +1143,14 @@ if hwtype == "mac80211" then ieee80211w:depends({mode="ap-wds", encryption="wpa2"}) ieee80211w:depends({mode="ap", encryption="psk2"}) ieee80211w:depends({mode="ap", encryption="psk-mixed"}) + ieee80211w:depends({mode="ap", encryption="sae"}) + ieee80211w:depends({mode="ap", encryption="sae-mixed"}) + ieee80211w:depends({mode="ap", encryption="owe"}) ieee80211w:depends({mode="ap-wds", encryption="psk2"}) ieee80211w:depends({mode="ap-wds", encryption="psk-mixed"}) + ieee80211w:depends({mode="ap-wds", encryption="sae"}) + ieee80211w:depends({mode="ap-wds", encryption="sae-mixed"}) + ieee80211w:depends({mode="ap-wds", encryption="owe"}) max_timeout = s:taboption("encryption", Value, "ieee80211w_max_timeout", translate("802.11w maximum timeout"), @@ -1127,9 +1178,13 @@ if hwtype == "mac80211" then key_retries:depends({mode="ap", encryption="wpa2"}) key_retries:depends({mode="ap", encryption="psk2"}) key_retries:depends({mode="ap", encryption="psk-mixed"}) + key_retries:depends({mode="ap", encryption="sae"}) + key_retries:depends({mode="ap", encryption="sae-mixed"}) key_retries:depends({mode="ap-wds", encryption="wpa2"}) key_retries:depends({mode="ap-wds", encryption="psk2"}) key_retries:depends({mode="ap-wds", encryption="psk-mixed"}) + key_retries:depends({mode="ap-wds", encryption="sae"}) + key_retries:depends({mode="ap-wds", encryption="sae-mixed"}) end if hwtype == "mac80211" or hwtype == "prism2" then diff --git a/modules/luci-mod-rpc/luasrc/controller/rpc.lua b/modules/luci-mod-rpc/luasrc/controller/rpc.lua index 1e8038b28a..37a976035e 100644 --- a/modules/luci-mod-rpc/luasrc/controller/rpc.lua +++ b/modules/luci-mod-rpc/luasrc/controller/rpc.lua @@ -14,7 +14,6 @@ function session_retrieve(sid, allowed_users) if type(sdat) == "table" and type(sdat.values) == "table" and type(sdat.values.token) == "string" and - type(sdat.values.secret) == "string" and type(sdat.values.username) == "string" and util.contains(allowed_users, sdat.values.username) then @@ -78,8 +77,7 @@ function rpc_auth() util.ubus("session", "set", { ubus_rpc_session = login.ubus_rpc_session, values = { - token = sys.uniqueid(16), - secret = sys.uniqueid(16) + token = sys.uniqueid(16) } }) @@ -87,8 +85,7 @@ function rpc_auth() if sdat then return { sid = sid, - token = sdat.token, - secret = sdat.secret + token = sdat.token } end end diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js index c2aa3a9b0d..3a895eca18 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js @@ -1,13 +1,15 @@ -function progressbar(q, v, m) +function progressbar(query, value, max, byte) { - var pg = document.querySelector(q), - vn = parseInt(v) || 0, - mn = parseInt(m) || 100, + var pg = document.querySelector(query), + vn = parseInt(value) || 0, + mn = parseInt(max) || 100, + fv = byte ? String.format('%1024.2mB', value) : value, + fm = byte ? String.format('%1024.2mB', max) : max, pc = Math.floor((100 / mn) * vn); if (pg) { pg.firstElementChild.style.width = pc + '%'; - pg.setAttribute('title', '%s / %s (%d%%)'.format(v, m, pc)); + pg.setAttribute('title', '%s / %s (%d%%)'.format(fv, fm, pc)); } } @@ -189,27 +191,32 @@ L.poll(5, L.location(), { status: 1 }, ); progressbar('#memtotal', - ((info.memory.free + info.memory.buffered) / 1024) + ' ' + _('kB'), - (info.memory.total / 1024) + ' ' + _('kB')); + info.memory.free + info.memory.buffered, + info.memory.total, + true); progressbar('#memfree', - (info.memory.free / 1024) + ' ' + _('kB'), - (info.memory.total / 1024) + ' ' + _('kB')); + info.memory.free, + info.memory.total, + true); progressbar('#membuff', - (info.memory.buffered / 1024) + ' ' + _('kB'), - (info.memory.total / 1024) + ' ' + _('kB')); + info.memory.buffered, + info.memory.total, + true); progressbar('#swaptotal', - (info.swap.free / 1024) + ' ' + _('kB'), - (info.swap.total / 1024) + ' ' + _('kB')); + info.swap.free, + info.swap.total, + true); progressbar('#swapfree', - (info.swap.free / 1024) + ' ' + _('kB'), - (info.swap.total / 1024) + ' ' + _('kB')); + info.swap.free, + info.swap.total, + true); progressbar('#conns', - info.conncount, info.connmax); + info.conncount, info.connmax, false); } ); diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js index 39ddab3979..a742243a03 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js @@ -165,7 +165,7 @@ function parse_output(table, s) else if (m[1].match(/^num /)) { continue; } - else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+\/\d+) +([a-f0-9:.]+\/\d+) +(.+)$/)) !== null) { + else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+(?:\/[a-f0-9:.]+)?) +([a-f0-9:.]+(?:\/[a-f0-9:.]+)?) +(.+)$/)) !== null) { var num = +m2[1], pkts = +m2[2], bytes = +m2[3], diff --git a/modules/luci-mod-status/luasrc/view/admin_status/connections.htm b/modules/luci-mod-status/luasrc/view/admin_status/connections.htm index d9099aa078..e3dd39d607 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/connections.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/connections.htm @@ -165,8 +165,8 @@ rows.push([ c.layer3.toUpperCase(), c.layer4.toUpperCase(), - src + ':' + c.sport, - dst + ':' + c.dport, + c.hasOwnProperty('sport') ? (src + ':' + c.sport) : src, + c.hasOwnProperty('dport') ? (dst + ':' + c.dport) : dst, '%1024.2mB (%d <%:Pkts.%>)'.format(c.bytes, c.packets) ]); } diff --git a/modules/luci-mod-system/luasrc/controller/admin/system.lua b/modules/luci-mod-system/luasrc/controller/admin/system.lua index 3e58896d63..49d4476c4e 100644 --- a/modules/luci-mod-system/luasrc/controller/admin/system.lua +++ b/modules/luci-mod-system/luasrc/controller/admin/system.lua @@ -9,6 +9,7 @@ function index() entry({"admin", "system", "system"}, cbi("admin_system/system"), _("System"), 1) entry({"admin", "system", "clock_status"}, post_on({ set = true }, "action_clock_status")) + entry({"admin", "system", "ntp_restart"}, call("action_ntp_restart"), nil).leaf = true entry({"admin", "system", "admin"}, firstchild(), _("Administration"), 2) entry({"admin", "system", "admin", "password"}, template("admin_system/password"), _("Router Password"), 1) @@ -64,6 +65,14 @@ function action_clock_status() luci.http.write_json({ timestring = os.date("%c") }) end +function action_ntp_restart() + if nixio.fs.access("/etc/init.d/sysntpd") then + os.execute("/etc/init.d/sysntpd restart") + end + luci.http.prepare_content("text/plain") + luci.http.write("0") +end + local function image_supported(image) return (os.execute("sysupgrade -T %q >/dev/null" % image) == 0) end diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua index c26fd475a4..33ec027e0d 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua @@ -22,6 +22,7 @@ s.addremove = false s:tab("general", translate("General Settings")) s:tab("logging", translate("Logging")) s:tab("language", translate("Language and Style")) +s:tab("advanced", translate("Advanced")) if has_zram then s:tab("zram", translate("ZRam Settings")) end -- @@ -66,7 +67,7 @@ end -- Logging -- -o = s:taboption("logging", Value, "log_size", translate("System log buffer size"), "kiB") +o = s:taboption("logging", Value, "log_size", translate("System log buffer size"), translate("KiB")) o.optional = true o.placeholder = 16 o.datatype = "uinteger" @@ -170,6 +171,28 @@ end -- +-- Advanced +-- + +o = s:taboption("advanced", Value, "_pollinterval", + translate("Polling interval"), + translate("Polling interval for status queries in seconds")) +o.datatype = "range(3, 20)" +o.default = 5 +o:value("3") +o:value("5") +o:value("10") + +function o.cfgvalue(...) + return m.uci:get("luci", "main", "pollinterval") +end + +function o.write(self, section, value) + m.uci:set("luci", "main", "pollinterval", value) +end + + +-- -- NTP -- diff --git a/modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm b/modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm index 2c96eb4180..796aa695c6 100644 --- a/modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm +++ b/modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm @@ -28,9 +28,29 @@ return false; } + + function btn_action(action) + { + if (action.name === "do_ntp_restart") + { + new XHR.get('<%=luci.dispatcher.build_url("admin", "system", "ntp_restart")%>', null, + function(x) + { + if (!x) + { + return; + } + }); + } + } + //]]></script> <span id="<%=self.option%>-clock-status"><em><%:Collecting data...%></em></span> <input type="button" class="cbi-button cbi-button-apply" value="<%:Sync with browser%>" onclick="return sync_clock(this)" /> +<% if require("nixio.fs").access("/etc/init.d/sysntpd") then %> +<input type="button" class="cbi-button cbi-button-apply" name="do_ntp_restart" value="<%:Sync with NTP-Server%>" onclick="btn_action(this)" /> +<% end %> + <%+cbi/valuefooter%> diff --git a/modules/luci-mod-system/luasrc/view/admin_system/password.htm b/modules/luci-mod-system/luasrc/view/admin_system/password.htm index 09cea4f74a..6ca02a83c1 100644 --- a/modules/luci-mod-system/luasrc/view/admin_system/password.htm +++ b/modules/luci-mod-system/luasrc/view/admin_system/password.htm @@ -2,6 +2,27 @@ <input type="password" aria-hidden="true" style="position:absolute; left:-10000px" /> +<script type="text/javascript"> +function checkPassword() { + var pw1 = document.body.querySelector('[name="pw1"]'); + var view = document.getElementById("passstrength"); + + var strongRegex = new RegExp("^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$", "g"); + var mediumRegex = new RegExp("^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$", "g"); + var enoughRegex = new RegExp("(?=.{6,}).*", "g"); + if (false == enoughRegex.test(pw1.value)) { + view.innerHTML = '<%:Password strength%>: <span style="color:red"><%:More Characters%></span>'; + } else if (strongRegex.test(pw1.value)) { + view.innerHTML = '<%:Password strength%>: <span style="color:green"><%:Strong%></span>'; + } else if (mediumRegex.test(pw1.value)) { + view.innerHTML = '<%:Password strength%>: <span style="color:orange"><%:Medium%></span>'; + } else { + view.innerHTML = '<%:Password strength%>: <span style="color:red"><%:Weak%></span>'; + } + return true; +} +</script> + <div class="cbi-map"> <h2><%:Router Password%></h2> @@ -13,7 +34,7 @@ <div class="cbi-value"> <label class="cbi-value-title" for="image"><%:Password%></label> <div class="cbi-value-field"> - <input type="password" name="pw1" /><!-- + <input type="password" name="pw1" onkeyup="checkPassword()"/><!-- --><button class="cbi-button cbi-button-neutral" title="<%:Reveal/hide password%>" aria-label="<%:Reveal/hide password%>" onclick="var e = this.previousElementSibling; e.type = (e.type === 'password') ? 'text' : 'password'">∗</button> </div> </div> @@ -23,6 +44,7 @@ <div class="cbi-value-field"> <input type="password" name="pw2" onkeydown="if (event.keyCode === 13) submitPassword(event)" /><!-- --><button class="cbi-button cbi-button-neutral" title="<%:Reveal/hide password%>" aria-label="<%:Reveal/hide password%>" onclick="var e = this.previousElementSibling; e.type = (e.type === 'password') ? 'text' : 'password'">∗</button> + <div id="passstrength" class="cbi-value-description"></div> </div> </div> </div> |