diff options
Diffstat (limited to 'modules/luci-base')
43 files changed, 13165 insertions, 3978 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index 568a4abb6..612c8ff94 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -2219,7 +2219,7 @@ var CBITypedSection = CBIAbstractSection.extend(/** @lends LuCI.form.TypedSectio }); if (this.title != null && this.title != '') - sectionEl.appendChild(E('legend', {}, this.title)); + sectionEl.appendChild(E('h3', {}, this.title)); if (this.description != null && this.description != '') sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description)); @@ -3138,7 +3138,7 @@ var CBINamedSection = CBIAbstractSection.extend(/** @lends LuCI.form.NamedSectio }); if (typeof(this.title) === 'string' && this.title !== '') - sectionEl.appendChild(E('legend', {}, this.title)); + sectionEl.appendChild(E('h3', {}, this.title)); if (typeof(this.description) === 'string' && this.description !== '') sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description)); diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js index 83c2807d7..faed3aa6d 100644 --- a/modules/luci-base/htdocs/luci-static/resources/luci.js +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -2553,10 +2553,16 @@ rpcBaseURL = Session.getLocalData('rpcBaseURL'); if (rpcBaseURL == null) { + var msg = { + jsonrpc: '2.0', + id: 'init', + method: 'list', + params: undefined + }; var rpcFallbackURL = this.url('admin/ubus'); - rpcBaseURL = Request.get(env.ubuspath).then(function(res) { - return (rpcBaseURL = (res.status == 400) ? env.ubuspath : rpcFallbackURL); + rpcBaseURL = Request.post(env.ubuspath, msg, { nobatch: true }).then(function(res) { + return (rpcBaseURL = res.status == 200 ? env.ubuspath : rpcFallbackURL); }, function() { return (rpcBaseURL = rpcFallbackURL); }).then(function(url) { diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js index 856421cd3..1f749c593 100644 --- a/modules/luci-base/htdocs/luci-static/resources/network.js +++ b/modules/luci-base/htdocs/luci-static/resources/network.js @@ -3571,6 +3571,24 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */ }, /** + * Get the Linux VLAN network device names. + * + * @returns {string[]} + * Returns the current Linux VLAN network device name as resolved + * from `ubus` runtime information or empty array if this network + * has no associated VLAN network devices. + */ + getVlanIfnames: function() { + var vlans = L.toArray(this.ubus('net', 'vlans')), + ifnames = []; + + for (var i = 0; i < vlans.length; i++) + ifnames.push(vlans[i]['ifname']); + + return ifnames; + }, + + /** * Get the name of the corresponding wifi radio device. * * @returns {null|string} @@ -3880,7 +3898,15 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */ * with this network. */ getAssocList: function() { - return callIwinfoAssoclist(this.getIfname()); + var tasks = []; + var ifnames = [ this.getIfname() ].concat(this.getVlanIfnames()); + + for (var i = 0; i < ifnames.length; i++) + tasks.push(callIwinfoAssoclist(ifnames[i])); + + return Promise.all(tasks).then(function(values) { + return Array.prototype.concat.apply([], values); + }); }, /** diff --git a/modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js b/modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js index f0a3ec579..bacbf559f 100644 --- a/modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js +++ b/modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js @@ -20,7 +20,10 @@ return network.registerProtocol('dhcp', { var dev = this.getL2Device() || this.getDevice(), o; o = s.taboption('general', form.Value, 'hostname', _('Hostname to send when requesting DHCP')); - o.datatype = 'hostname'; + o.default = ''; + o.value('', _('Send the hostname of this device')); + o.value('*', _('Do not send a hostname')); + o.datatype = 'or(hostname, "*")'; o.load = function(section_id) { return callFileRead('/proc/sys/kernel/hostname').then(L.bind(function(hostname) { this.placeholder = hostname; diff --git a/modules/luci-base/htdocs/luci-static/resources/rpc.js b/modules/luci-base/htdocs/luci-static/resources/rpc.js index 7bfc91336..f37f7bb6a 100644 --- a/modules/luci-base/htdocs/luci-static/resources/rpc.js +++ b/modules/luci-base/htdocs/luci-static/resources/rpc.js @@ -33,9 +33,6 @@ return baseclass.extend(/** @lends LuCI.rpc.prototype */ { req[i].params[2] ); } - else if (req.params) { - q += '/%s.%s'.format(req.params[1], req.params[2]); - } return request.post(rpcBaseURL + q, req, { timeout: (L.env.rpctimeout || 20) * 1000, diff --git a/modules/luci-base/luasrc/model/uci.lua b/modules/luci-base/luasrc/model/uci.lua index a50e28a87..816f6f205 100644 --- a/modules/luci-base/luasrc/model/uci.lua +++ b/modules/luci-base/luasrc/model/uci.lua @@ -123,10 +123,10 @@ function apply(self, rollback) if rollback then local sys = require "luci.sys" local conf = require "luci.config" - local timeout = tonumber(conf and conf.apply and conf.apply.rollback or 30) or 0 + local timeout = tonumber(conf and conf.apply and conf.apply.rollback or 90) or 0 _, err = call("apply", { - timeout = (timeout > 30) and timeout or 30, + timeout = (timeout > 90) and timeout or 90, rollback = true }) diff --git a/modules/luci-base/luasrc/sys.lua b/modules/luci-base/luasrc/sys.lua index c8ad5393e..bf21b5f19 100644 --- a/modules/luci-base/luasrc/sys.lua +++ b/modules/luci-base/luasrc/sys.lua @@ -379,7 +379,7 @@ function process.list() for line in ps do local pid, ppid, user, stat, vsz, mem, cpu, cmd = line:match( - "^ *(%d+) +(%d+) +(%S.-%S) +([RSDZTW][<NW ][<N ]) +(%d+) +(%d+%%) +(%d+%%) +(.+)" + "^ *(%d+) +(%d+) +(%S.-%S) +([RSDZTW][<NW ][<N ]) +(%d+m?) +(%d+%%) +(%d+%%) +(.+)" ) local idx = tonumber(pid) diff --git a/modules/luci-base/luasrc/view/header.htm b/modules/luci-base/luasrc/view/header.htm index e7b2d4787..cffe9482c 100644 --- a/modules/luci-base/luasrc/view/header.htm +++ b/modules/luci-base/luasrc/view/header.htm @@ -29,7 +29,7 @@ ubuspath = luci.config.main.ubuspath or '/ubus/', sessionid = luci.dispatcher.context.authsession, nodespec = luci.dispatcher.context.dispatched, - apply_rollback = math.max(applyconf and applyconf.rollback or 30, 30), + apply_rollback = math.max(applyconf and applyconf.rollback or 90, 90), apply_holdoff = math.max(applyconf and applyconf.holdoff or 4, 1), apply_timeout = math.max(applyconf and applyconf.timeout or 5, 1), apply_display = math.max(applyconf and applyconf.display or 1.5, 1), diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po index 4bac092ef..15949062c 100644 --- a/modules/luci-base/po/ar/base.po +++ b/modules/luci-base/po/ar/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: DJEBRI Ahmed El Amine <djebri.emp@gmail.com>\n" +"PO-Revision-Date: 2020-10-21 08:14+0000\n" +"Last-Translator: malrubaei <mhmd.alrubaei@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/luci/ar/>" "\n" "Language: ar\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.1\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -171,11 +171,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -189,7 +189,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -212,7 +212,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -224,27 +224,27 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -258,7 +258,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -393,7 +393,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -490,6 +490,10 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -504,7 +508,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 msgid "Advanced Settings" -msgstr "" +msgstr "إعدادات متقدمة" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" @@ -580,7 +584,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -604,7 +608,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -915,7 +919,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -926,6 +930,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -936,6 +941,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1152,13 +1158,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "العميل" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1197,7 +1203,7 @@ msgstr "جمع البيانات..." msgid "Command" msgstr "أمر" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1264,7 +1270,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1595,7 +1601,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1656,7 +1662,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1720,6 +1726,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1740,7 +1750,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1903,7 +1913,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -1960,7 +1970,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66 msgid "Enabled" -msgstr "ممكّن" +msgstr "مفعل" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462 msgid "Enables IGMP snooping on this bridge" @@ -2044,7 +2054,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2153,7 +2163,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2225,7 +2235,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2582,7 +2592,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2862,7 +2872,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2873,6 +2883,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2883,10 +2894,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3112,7 +3124,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3122,7 +3134,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3273,7 +3285,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3310,11 +3322,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3374,15 +3386,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3394,7 +3410,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3417,6 +3433,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3445,7 +3465,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3620,7 +3640,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3633,15 +3653,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3682,7 +3702,7 @@ msgstr "ذاكرة" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3694,7 +3714,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3792,7 +3812,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3922,7 +3942,7 @@ msgstr "شبكة الاتصال" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -3983,7 +4003,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4077,7 +4097,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4115,7 +4135,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4131,7 +4151,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4183,7 +4203,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4220,6 +4240,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4348,7 +4372,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4357,7 +4381,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4544,6 +4568,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4599,7 +4624,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4641,7 +4666,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4649,7 +4674,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4739,7 +4764,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4908,23 +4933,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "اعادة التشغيل" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4944,7 +4969,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5004,7 +5029,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5026,7 +5051,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5149,7 +5174,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5196,7 +5221,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5384,6 +5409,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5401,7 +5430,7 @@ msgstr "" msgid "Services" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5501,7 +5530,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5826,7 +5855,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5952,7 +5981,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6138,7 +6167,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6203,8 +6232,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6324,7 +6353,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6440,7 +6469,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6509,7 +6538,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6533,7 +6562,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6616,10 +6645,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6672,7 +6702,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6680,7 +6710,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6695,9 +6725,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6708,7 +6739,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6719,6 +6750,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6729,6 +6761,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6741,7 +6783,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6788,6 +6830,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "" @@ -6817,16 +6860,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6875,7 +6921,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6920,7 +6966,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6929,7 +6975,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "تحذير: هناك تغييرات غير محفوظة ستضيع عند إعادة التشغيل!" @@ -6966,7 +7012,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7075,7 +7121,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7174,8 +7220,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7365,9 +7411,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po index c9b474eea..0d9d8e5af 100644 --- a/modules/luci-base/po/bg/base.po +++ b/modules/luci-base/po/bg/base.po @@ -170,11 +170,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -188,7 +188,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -211,7 +211,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -223,27 +223,27 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -392,7 +392,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -489,6 +489,10 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -579,7 +583,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -603,7 +607,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -914,7 +918,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -925,6 +929,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -935,6 +940,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1151,13 +1157,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1196,7 +1202,7 @@ msgstr "" msgid "Command" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1263,7 +1269,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1594,7 +1600,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1655,7 +1661,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1719,6 +1725,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1739,7 +1749,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1902,7 +1912,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2043,7 +2053,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2152,7 +2162,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2224,7 +2234,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2581,7 +2591,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2861,7 +2871,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2872,6 +2882,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2882,10 +2893,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3111,7 +3123,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3121,7 +3133,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3272,7 +3284,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3309,11 +3321,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3373,15 +3385,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3393,7 +3409,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3416,6 +3432,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3444,7 +3464,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3619,7 +3639,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3632,15 +3652,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3681,7 +3701,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3693,7 +3713,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3791,7 +3811,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3921,7 +3941,7 @@ msgstr "" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -3982,7 +4002,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4076,7 +4096,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4114,7 +4134,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4130,7 +4150,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4182,7 +4202,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4219,6 +4239,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4347,7 +4371,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4356,7 +4380,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4543,6 +4567,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4598,7 +4623,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4640,7 +4665,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4648,7 +4673,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4738,7 +4763,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4907,23 +4932,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4943,7 +4968,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5003,7 +5028,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5025,7 +5050,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5148,7 +5173,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5195,7 +5220,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5383,6 +5408,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5400,7 +5429,7 @@ msgstr "" msgid "Services" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5500,7 +5529,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5825,7 +5854,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5951,7 +5980,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6137,7 +6166,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6202,8 +6231,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6323,7 +6352,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6439,7 +6468,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6508,7 +6537,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6532,7 +6561,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6615,10 +6644,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6671,7 +6701,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6679,7 +6709,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6694,9 +6724,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6707,7 +6738,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6718,6 +6749,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6728,6 +6760,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6740,7 +6782,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6787,6 +6829,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "" @@ -6816,16 +6859,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6874,7 +6920,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6919,7 +6965,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6928,7 +6974,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -6965,7 +7011,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7074,7 +7120,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7173,8 +7219,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7364,9 +7410,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po index 524501e7b..8338e42b4 100644 --- a/modules/luci-base/po/bn_BD/base.po +++ b/modules/luci-base/po/bn_BD/base.po @@ -164,11 +164,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -217,27 +217,27 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -251,7 +251,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -386,7 +386,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -483,6 +483,10 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -573,7 +577,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -597,7 +601,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -908,7 +912,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -919,6 +923,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -929,6 +934,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1145,13 +1151,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1190,7 +1196,7 @@ msgstr "" msgid "Command" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1257,7 +1263,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1588,7 +1594,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1649,7 +1655,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1713,6 +1719,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1733,7 +1743,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1896,7 +1906,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2037,7 +2047,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2146,7 +2156,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2218,7 +2228,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2575,7 +2585,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2855,7 +2865,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2866,6 +2876,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2876,10 +2887,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3105,7 +3117,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3115,7 +3127,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3266,7 +3278,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3303,11 +3315,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3367,15 +3379,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3387,7 +3403,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3410,6 +3426,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3438,7 +3458,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3613,7 +3633,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3626,15 +3646,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3675,7 +3695,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3687,7 +3707,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3785,7 +3805,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3915,7 +3935,7 @@ msgstr "" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -3976,7 +3996,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4070,7 +4090,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4108,7 +4128,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4124,7 +4144,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4176,7 +4196,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4213,6 +4233,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4341,7 +4365,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4350,7 +4374,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4537,6 +4561,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4592,7 +4617,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4634,7 +4659,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4642,7 +4667,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4732,7 +4757,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4901,23 +4926,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4937,7 +4962,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -4997,7 +5022,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5019,7 +5044,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5142,7 +5167,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5189,7 +5214,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5377,6 +5402,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5394,7 +5423,7 @@ msgstr "" msgid "Services" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5494,7 +5523,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5819,7 +5848,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5945,7 +5974,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6131,7 +6160,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6196,8 +6225,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6317,7 +6346,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6433,7 +6462,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6502,7 +6531,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6526,7 +6555,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6609,10 +6638,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6665,7 +6695,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6673,7 +6703,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6688,9 +6718,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6701,7 +6732,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6712,6 +6743,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6722,6 +6754,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6734,7 +6776,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6781,6 +6823,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "" @@ -6810,16 +6853,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6868,7 +6914,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6913,7 +6959,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6922,7 +6968,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -6959,7 +7005,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7068,7 +7114,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7167,8 +7213,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7358,9 +7404,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index 41c5eb9cb..bc672b6a8 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -174,11 +174,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "Port de consulta <abbr title=\"Domain Name System\">DNS</abbr> " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "Port del servidor <abbr title=\"Domain Name System\">DNS</abbr>" @@ -194,7 +194,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adreça <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -219,7 +219,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Passarel·la <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -231,15 +231,15 @@ msgstr "Configuració dels <abbr title=\"Light Emitting Diode\">LED</abbr>s" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nom <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Adreça <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -247,7 +247,7 @@ msgstr "" "Arrendaments de <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> <abbr title=\"màxims\">max.</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -255,7 +255,7 @@ msgstr "" "Mida <abbr title=\"màxima\">màx.</abbr> de paquet <abbr title=\"Extension " "Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "Consultes concurrents <abbr title=\"màximes\">max.</abbr>" @@ -271,7 +271,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -409,7 +409,7 @@ msgstr "Arrendaments DHCPv6 actius" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -507,6 +507,10 @@ msgstr "Adreça" msgid "Address to access local relay bridge" msgstr "Adreça per accedir al relay bridge local" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -599,7 +603,7 @@ msgstr "" msgid "Allow listed only" msgstr "Permet només les llistades" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Permetre el localhost" @@ -625,7 +629,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Permetre l'accés de l'usurari <em>root</em> amb contrasenya" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "Permet respostes del rang 127.0.0.0/8, p.e. per serveis RBL" @@ -939,7 +943,7 @@ msgstr "" "en els fitxers de configuració canviats i marcats per l'opkg, fitxers base " "essencials i els patrons de còpia de seguretat definits per l'usuari." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -950,6 +954,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -960,6 +965,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1187,13 +1193,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "ID de client a enviar en les sol·licituds DHCP" @@ -1232,7 +1238,7 @@ msgstr "S’estan recollint dades…" msgid "Command" msgstr "Ordre" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1299,7 +1305,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1632,7 +1638,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1695,7 +1701,7 @@ msgstr "Inhabilitat" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Descarta les respostes RFC1918 des de dalt" @@ -1763,6 +1769,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1783,7 +1793,7 @@ msgstr "" msgid "Domain required" msgstr "Es requereix un domini" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1951,7 +1961,7 @@ msgstr "Habilita el client NTP" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Habilita el servidor TFTP" @@ -2092,7 +2102,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2201,7 +2211,7 @@ msgstr "No hi ha accés al fitxer" msgid "Filename" msgstr "Nom de fitxer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Nom de fitxer de la imatge d'inici que es publica als clients" @@ -2273,7 +2283,7 @@ msgstr "" msgid "Firmware Version" msgstr "Versió de microprogramari" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2635,7 +2645,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2915,7 +2925,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2926,6 +2936,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2936,10 +2947,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3171,7 +3183,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3181,7 +3193,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3335,7 +3347,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3372,11 +3384,11 @@ msgstr "Llegenda:" msgid "Limit" msgstr "Límit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3436,15 +3448,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3458,7 +3474,7 @@ msgstr "" "Habilita el servei en totes les interfícies o, si no se n'especifica cap, en " "totes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3481,6 +3497,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3509,7 +3529,7 @@ msgstr "Adreça IPv4 local" msgid "Local IPv6 address" msgstr "Adreça IPv6 local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3684,7 +3704,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3697,15 +3717,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3746,7 +3766,7 @@ msgstr "Memòria" msgid "Memory usage (%)" msgstr "Ús de Memòria (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3758,7 +3778,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3856,7 +3876,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -3988,7 +4008,7 @@ msgstr "Xarxa" msgid "Network Utilities" msgstr "Utilitats de xarxa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Imatge d'inici de xarxa" @@ -4049,7 +4069,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4143,7 +4163,7 @@ msgstr "Soroll:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4181,7 +4201,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4197,7 +4217,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4249,7 +4269,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Cal especificar o el nom de host o l'adreça MAC!" @@ -4286,6 +4306,10 @@ msgstr "Obre una llista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4414,7 +4438,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4423,7 +4447,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4610,6 +4634,7 @@ msgstr "Part de la zona %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Contrasenya" @@ -4665,7 +4690,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4707,7 +4732,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Executa un reinici" @@ -4715,7 +4740,7 @@ msgstr "Executa un reinici" msgid "Perform reset" msgstr "Executa un reinici" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4805,7 +4830,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4976,23 +5001,23 @@ msgstr "Gràfiques en temps real" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reinicia" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Arranca de nou el sistema operatiu del teu dispositiu" @@ -5012,7 +5037,7 @@ msgstr "Reconnex aquesta interfície" msgid "References" msgstr "Referències" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5072,7 +5097,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5094,7 +5119,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Alguns ISP ho requereixen, per exemple el Charter amb DOCSIS 3" @@ -5217,7 +5242,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5264,7 +5289,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Directori arrel dels fitxers servits per TFTP" @@ -5454,6 +5479,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Ajusts de servidor" @@ -5471,7 +5500,7 @@ msgstr "Tipus de servei" msgid "Services" msgstr "Serveis" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5571,7 +5600,7 @@ msgstr "Senyal:" msgid "Size" msgstr "Mida" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5896,7 +5925,7 @@ msgstr "Rutes estàtiques" msgid "Static address" msgstr "Adreça estàtica" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6022,7 +6051,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Ajusts TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Arrel del servidor TFTP" @@ -6213,7 +6242,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6288,8 +6317,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6422,7 +6451,7 @@ msgstr "" msgid "Timezone" msgstr "Zona horària" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6542,7 +6571,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6611,7 +6640,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6635,7 +6664,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Canvis sense desar" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6718,10 +6747,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6774,7 +6804,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Utilitza la bandera de difusió" @@ -6782,7 +6812,7 @@ msgstr "Utilitza la bandera de difusió" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6797,9 +6827,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6810,7 +6841,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6821,6 +6852,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6831,6 +6863,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6843,7 +6885,7 @@ msgstr "Empra els certificats del sistema" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6890,6 +6932,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nom d'usuari" @@ -6919,16 +6962,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6977,7 +7023,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Classe de venidor per enviar al sol·licitar DHCP" @@ -7024,7 +7070,7 @@ msgstr "" "La xifratge WPA requereix que sigui instal·lat el wpa_supplicant (pel mode " "client) o el hostapd (pels modes AP i ad hoc)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Esperant el dispositiu..." @@ -7033,7 +7079,7 @@ msgstr "Esperant el dispositiu..." msgid "Warning" msgstr "Advertència" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7070,7 +7116,7 @@ msgid "Wireless Adapter" msgstr "Adaptador sense fils" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7185,7 +7231,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "qualsevol" @@ -7284,8 +7330,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7477,9 +7523,9 @@ msgstr "" msgid "unknown" msgstr "desconegut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index dff1a44cd..86e80fd14 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-03-11 23:48+0000\n" -"Last-Translator: Koli <lukas.koluch@gmail.com>\n" +"PO-Revision-Date: 2020-10-27 21:26+0000\n" +"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/luci/cs/>\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -92,7 +92,7 @@ msgstr "-- vyberte --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" msgid "0" -msgstr "" +msgstr "0" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" @@ -101,7 +101,7 @@ msgstr "0 = nepoužít práh RSSI, 1 = neměnit výchozí nastavení ovladače" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" msgid "1" -msgstr "" +msgstr "1" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 msgid "1 Minute Load:" @@ -114,17 +114,17 @@ msgstr "Vytížení za 15 minut:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 msgctxt "sstp log level value" msgid "2" -msgstr "" +msgstr "2" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57 msgctxt "sstp log level value" msgid "3" -msgstr "" +msgstr "3" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58 msgctxt "sstp log level value" msgid "4" -msgstr "" +msgstr "4" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 msgid "4-character hexadecimal ID" @@ -171,11 +171,11 @@ msgstr "801.11w časový limit opětovného pokusu" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "port dotazů <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "port serveru <abbr title=\"Domain Name System\">DNS</abbr>" @@ -191,7 +191,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protokol Verze 4\">IPv4</abbr>-adresa" @@ -215,7 +215,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protokol Verze 6\">IPv6</abbr>-brána" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internetový Protokol Verze 6\">IPv6</abbr>-Suffix " @@ -229,15 +229,15 @@ msgstr "Nastavení <abbr title=\"Light Emitting Diode\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Název pro <abbr title=\"Light Emitting Diode\">LED</abbr> kontrolku" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -245,7 +245,7 @@ msgstr "" "Nejvyšší počet <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> zápůjček" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -253,7 +253,7 @@ msgstr "" "Největší povolená velikost <abbr title=\"Extension Mechanisms for Domain " "Name System\">EDNS0</abbr> paketů" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "Nejvyšší počet souběžných dotazů" @@ -269,7 +269,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Složka se stejným názvem už existuje." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "Je třeba se znovu přihlásit, protože platnost relace přihlášení skončila." @@ -304,15 +304,15 @@ msgstr "ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365 msgid "ARP IP Targets" -msgstr "" +msgstr "Cíle ARP IP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357 msgid "ARP Interval" -msgstr "" +msgstr "Interval ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381 msgid "ARP Validation" -msgstr "" +msgstr "Ověření ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373 msgid "ARP mode to consider a slave as being up" @@ -412,7 +412,7 @@ msgstr "Aktivní propůjčené DHCPv6 adresy (leases)" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -420,11 +420,11 @@ msgstr "Ad-Hoc" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208 msgid "Adaptive load balancing (balance-alb, 6)" -msgstr "" +msgstr "Adaptivní vyvažování zátěže (balance-alb, 6)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207 msgid "Adaptive transmit load balancing (balance-tlb, 5)" -msgstr "" +msgstr "Adaptivní vyvažování přenosové zátěže (balance-tlb, 5)" #: modules/luci-base/htdocs/luci-static/resources/form.js:2167 #: modules/luci-base/htdocs/luci-static/resources/form.js:2170 @@ -509,6 +509,10 @@ msgstr "Adresa" msgid "Address to access local relay bridge" msgstr "Adresa pro přístup k místnímu relay bridge" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Adresy" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -531,7 +535,7 @@ msgstr "Celkový vysílací výkon (ACTATP)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258 msgid "Aggregation Selection Logic" -msgstr "" +msgstr "Logika výběru agregace" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Aggregator: All slaves down or has no slaves (stable, 0)" @@ -591,7 +595,7 @@ msgstr "Povolit vše mimo uvedené" #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3 msgid "Allow full UCI access for legacy applications" -msgstr "" +msgstr "Povolit plný přístup UCI pro starší aplikace" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892 msgid "Allow legacy 802.11b rates" @@ -601,13 +605,13 @@ msgstr "Povolit starší rychlosti 802.11b" msgid "Allow listed only" msgstr "Povolit pouze uvedené" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Povolit localhost" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157 msgid "Allow rebooting the device" -msgstr "" +msgstr "Povolit restartování zařízení" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36 msgid "Allow remote hosts to connect to local SSH forwarded ports" @@ -621,13 +625,13 @@ msgstr "Povolit přihlašovaní root účtu pomocí hesla" #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3 msgid "Allow system feature probing" -msgstr "" +msgstr "Povolit zkoumání funkcí systému" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 msgid "Allow the <em>root</em> user to login with password" msgstr "Povolit <em>root</em> účtu přihlášení bez nastaveného hesla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "Povolit upstream odpovědi na 127.0.0.0/8 rozsah, např. pro RBL služby" @@ -642,11 +646,11 @@ msgstr "Vždy oznamovat výchozí směrovač" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5 msgid "Always off (kernel: none)" -msgstr "" +msgstr "Vždy vypnuto (jádro: žádné)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6 msgid "Always on (kernel: default-on)" -msgstr "" +msgstr "Vždy zapnuto (jádro: default-on)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907 msgid "" @@ -658,7 +662,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/form.js:603 msgid "An error occurred while saving the form:" -msgstr "" +msgstr "Při ukládání formuláře došlo k chybě:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 @@ -953,7 +957,7 @@ msgstr "" "souborů označených opkg, nezbyných systémových souborů a souborů " "vyhovujících uživatelem určeným vzorům." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -964,6 +968,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -974,6 +979,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1067,19 +1073,19 @@ msgstr "Kategorie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519 msgid "Certificate constraint (Domain)" -msgstr "" +msgstr "Omezení certifikátu (doména)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516 msgid "Certificate constraint (SAN)" -msgstr "" +msgstr "Omezení certifikátu (SAN)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513 msgid "Certificate constraint (Subject)" -msgstr "" +msgstr "Omezení certifikátu (subjekt)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522 msgid "Certificate constraint (Wildcard)" -msgstr "" +msgstr "Omezení certifikátu (wildcard)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571 @@ -1203,13 +1209,13 @@ msgstr "" "Klepnutím na \"Uložit mtdblock\" stáhnete zadaný soubor mtdblock. (POZOR: " "TATO FUNKCE JE PRO PROFESIONÁLY!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Klient" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Identifikátor klienta, odesílaný v DHCP požadavku" @@ -1250,7 +1256,7 @@ msgstr "Shromažďování údajů…" msgid "Command" msgstr "Příkaz" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Příkaz OK" @@ -1280,7 +1286,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Compute outgoing checksum (optional)." -msgstr "" +msgstr "Vypočítat odchozí kontrolní součet (volitelné)." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4028 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426 @@ -1320,9 +1326,9 @@ msgstr "Pokus o připojení se nezdařil" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 msgid "Connection attempt failed." -msgstr "" +msgstr "Pokus o připojení se nezdařil." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Spojení ztraceno" @@ -1620,7 +1626,7 @@ msgstr "Cíl" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48 msgid "Destination port" -msgstr "" +msgstr "Cílový port" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165 @@ -1656,13 +1662,13 @@ msgstr "Zařízení se restartuje…" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 msgid "Device not managed by ModemManager." -msgstr "" +msgstr "Zařízení není spravováno nástrojem ModemManager." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4163 msgid "Device unreachable!" msgstr "Zařízení nedostupné!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Zařízení není dostupné! Pokračuje čekání na zařízení..." @@ -1725,7 +1731,7 @@ msgstr "Zakázáno" msgid "Disassociate On Low Acknowledgement" msgstr "Zrušit spojení při nízkém počtu ACK potvrzení" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Vyřadit upstream RFC1918 odpovědi" @@ -1742,7 +1748,7 @@ msgstr "Pokud o odpojení se nezdařil" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 msgid "Disconnection attempt failed." -msgstr "" +msgstr "Pokud o odpojení se nezdařil." #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2861 @@ -1796,6 +1802,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Nepřeposílat reverzní dotazy na místní sítě" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Opravdu chcete „%s“ smazat?" @@ -1816,7 +1826,7 @@ msgstr "Opravdu chcete smazat složku „%s“ a tím i vše, co obsahuje?" msgid "Domain required" msgstr "Vyžadována doména" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Whitelist domén" @@ -1990,7 +2000,7 @@ msgstr "Povolit NTP klienta" msgid "Enable Single DES" msgstr "Povolit Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Zapnout TFTP server" @@ -2133,7 +2143,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Vynechat rozhraní" @@ -2247,7 +2257,7 @@ msgstr "Soubor není přístupný" msgid "Filename" msgstr "Název souboru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Název souboru s bootovacím obrazem oznamovaný klientům" @@ -2321,7 +2331,7 @@ msgstr "Soubor s firmware" msgid "Firmware Version" msgstr "Verze firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Pevný zdrojový port pro odchozí DNS dotazy" @@ -2470,7 +2480,7 @@ msgstr "Metrika brány" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" -msgstr "Obecné nastavení" +msgstr "Obecná nastavení" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967 @@ -2544,7 +2554,7 @@ msgstr "" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19 msgid "Grant access to SSH configuration" -msgstr "" +msgstr "Udělit přístup ke konfiguraci SSH" #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12 msgid "Grant access to basic LuCI procedures" @@ -2552,11 +2562,11 @@ msgstr "" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64 msgid "Grant access to crontab configuration" -msgstr "" +msgstr "Udělit přístup ke konfiguraci crontab" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60 msgid "Grant access to firewall status" -msgstr "" +msgstr "Udělit přístup ke stavu brány firewall" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116 msgid "Grant access to flash operations" @@ -2564,47 +2574,47 @@ msgstr "" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:86 msgid "Grant access to main status display" -msgstr "" +msgstr "Udělit přístup k hlavnímu zobrazení stavu" #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3 msgid "Grant access to mmcli" -msgstr "" +msgstr "Udělit přístup k mmcli" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84 msgid "Grant access to mount configuration" -msgstr "" +msgstr "Udělit přístup ke konfiguraci připojení úložišť" #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3 msgid "Grant access to network configuration" -msgstr "" +msgstr "Udělit přístup ke konfiguraci sítě" #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:46 msgid "Grant access to network diagnostic tools" -msgstr "" +msgstr "Udělit přístup k síťovým diagnostickým nástrojům" #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36 msgid "Grant access to network status information" -msgstr "" +msgstr "Udělit přístup k informacím o stavu sítě" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13 msgid "Grant access to process status" -msgstr "" +msgstr "Udělit přístup ke stavu procesů" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3 msgid "Grant access to realtime statistics" -msgstr "" +msgstr "Udělit přístup ke statistikám v reálném čase" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42 msgid "Grant access to startup configuration" -msgstr "" +msgstr "Udělit přístup ke konfiguraci spouštění" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3 msgid "Grant access to system configuration" -msgstr "" +msgstr "Udělit přístup ke konfiguraci systému" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30 msgid "Grant access to system logs" -msgstr "" +msgstr "Udělit přístup k systémovým protokolům" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47 msgid "Grant access to the system route status" @@ -2612,7 +2622,7 @@ msgstr "" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120 msgid "Grant access to wireless status display" -msgstr "" +msgstr "Udělit přístup k zobrazení stavu bezdrátového připojení" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66 msgid "Group Password" @@ -2684,7 +2694,7 @@ msgid "Host-Uniq tag content" msgstr "Obsah značky Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2814,7 +2824,7 @@ msgstr "IPv4 adresa" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164 msgid "IPv4-Gateway" -msgstr "" +msgstr "IPv4 brána" #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10 @@ -2908,7 +2918,7 @@ msgstr "IPv6 suffix" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "IPv6 support" -msgstr "" +msgstr "Podpora IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 @@ -2945,7 +2955,7 @@ msgstr "Je-li zapnuto, je povoleno 1DES" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "If checked, adds \"+ipv6\" to the pppd options" -msgstr "" +msgstr "Pokud je zaškrtnuto, přidá \"+ipv6\" do možností pppd" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 msgid "If checked, encryption is disabled" @@ -2964,7 +2974,7 @@ msgid "" "device node" msgstr "Namísto pevného uzlu zařízení připojovat pomocí názvu oddílu" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2975,6 +2985,7 @@ msgstr "Namísto pevného uzlu zařízení připojovat pomocí názvu oddílu" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2985,10 +2996,11 @@ msgstr "Namísto pevného uzlu zařízení připojovat pomocí názvu oddílu" msgid "If unchecked, no default route is configured" msgstr "Pokud není povoleno, není nastaven žádný výchozí směrovací záznam" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3060,21 +3072,21 @@ msgstr "Příchozí:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Incoming checksum" -msgstr "" +msgstr "Příchozí kontrolní součet" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Incoming key" -msgstr "" +msgstr "Příchozí klíč" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Incoming serialization" -msgstr "" +msgstr "Příchozí serializace" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166 msgid "Info" @@ -3125,7 +3137,7 @@ msgstr "" #: modules/luci-compat/luasrc/view/cbi/map.htm:43 msgid "Insufficient permissions to read UCI configuration." -msgstr "" +msgstr "Nedostatečná oprávnění ke čtení konfigurace UCI." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:464 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471 @@ -3224,7 +3236,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Uvedené VLAN ID je neplatné! Každé ID musí být jedinečné" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Neplatný argument" @@ -3234,7 +3246,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Neplatný příkaz" @@ -3251,7 +3263,7 @@ msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 msgid "Invalid value" -msgstr "" +msgstr "Neplatná hodnota" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Isolate Clients" @@ -3360,7 +3372,7 @@ msgstr "LCP interval upozornění" #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101 msgid "LED Configuration" -msgstr "" +msgstr "Konfigurace LED" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:974 msgid "LLC" @@ -3387,7 +3399,7 @@ msgstr "Odezva" msgid "Leaf" msgstr "Leaf" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Doba zapůjčení" @@ -3424,13 +3436,13 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 #, fuzzy msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Omezit obsluhování DNS na rozhraní podsítí, na kterých je DNS poskytováno." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Omezit naslouchání na tato rozhraní a zpětnou smyčku." @@ -3506,15 +3518,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Seznam SSH klíčů pro autentizaci" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Seznam domén, pro které povolit odpovědi podle RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Seznam hostitelů, kteří udávají falešné hodnoty NX domén" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Naslouchající rozhraní" @@ -3527,7 +3543,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Poslouchat pouze na daném rozhraní, nebo pokud není specifikováno, na všech" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Port pro příchozí dotazy DNS" @@ -3550,6 +3566,10 @@ msgstr "Načítání obsahu adresáře…" msgid "Loading view…" msgstr "Načítání zobrazení…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Místní IP adresa" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3578,7 +3598,7 @@ msgstr "Místní IPv4 adresa" msgid "Local IPv6 address" msgstr "Místní IPv6 adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Pouze lokální služba" @@ -3762,7 +3782,7 @@ msgstr "" msgid "Manual" msgstr "Manuálně" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Master" @@ -3775,15 +3795,15 @@ msgstr "Max. dosažitelná rychlost přenosu dat (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Maximální povolený naslouchací interval" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Nejvyšší povolené množství aktivních DHCP zápůjček" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Nejvyšší povolené množství souběžných DNS dotazů" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Nejvyšší povolená velikost EDNS.0 UDP paketů" @@ -3824,7 +3844,7 @@ msgstr "Paměť" msgid "Memory usage (%)" msgstr "Využití paměti (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3836,7 +3856,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh Id" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Metoda nebyla nalezena" @@ -3913,7 +3933,7 @@ msgstr "Modemové zařízení" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 msgid "Modem disconnection in progress. Please wait." -msgstr "" +msgstr "Probíhá odpojování modemu. Počkejte prosím." #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 @@ -3934,7 +3954,7 @@ msgstr "" msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Sledování" @@ -4067,7 +4087,7 @@ msgstr "Síť" msgid "Network Utilities" msgstr "Síťové nástroje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Síťový bootovací obraz" @@ -4083,11 +4103,11 @@ msgstr "Síťové zařízení není k dispozici" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "Síťové rozhraní" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" -msgstr "" +msgstr "Nové rozhraní pro \"%s\" nelze vytvořit: %s" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713 msgid "New interface name…" @@ -4128,7 +4148,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Nebyla přijata žádná data" @@ -4222,7 +4242,7 @@ msgstr "Šum:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nepreemptivní CRC chyby (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Bez zástupných znaků" @@ -4260,7 +4280,7 @@ msgstr "Není k dispozici" msgid "Not started on boot" msgstr "Nespouštěno při startu" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Není podporováno" @@ -4276,7 +4296,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "Počet záznamů v mezipaměti DNS (max. 10 000, 0 bez mezipaměťi)" @@ -4329,7 +4349,7 @@ msgstr "Link-local trasa" msgid "On-State Delay" msgstr "Zapnutí prodlevy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Jedno jméno nebo mac adresa, musí být zadáno!" @@ -4366,6 +4386,10 @@ msgstr "Otevřít seznam..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Provozní frekvence" @@ -4373,11 +4397,11 @@ msgstr "Provozní frekvence" #: modules/luci-base/htdocs/luci-static/resources/form.js:1971 #: modules/luci-base/htdocs/luci-static/resources/form.js:3653 msgid "Option \"%s\" contains an invalid input value." -msgstr "" +msgstr "Volba \"%s\" obsahuje neplatnou vstupní hodnotu." #: modules/luci-base/htdocs/luci-static/resources/form.js:1984 msgid "Option \"%s\" must not be empty." -msgstr "" +msgstr "Volba \"%s\" nesmí být prázdná." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4037 msgid "Option changed" @@ -4483,21 +4507,21 @@ msgstr "Odchozí:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Outgoing checksum" -msgstr "" +msgstr "Odchozí kontrolní součet" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Outgoing key" -msgstr "" +msgstr "Odchozí klíč" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Outgoing serialization" -msgstr "" +msgstr "Odchozí serializace" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50 msgid "Output Interface" @@ -4508,7 +4532,7 @@ msgstr "Výstupní rozhraní" msgid "Output zone" msgstr "Výstupní zóna" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4517,7 +4541,7 @@ msgstr "Výstupní zóna" msgid "Override MAC address" msgstr "Přepsat MAC adresu" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4706,6 +4730,7 @@ msgstr "Část zóny %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Heslo" @@ -4761,7 +4786,7 @@ msgstr "Cesta k vnitřnímu klientskému certifikátu" msgid "Path to inner Private Key" msgstr "Cesta k vnitřnímu soukromému klíči" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4803,7 +4828,7 @@ msgstr "Perfektní dopředná bezpečnost" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Provést restart" @@ -4811,7 +4836,7 @@ msgstr "Provést restart" msgid "Perform reset" msgstr "Provést reset" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Přístup zamítnut" @@ -4903,7 +4928,7 @@ msgstr "" "Po takovém množství LCP echo selhání předpokládám, že peer je mrtvý. " "Použijte 0 pro ignorování chyb" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Zabránit naslouchání na těchto rozhraních." @@ -5082,23 +5107,23 @@ msgstr "Grafy v reálném čase" msgid "Reassociation Deadline" msgstr "Termín reasociace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Opětovné nastavení ochrany" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Restartovat" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Probíhá restartování…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Restartuje operační systém vašeho zařízení" @@ -5118,7 +5143,7 @@ msgstr "Přepojit toto rozhraní" msgid "References" msgstr "Reference" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5155,12 +5180,12 @@ msgstr "Vzdálená IPv4 adresa nebo FQDN" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 msgid "Remote IPv6 address" -msgstr "" +msgstr "Vzdálená IPv6 adresa" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "Remote IPv6 address or FQDN" -msgstr "" +msgstr "Vzdálená IPv6 adresa nebo FQDN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" @@ -5178,7 +5203,7 @@ msgstr "Vyžádat IPv6 adresu" msgid "Request IPv6-prefix of length" msgstr "Vyžádat IPv6 prefix délky" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Časový limit požadavku" @@ -5201,7 +5226,7 @@ msgid "Required" msgstr "Vyžadováno" # Charter je poskytovate -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Vyžadováno u některých ISP, např. Charter s DocSIS 3" @@ -5332,7 +5357,7 @@ msgstr "Soubory Resolv a Hosts" msgid "Resolve file" msgstr "Soubor resolve" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Zdroj nebyl nalezen" @@ -5379,7 +5404,7 @@ msgstr "Požadavek na vrácení se nezdařil se stavem <code>%h</code>" msgid "Reverting configuration…" msgstr "Vracení konfigurace…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Kořenový adresář souborů, přístupných přes TFTP" @@ -5481,11 +5506,11 @@ msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" -msgstr "" +msgstr "SSTP" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 msgid "SSTP Server" -msgstr "" +msgstr "Server SSTP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "SWAP" @@ -5573,6 +5598,10 @@ msgstr "" "Odesílat LCP echo požadavky každých x sekund, účinné pouze ve spojení s " "prahovou hodnotou selhání" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Nastavení serveru" @@ -5590,7 +5619,7 @@ msgstr "Typ služby" msgid "Services" msgstr "Služby" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Sezení vypršelo" @@ -5692,7 +5721,7 @@ msgstr "Signál:" msgid "Size" msgstr "Velikost" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Velikost mezipaměti DNS dotazů" @@ -5759,7 +5788,7 @@ msgstr "Zdrojová adresa" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 msgid "Source interface" -msgstr "" +msgstr "Zdrojové rozhraní" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "" @@ -6029,7 +6058,7 @@ msgstr "Statické trasy" msgid "Static address" msgstr "Statická adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6159,7 +6188,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Nastavení TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Kořenový adresář TFTP serveru" @@ -6330,7 +6359,7 @@ msgstr "Délka IPv6 prefixu v bitech" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163 msgid "The local IPv4 address" -msgstr "" +msgstr "Místní IPv4 adresa" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46 @@ -6341,7 +6370,7 @@ msgstr "Lokální IPv4 adresa, přes kterou je tunel vytvořen (volitelné)." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169 msgid "The local IPv4 netmask" -msgstr "" +msgstr "Síťová maska místní IPv4 adresy" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46 @@ -6370,7 +6399,7 @@ msgstr "" "zbývající porty pro místní síť." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Příkaz k restartu selhal s kódem %d" @@ -6449,8 +6478,8 @@ msgstr "" "Nahraný soubor s firmware neobsahuje podporovaný formát. Ujistěte se, že " "jste vybrali správný formát pro svou platformu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6596,7 +6625,7 @@ msgstr "Časový interval pro obnovování klíčů GTK" msgid "Timezone" msgstr "Časové pásmo" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Přihlásit se…" @@ -6715,7 +6744,7 @@ msgstr "Nelze určit externí IP adresu" msgid "Unable to determine upstream interface" msgstr "Nelze určit odchozí WAN rozhraní" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Nelze odeslat" @@ -6754,7 +6783,7 @@ msgstr "Nelze přeložit název hostitele druhé strany" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:284 msgid "Unable to restart firewall: %s" -msgstr "" +msgstr "Nelze restartovat bránu firewall: %s" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:342 @@ -6784,7 +6813,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "Neznámá chyba (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Neznámý chybový kód" @@ -6808,7 +6837,7 @@ msgstr "Nepojmenovaný klíč" msgid "Unsaved Changes" msgstr "Neuložené změny" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Nespecifikovaná chyba" @@ -6896,10 +6925,11 @@ msgstr "Používat inzerované DHCP servery" msgid "Use DHCP gateway" msgstr "Použít DHCP bránu" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6952,7 +6982,7 @@ msgstr "Použít jako externí překrytí (/overlay)" msgid "Use as root filesystem (/)" msgstr "Použít jako kořenový souborový systém (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Použít příznak broadcastu" @@ -6960,7 +6990,7 @@ msgstr "Použít příznak broadcastu" msgid "Use builtin IPv6-management" msgstr "Použít vestavěnou správu IPv6" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6975,9 +7005,10 @@ msgstr "Použít vestavěnou správu IPv6" msgid "Use custom DNS servers" msgstr "Použít vlastní DNS servery" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6988,7 +7019,7 @@ msgstr "Použít vlastní DNS servery" msgid "Use default gateway" msgstr "Použít výchozí bránu" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6999,6 +7030,7 @@ msgstr "Použít výchozí bránu" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7009,6 +7041,16 @@ msgstr "Použít výchozí bránu" msgid "Use gateway metric" msgstr "Použít metriku brány" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Použít směrovací tabulku" @@ -7021,7 +7063,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7076,6 +7118,7 @@ msgstr "Uživatelský klíč (PEM formát)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Uživatelské jméno" @@ -7105,16 +7148,19 @@ msgid "VPN Local port" msgstr "Lokální VPN port" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN server" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Serverový VPN port" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "SHA1 hash serverového certifikátu VPN" @@ -7134,7 +7180,7 @@ msgstr "" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10 msgid "VXLANv6 (RFC7348)" -msgstr "" +msgstr "VXLANv6 (RFC7348)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556 @@ -7157,13 +7203,13 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154 msgid "Value must not be empty" -msgstr "" +msgstr "Hodnota nesmí být prázdná" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73 msgid "Vendor" msgstr "Výrobce" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Třída výrobce (Vendor Class) odesílaná při vyžádání DHCP" @@ -7210,7 +7256,7 @@ msgstr "" "Šifrování WPA vyžaduje nainstalovaný wpa_supplicant (pro klientský režim) " "nebo hostapd (pro AP a ad-hoc režim)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Čekání na zařízení…" @@ -7219,7 +7265,7 @@ msgstr "Čekání na zařízení…" msgid "Warning" msgstr "Varování" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Varování: Existují neuložené změny, které se po restartu ztratí!" @@ -7259,7 +7305,7 @@ msgid "Wireless Adapter" msgstr "Bezdrátový adaptér" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7374,7 +7420,7 @@ msgstr "Nastavení ZRam" msgid "ZRam Size" msgstr "Velikost ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "libovolný" @@ -7473,8 +7519,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7552,7 +7598,7 @@ msgstr "minuty/minut" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422 msgid "netif_carrier_ok()" -msgstr "" +msgstr "netif_carrier_ok()" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46 msgid "no" @@ -7666,9 +7712,9 @@ msgstr "jedinečná hodnota" msgid "unknown" msgstr "neznámý" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index 2b9f32a67..d4bef7014 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2020-09-04 13:36+0000\n" +"PO-Revision-Date: 2020-10-20 05:26+0000\n" "Last-Translator: Andreas Götz <agoetz@tdt.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/luci/de/>" "\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.3.1-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -175,11 +175,11 @@ msgstr "802.11w: Wiederholungsintervall" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> Abfrageport" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> Serverport" @@ -195,7 +195,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Addresse" @@ -220,7 +220,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hexadezimal)" @@ -233,17 +233,17 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfiguration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" "<abbr title=\"Eindeutiger DHCP Bezeichner (DHCP Unique Identifier)\">DUID</" "abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -251,7 +251,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> Anzahl von <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>-Leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -259,7 +259,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> Größe von <abbr title=\"Extension " "Mechanisms for Domain Name System\">EDNS0</abbr>-Paketen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">Max.</abbr> Anzahl gleichzeitiger Abfragen" @@ -275,7 +275,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Es existiert bereits ein Verzeichnis mit dem gleichen Namen." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "Ein neuer Login ist erforderlich da die Benutzersitzung abgelaufen ist." @@ -414,7 +414,7 @@ msgstr "Aktive DHCPv6-Leases" msgid "Active-Backup policy (active-backup, 1)" msgstr "Active-Backup-Richtlinie (Active-Backup, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -511,6 +511,10 @@ msgstr "Adresse" msgid "Address to access local relay bridge" msgstr "Adresse der lokalen Relay-Brücke" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -609,7 +613,7 @@ msgstr "Veraltete 802.11b-Raten erlauben" msgid "Allow listed only" msgstr "Nur gelistete erlauben" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Erlaube localhost" @@ -635,7 +639,7 @@ msgstr "" "Erlaubt es dem <em>root</em> Benutzer sich mit einem Passwort statt einem " "Zertifikat einzuloggen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -964,7 +968,7 @@ msgstr "" "markierten Konfigurationsdateien. Des Weiteren sind die durch " "benutzerdefinierte Dateiemuster betroffenen Dateien enthalten." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -977,6 +981,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -987,6 +992,7 @@ msgstr "An Schnittstelle binden" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1227,13 +1233,13 @@ msgstr "" "herunterzuladen. (Hinweis: Diese Funktionalität ist nur für Experten " "gedacht!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Zu sendende Client-ID bei DHCP Anfragen" @@ -1274,7 +1280,7 @@ msgstr "Sammle Daten..." msgid "Command" msgstr "Befehl" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Kommando OK" @@ -1345,7 +1351,7 @@ msgstr "Verbindungsversuch fehlgeschlagen" msgid "Connection attempt failed." msgstr "Verbindungsversuch gescheitert" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Verbindung verloren" @@ -1690,7 +1696,7 @@ msgstr "Gerät wird nicht vom ModemManager verwaltet." msgid "Device unreachable!" msgstr "Das Gerät ist nicht erreichbar!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Gerät nicht erreichbar! Wartet immer noch..." @@ -1753,7 +1759,7 @@ msgstr "Deaktiviert" msgid "Disassociate On Low Acknowledgement" msgstr "Trennung bei schlechtem Antwortverhalten" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Eingehende RFC1918-Antworten verwerfen" @@ -1826,6 +1832,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Soll \"%s\" wirklich gelöscht werden?" @@ -1847,7 +1857,7 @@ msgstr "Soll das Verzeichnis \"%s\" wirklich rekursiv gelöscht werden?" msgid "Domain required" msgstr "Anfragen nur mit Domain" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Domain-Whitelist" @@ -2022,7 +2032,7 @@ msgstr "Aktiviere NTP-Client" msgid "Enable Single DES" msgstr "Single-DES aktivieren" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "TFTP-Server aktivieren" @@ -2167,7 +2177,7 @@ msgstr "Alle 30 Sekunden (langsam, 0)" msgid "Every second (fast, 1)" msgstr "Jede Sekunde (schnell, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Schnittstellen ausschließen" @@ -2280,7 +2290,7 @@ msgstr "Datei nicht verfügbar" msgid "Filename" msgstr "Dateiname" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird" @@ -2354,7 +2364,7 @@ msgstr "Firmware-Datei" msgid "Firmware Version" msgstr "Firmware Version" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Fester Port für ausgehende DNS-Anfragen" @@ -2720,7 +2730,7 @@ msgid "Host-Uniq tag content" msgstr "\"Host-Uniq\"-Bezeichner" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -3006,7 +3016,7 @@ msgstr "" "Wenn angegeben, wird das Gerät nach anhhand des Partitionslabels statt " "fester Gerätedatei gemounted" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3017,6 +3027,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3027,10 +3038,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Wenn deaktiviert, wird keine Default-Route gesetzt" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3266,7 +3278,7 @@ msgstr "Ungültige VLAN ID angegeben! Nur IDs zwischen %d und %d sind erlaubt." msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Ungültige VLAN-ID angegeben! Nur eindeutige IDs sind zulässig" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Ungültiges Argument" @@ -3278,7 +3290,7 @@ msgstr "" "Ungültige Trägerliste. Möglicherweise wurden zu viele Träger geschaffen. " "Dieses Protokoll unterstützt nur einen Träger." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Ungültiges Kommando" @@ -3432,7 +3444,7 @@ msgstr "Latenz" msgid "Leaf" msgstr "Zweigstelle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Laufzeit" @@ -3469,13 +3481,13 @@ msgstr "Legende:" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "DNS-Dienste auf direkte lokale Subnetze beschränken um Missbrauch durch " "Dritte zu verhindern." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Dienste auf die angegeben Schnittstellen plus Loopback beschränken." @@ -3549,15 +3561,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Liste der SSH Schlüssel zur Authentifikation" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Liste von Domains für welche RFC1918-Antworten erlaubt sind" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Liste von Servern die falsche \"NX Domain\" Antworten liefern" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Aktive Schnittstellen" @@ -3571,7 +3587,7 @@ msgstr "" "Nur auf die gegebene Schnittstelle reagieren, nutze alle wenn nicht " "spezifiziert" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Serverport für eingehende DNS Abfragen" @@ -3594,6 +3610,10 @@ msgstr "Lade Verzeichniseinträge…" msgid "Loading view…" msgstr "Lade Seite…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3622,7 +3642,7 @@ msgstr "Lokale IPv4 Adresse" msgid "Local IPv6 address" msgstr "Lokale IPv6 Adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Nur lokale Dienste" @@ -3808,7 +3828,7 @@ msgstr "Das Root-Dateisystem muss mit folgenden Kommandsos vorbereitet werden:" msgid "Manual" msgstr "Manuell" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Master" @@ -3821,15 +3841,15 @@ msgstr "Maximal erreichbare Datenrate (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Maximal erlaubter Inaktivitätszeitraum" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Maximal zulässige Anzahl von aktiven DHCP-Leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Maximal zulässige Anzahl an gleichzeitigen DNS-Anfragen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Maximal zulässige Größe von EDNS.0 UDP Paketen" @@ -3870,7 +3890,7 @@ msgstr "Speicher" msgid "Memory usage (%)" msgstr "Speichernutzung (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3882,7 +3902,7 @@ msgstr "Mesh-ID" msgid "Mesh Id" msgstr "Mesh-ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Methode nicht gefunden" @@ -3982,7 +4002,7 @@ msgstr "Modem ist deaktiviert." msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4114,7 +4134,7 @@ msgstr "Netzwerk" msgid "Network Utilities" msgstr "Netzwerk-Werkzeuge" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Netzwerk-Boot-Image" @@ -4175,7 +4195,7 @@ msgstr "Kein Signal empfangen" msgid "No client associated" msgstr "Keine Clients assoziiert" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Keine Daten empfangen" @@ -4270,7 +4290,7 @@ msgstr "Rauschen:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nicht-präemptive CRC-Fehler (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "An Schnittstellen binden" @@ -4308,7 +4328,7 @@ msgstr "Nicht vorhanden" msgid "Not started on boot" msgstr "Beim Hochfahren nicht starten" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Nicht unterstützt" @@ -4324,7 +4344,7 @@ msgstr "DNS-Auflösung" msgid "Number of IGMP membership reports" msgstr "Anzahl der IGMP-Mitgliedschaftsberichte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Anzahl der zwischengespeicherten DNS-Einträge. Maximum sind 10000 Einträge, " @@ -4378,7 +4398,7 @@ msgstr "Link-lokale Route" msgid "On-State Delay" msgstr "Verzögerung für Anschalt-Zustand" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Es muss entweder ein Hostname oder eine MAC-Adresse angegeben werden!" @@ -4404,8 +4424,8 @@ msgstr "Ein oder mehr benötigte Felder sind nicht ausgefüllt!" msgid "" "Only if current active slave fails and the primary slave is up (failure, 2)" msgstr "" -"Nur wenn der aktuell aktive Slave ausfällt und der primäre Slave aktiv ist (" -"Fehler, 2)" +"Nur wenn der aktuell aktive Slave ausfällt und der primäre Slave aktiv ist " +"(Fehler, 2)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 @@ -4417,6 +4437,10 @@ msgstr "Liste öffnen..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Betriebsfrequenz" @@ -4559,7 +4583,7 @@ msgstr "Ausgehende Schnittstelle" msgid "Output zone" msgstr "Output-Zone" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4568,7 +4592,7 @@ msgstr "Output-Zone" msgid "Override MAC address" msgstr "MAC-Adresse überschreiben" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4757,6 +4781,7 @@ msgstr "Teil von Zone %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Passwort" @@ -4812,7 +4837,7 @@ msgstr "Pfad zum inneren Client-Zertifikat" msgid "Path to inner Private Key" msgstr "Pfad zum inneren, privaten Schlüssel" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Pausiert" @@ -4854,7 +4879,7 @@ msgstr "Perfect Forward Secrecy" msgid "Perform outgoing packets serialization (optional)." msgstr "Serialisierung ausgehender Pakete durchführen (optional)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Neustart durchführen" @@ -4862,7 +4887,7 @@ msgstr "Neustart durchführen" msgid "Perform reset" msgstr "Reset durchführen" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Zugriff verweigert" @@ -4954,7 +4979,7 @@ msgstr "" "Deklariere den Client als tot nach der angegebenen Anzahl von LCP Echo " "Fehlschlägen, nutze den Wert 0 um Fehler zu ignorieren" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Verhindert das Binden an diese Schnittstellen." @@ -4972,14 +4997,14 @@ msgid "" "better than current slave (better, 1)" msgstr "" "Der primäre wird zum aktiven Slave, wenn er wieder hochfährt und wenn " -"Geschwindigkeit und Duplex zusätzlich besser sind als der aktuelle Slave (" -"besser, 1)" +"Geschwindigkeit und Duplex zusätzlich besser sind als der aktuelle Slave " +"(besser, 1)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227 msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" -"Der Primäre wird immer dann zum aktiven Slave, wenn er wieder hochfährt (" -"immer 0)" +"Der Primäre wird immer dann zum aktiven Slave, wenn er wieder hochfährt " +"(immer 0)" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61 msgid "Private Key" @@ -5143,23 +5168,23 @@ msgstr "Echtzeit-Diagramme" msgid "Reassociation Deadline" msgstr "Reassoziierungsfrist" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "DNS-Rebind-Schutz" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Neu Starten" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Neustart…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Startet das Betriebssystem des Routers neu" @@ -5179,7 +5204,7 @@ msgstr "Diese Schnittstelle neu verbinden" msgid "References" msgstr "Verweise" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Aktualisierend" @@ -5239,7 +5264,7 @@ msgstr "IPv6-Adresse anfordern" msgid "Request IPv6-prefix of length" msgstr "IPv6-Präfix dieser Länge anfordern" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Anfrage-Timeout" @@ -5261,7 +5286,7 @@ msgstr "Serialisierung eingehender Pakete erforderlich (optional)." msgid "Required" msgstr "Benötigt" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" "Wird von bestimmten Internet-Providern benötigt, z.B. Charter mit DOCSIS 3" @@ -5393,7 +5418,7 @@ msgstr "Resolv- und Hosts-Dateien" msgid "Resolve file" msgstr "Resolv-Datei" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Resource nicht gefunden" @@ -5440,7 +5465,7 @@ msgstr "Anforderung zum Verwerfen mit Status <code>%h</code> fehlgeschlagen" msgid "Reverting configuration…" msgstr "Verwerfe Konfigurationsänderungen…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Wurzelverzeichnis für über TFTP ausgelieferte Dateien" @@ -5637,6 +5662,10 @@ msgstr "" "Sende LCP Echo Anforderungen im angegebenem Interval in Sekunden, nur " "effektiv in Verbindung mit einem Fehler-Schwellwert" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Servereinstellungen" @@ -5654,7 +5683,7 @@ msgstr "Service-Typ" msgid "Services" msgstr "Dienste" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Sitzung abgelaufen" @@ -5759,7 +5788,7 @@ msgstr "Signal:" msgid "Size" msgstr "Größe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Größe des DNS-Caches" @@ -6083,8 +6112,8 @@ msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes) (optional)." msgstr "" -"Geben Sie eine andere MTU (Maximum Transmission Unit) als die Standard-MTU (" -"1280 Byte) an (optional)." +"Geben Sie eine andere MTU (Maximum Transmission Unit) als die Standard-MTU " +"(1280 Byte) an (optional)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 @@ -6148,7 +6177,7 @@ msgstr "Statische Routen" msgid "Static address" msgstr "Statische Adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6281,7 +6310,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP Einstellungen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP Wurzelverzeichnis" @@ -6510,7 +6539,7 @@ msgstr "" "Ports für ein lokales Netzwerk." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Der Neustartbefehl ist mit dem Code %d fehlgeschlagen" @@ -6595,8 +6624,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6745,7 +6774,7 @@ msgstr "Zeitintervall für die neubestimmung des Gruppenschlüssels" msgid "Timezone" msgstr "Zeitzone" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Zum Login…" @@ -6866,7 +6895,7 @@ msgstr "Externe IP-Adresse konnte nicht bestimmt werden" msgid "Unable to determine upstream interface" msgstr "Externe Netzwerkschnittstelle konnte nicht bestimmt werden" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Kann Anfrage nicht zustellen" @@ -6935,7 +6964,7 @@ msgstr "Unbekannte und nicht unterstützte Verbindungsmethode." msgid "Unknown error (%s)" msgstr "Protokollfehler: %s" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Unbekannter Fehlercode" @@ -6959,7 +6988,7 @@ msgstr "Unbenannter Schlüssel" msgid "Unsaved Changes" msgstr "Ungespeicherte Änderungen" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Unbestimmter Fehler" @@ -6987,7 +7016,7 @@ msgstr "Up Delay" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3860 msgid "Upload" -msgstr "Hochladen" +msgstr "Upload" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:413 msgid "" @@ -7047,10 +7076,11 @@ msgstr "DHCP beworbene Server verwenden" msgid "Use DHCP gateway" msgstr "Benutze DHCP-Gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7106,7 +7136,7 @@ msgstr "Als externes Overlay benutzen (/overlay)" msgid "Use as root filesystem (/)" msgstr "Als Root-Dateisystem benutzen (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Benutze Broadcast-Flag" @@ -7114,7 +7144,7 @@ msgstr "Benutze Broadcast-Flag" msgid "Use builtin IPv6-management" msgstr "Eingebautes IPv6-Management nutzen" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7129,9 +7159,10 @@ msgstr "Eingebautes IPv6-Management nutzen" msgid "Use custom DNS servers" msgstr "Benutze eigene DNS-Server" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7142,7 +7173,7 @@ msgstr "Benutze eigene DNS-Server" msgid "Use default gateway" msgstr "Benutze Standard-Gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7153,6 +7184,7 @@ msgstr "Benutze Standard-Gateway" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7163,6 +7195,16 @@ msgstr "Benutze Standard-Gateway" msgid "Use gateway metric" msgstr "Benutze Gateway-Metrik" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Benutze Routing-Tabelle" @@ -7175,7 +7217,7 @@ msgstr "Benutze Systemzertifikate" msgid "Use system certificates for inner-tunnel" msgstr "Benutze Systemzertifikate für inneren Tunnel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7232,6 +7274,7 @@ msgstr "PEM-kodierter Benutzerschlüssel" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Benutzername" @@ -7261,16 +7304,19 @@ msgid "VPN Local port" msgstr "Lokaler VPN-Port" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN-Server" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "VPN-Server Port" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "SHA1-Hash des VPN-Server-Zertifikates" @@ -7321,7 +7367,7 @@ msgstr "Der Wert darf nicht leer sein" msgid "Vendor" msgstr "Hersteller" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse" @@ -7368,7 +7414,7 @@ msgstr "" "WPA-Verschlüsselung benötigt wpa_supplicant (für Client-Modus) oder hostapd " "(für AP oder Ad-Hoc Modus)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Warte auf Gerät..." @@ -7377,7 +7423,7 @@ msgstr "Warte auf Gerät..." msgid "Warning" msgstr "Warnung" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Achtung: Es gibt ungespeicherte Änderungen die bei einem Neustart verloren " @@ -7419,7 +7465,7 @@ msgid "Wireless Adapter" msgstr "WLAN-Gerät" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7540,7 +7586,7 @@ msgstr "ZRAM Einstellungen" msgid "ZRam Size" msgstr "ZRAM Größe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "beliebig" @@ -7639,8 +7685,8 @@ msgstr "Beispiel: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "z.B.: abwerfen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7832,9 +7878,9 @@ msgstr "eindeutigen Wert" msgid "unknown" msgstr "unbekannt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index d9f3f2056..947de798b 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -173,11 +173,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "Θύρα ερωτημάτων <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "Θύρα εξυπηρετητή <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr>" @@ -193,7 +193,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Διεύθυνση <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -218,7 +218,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Πύλη <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -230,15 +230,15 @@ msgstr "Παραμετροποίηση <abbr title=\"Light Emitting Diode\">LED< msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Όνομα <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Διεύθυνση <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -246,7 +246,7 @@ msgstr "" "<abbr title=\"μέγιστο\">Μεγ.</abbr> πλήθος <abbr title=\"Πρωτόκολλο " "Παραμετροποίησης Δυναμικού Συστήματος\">DHCP</abbr> leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -254,7 +254,7 @@ msgstr "" "<abbr title=\"μέγιστο\">Μεγ.</abbr> μέγεθος πακέτου <abbr title=\"Μηχανισμοί " "επεκτάσεων για Συστήματα Ονόματος Τομέα\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"μέγιστο\">Μεγ.</abbr> πλήθος ταυτόχρονων ερωτηματων" @@ -268,7 +268,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Ένας φάκελος με το ίδιο όνομα υπάρχει ήδη." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Απαιτείται νέα σύνδεση καθώς η συνεδρία ελέγχου ταυτότητας έληξε." @@ -408,7 +408,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -506,6 +506,10 @@ msgstr "Διεύθυνση" msgid "Address to access local relay bridge" msgstr "Διεύθυνση για πρόσβαση σε την τοπική γέφυρα αναμετάδοσης" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -598,7 +602,7 @@ msgstr "" msgid "Allow listed only" msgstr "Να επιτρέπονται μόνο αυτές στην λίστα" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Να επιτρέπεται το localhost" @@ -625,7 +629,7 @@ msgid "Allow the <em>root</em> user to login with password" msgstr "" "Να επιτρέπεται στον χρήστη <em>root</em> να συνδέετε με κωδικό πρόσβασης" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -942,7 +946,7 @@ msgstr "" "ουσιώδη βασικά αρχεία καθώς και καθορισμένα από το χρήστη μοτίβα αντιγράφων " "ασφαλείας." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -953,6 +957,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -963,6 +968,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1185,13 +1191,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "πελάτης" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Αναγνωριστικό πελάτη που αποστέλλετε κατά την αίτηση DHCP" @@ -1233,7 +1239,7 @@ msgstr "Συλλογή δεδομένων..." msgid "Command" msgstr "Εντολή" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1300,7 +1306,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1636,7 +1642,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1699,7 +1705,7 @@ msgstr "Απενεργοποιημένο" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Αγνόησε τις απαντήσεις ανοδικής ροής RFC1918" @@ -1771,6 +1777,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1791,7 +1801,7 @@ msgstr "" msgid "Domain required" msgstr "Απαίτηση για όνομα τομέα" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Λευκή λίστα τομέων" @@ -1962,7 +1972,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Ενεργοποίηση εξυπηρετητή TFTP" @@ -2103,7 +2113,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2215,7 +2225,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Όνομα αρχείου της εικόνας εκκίνησης που διαφημίζετε στους πελάτες" @@ -2287,7 +2297,7 @@ msgstr "" msgid "Firmware Version" msgstr "Έκδοση Υλικολογισμικού" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2649,7 +2659,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2933,7 +2943,7 @@ msgstr "" "Αν οριστεί, προσάρτησε τη συσκευή με βάση την ετικέτα της αντί για το " "καθορισμένο όνομα της" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2944,6 +2954,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2954,10 +2965,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3189,7 +3201,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3199,7 +3211,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3353,7 +3365,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3390,11 +3402,11 @@ msgstr "Υπόμνημα:" msgid "Limit" msgstr "Όριο" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3454,15 +3466,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3474,7 +3490,7 @@ msgstr "Θύρα ακρόασης" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3497,6 +3513,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3525,7 +3545,7 @@ msgstr "Τοπική διεύθυνση IPv4" msgid "Local IPv6 address" msgstr "Τοπική διεύθυνση IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3700,7 +3720,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3713,15 +3733,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Μέγιστος επιτρεπόμενος αριθμός ενεργών DHCP leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Μέγιστος επιτρεπόμενος αριθμός ταυτόχρονων ερωτημάτων DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Μέγιστο επιτρεπόμενο μέγεθος EDNS.0 UDP πακέτων" @@ -3763,7 +3783,7 @@ msgstr "Μνήμη" msgid "Memory usage (%)" msgstr "Χρήση Μνήμης (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3775,7 +3795,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3873,7 +3893,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Παρακολούθηση" @@ -4005,7 +4025,7 @@ msgstr "Δίκτυο" msgid "Network Utilities" msgstr "Εργαλεία Δικτύου" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4066,7 +4086,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4160,7 +4180,7 @@ msgstr "Θόρυβος:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4198,7 +4218,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4214,7 +4234,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4266,7 +4286,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4303,6 +4323,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4431,7 +4455,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4440,7 +4464,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4627,6 +4651,7 @@ msgstr "Μέρος της ζώνης %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Κωδικός Πρόσβασης" @@ -4682,7 +4707,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4724,7 +4749,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Εκτέλεση επανεκκίνησης" @@ -4732,7 +4757,7 @@ msgstr "Εκτέλεση επανεκκίνησης" msgid "Perform reset" msgstr "Διενέργεια αρχικοποίησης" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4822,7 +4847,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4994,23 +5019,23 @@ msgstr "Γραφήματα πραγματικού χρόνου" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Επανεκκίνηση" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Επανεκκίνηση του λειτουργικού συστήματος της συσκευής σας" @@ -5030,7 +5055,7 @@ msgstr "Επανασύνδεση της διεπαφής" msgid "References" msgstr "Αναφορές" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5090,7 +5115,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5112,7 +5137,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5235,7 +5260,7 @@ msgstr "Αρχεία Resolv και Hosts" msgid "Resolve file" msgstr "Αρχείο Resolve" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5282,7 +5307,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Κατάλογος Root για αρχεία που σερβίρονται μέσω TFTP" @@ -5473,6 +5498,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Ρυθμίσεις Εξυπηρετητή" @@ -5490,7 +5519,7 @@ msgstr "Είδος Υπηρεσίας" msgid "Services" msgstr "Υπηρεσίες" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5590,7 +5619,7 @@ msgstr "Σήμα:" msgid "Size" msgstr "Μέγεθος" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5915,7 +5944,7 @@ msgstr "Στατικές Διαδρομές" msgid "Static address" msgstr "Στατική διεύθυνση" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6041,7 +6070,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Ρυθμίσεις TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6231,7 +6260,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6303,8 +6332,8 @@ msgstr "" "Η εικόνα που ανεβάσατε δεν περιέχει κάποια υποστηριζόμενη μορφή. Βεβαιωθείτε " "ότι επιλέξατε την γενική μορφή εικόνας για την πλατφόρμα σας." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6430,7 +6459,7 @@ msgstr "" msgid "Timezone" msgstr "Ζώνη ώρας" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6550,7 +6579,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6619,7 +6648,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6643,7 +6672,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Μη-αποθηκευμένες Αλλαγές" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6726,10 +6755,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "Χρήση πύλης DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6782,7 +6812,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6790,7 +6820,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6805,9 +6835,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6818,7 +6849,7 @@ msgstr "" msgid "Use default gateway" msgstr "Χρήση προεπιλεγμένης πύλης" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6829,6 +6860,7 @@ msgstr "Χρήση προεπιλεγμένης πύλης" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6839,6 +6871,16 @@ msgstr "Χρήση προεπιλεγμένης πύλης" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6851,7 +6893,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6898,6 +6940,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Όνομα Χρήστη" @@ -6927,16 +6970,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Εξυπηρετητής VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6985,7 +7031,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -7030,7 +7076,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -7039,7 +7085,7 @@ msgstr "" msgid "Warning" msgstr "Προειδοποίηση" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Προσοχή: Οι μη αποθηκευμένες αλλαγές θα χαθούν με την επανεκκίνηση!" @@ -7076,7 +7122,7 @@ msgid "Wireless Adapter" msgstr "Ασύρματος Προσαρμογέας" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7189,7 +7235,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7289,8 +7335,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7482,9 +7528,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index 819101f28..6496796cc 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -173,11 +173,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> query port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> server port" @@ -193,7 +193,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" @@ -218,7 +218,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -230,15 +230,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Address" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -246,7 +246,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -254,7 +254,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">Max.</abbr> concurrent queries" @@ -268,7 +268,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -406,7 +406,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -503,6 +503,10 @@ msgstr "Address" msgid "Address to access local relay bridge" msgstr "Address to access local relay bridge" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -593,7 +597,7 @@ msgstr "" msgid "Allow listed only" msgstr "Allow listed only" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Allow localhost" @@ -617,7 +621,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Allow the <em>root</em> user to login with password" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -932,7 +936,7 @@ msgstr "" "configuration files marked by opkg, essential base files and the user " "defined backup patterns." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -943,6 +947,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -953,6 +958,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1175,13 +1181,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Client ID to send when requesting DHCP" @@ -1222,7 +1228,7 @@ msgstr "Collecting data..." msgid "Command" msgstr "Command" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1289,7 +1295,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1625,7 +1631,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1686,7 +1692,7 @@ msgstr "Disabled" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1754,6 +1760,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1774,7 +1784,7 @@ msgstr "" msgid "Domain required" msgstr "Domain required" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1942,7 +1952,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2083,7 +2093,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2192,7 +2202,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2264,7 +2274,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2623,7 +2633,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2903,7 +2913,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2914,6 +2924,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2924,10 +2935,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3158,7 +3170,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3168,7 +3180,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3322,7 +3334,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3359,11 +3371,11 @@ msgstr "" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3423,15 +3435,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3443,7 +3459,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3466,6 +3482,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3494,7 +3514,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3669,7 +3689,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3682,15 +3702,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3731,7 +3751,7 @@ msgstr "Memory" msgid "Memory usage (%)" msgstr "Memory usage (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3743,7 +3763,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3841,7 +3861,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -3973,7 +3993,7 @@ msgstr "Network" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4034,7 +4054,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4128,7 +4148,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4166,7 +4186,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4182,7 +4202,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4234,7 +4254,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4271,6 +4291,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4399,7 +4423,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4408,7 +4432,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4595,6 +4619,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Password" @@ -4650,7 +4675,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4692,7 +4717,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Perform reboot" @@ -4700,7 +4725,7 @@ msgstr "Perform reboot" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4790,7 +4815,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4961,23 +4986,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reboot" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Reboots the operating system of your device" @@ -4997,7 +5022,7 @@ msgstr "" msgid "References" msgstr "References" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5057,7 +5082,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5079,7 +5104,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5202,7 +5227,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5249,7 +5274,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5439,6 +5464,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5456,7 +5485,7 @@ msgstr "" msgid "Services" msgstr "Services" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5556,7 +5585,7 @@ msgstr "" msgid "Size" msgstr "Size" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5881,7 +5910,7 @@ msgstr "Static Routes" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6007,7 +6036,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6195,7 +6224,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6267,8 +6296,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6392,7 +6421,7 @@ msgstr "" msgid "Timezone" msgstr "Timezone" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6511,7 +6540,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6580,7 +6609,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6604,7 +6633,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Unsaved Changes" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6687,10 +6716,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6743,7 +6773,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6751,7 +6781,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6766,9 +6796,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6779,7 +6810,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6790,6 +6821,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6800,6 +6832,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6812,7 +6854,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6859,6 +6901,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Username" @@ -6888,16 +6931,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6946,7 +6992,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6993,7 +7039,7 @@ msgstr "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -7002,7 +7048,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7039,7 +7085,7 @@ msgid "Wireless Adapter" msgstr "Wireless Adapter" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7151,7 +7197,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7250,8 +7296,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7443,9 +7489,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index cf7ffab58..040f4a1ca 100644 --- a/modules/luci-base/po/es/base.po +++ b/modules/luci-base/po/es/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2020-08-31 09:01+0000\n" +"PO-Revision-Date: 2020-10-20 05:26+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>" "\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.3.1-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -176,11 +176,11 @@ msgstr "Tiempo de espera de reintento de 802.11w" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "Puerto de consultas al <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "Puerto del servidor <abbr title=\"Domain Name System\">DNS</abbr>" @@ -196,7 +196,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Dirección <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -222,7 +222,7 @@ msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" "Puerta de enlace <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "Sufijo (hex)<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-" @@ -234,23 +234,23 @@ msgstr "Configuración de <abbr title=\"Light Emitting Diode\">LEDs</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nombre del <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Dirección <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -"Máximas conexiones <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" -"abbr>" +"Máximo de concesiones <abbr title=\"Dynamic Host Configuration Protocol\"" +">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -258,7 +258,7 @@ msgstr "" "<abbr title=\"Máximo\">Máx.</abbr> tamaño del paquete <abbr title=" "\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"Máximo\">Máx.</abbr> consultas simultáneas" @@ -274,7 +274,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Ya existe un directorio con el mismo nombre." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 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 " @@ -403,18 +403,18 @@ msgstr "Conexiones activas" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:92 msgid "Active DHCP Leases" -msgstr "Clientes DHCP activos" +msgstr "Concesiones DHCP activas" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:94 msgid "Active DHCPv6 Leases" -msgstr "Clientes DHCPv6 activos" +msgstr "Concesiones DHCPv6 activas" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203 msgid "Active-Backup policy (active-backup, 1)" msgstr "Política de copia de seguridad activa (copia de seguridad activa, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -513,6 +513,10 @@ msgstr "Dirección" msgid "Address to access local relay bridge" msgstr "Dirección del puente relé local" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Direcciones" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -611,7 +615,7 @@ msgstr "Permitir tasas de 802.11b heredadas" msgid "Allow listed only" msgstr "Permitir a los pertenecientes en la lista" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Permitir host local" @@ -637,7 +641,7 @@ msgstr "Permitir sondeo de funciones del sistema" msgid "Allow the <em>root</em> user to login with password" msgstr "Permitir al usuario <em>root</em> conectar con contraseña" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -966,7 +970,7 @@ msgstr "" "esenciales base y los patrones de copia de seguridad definidos por el " "usuario." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -979,6 +983,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -989,6 +994,7 @@ msgstr "Interfaz de enlace" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1189,10 +1195,10 @@ msgid "" "fill out the <em>custom</em> field to define a new zone and attach the " "interface to it." msgstr "" -"Elija la zona del firewall a la que quiere asignar esta interfaz. Seleccione " -"<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." +"Elija la zona del cortafuegos 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/htdocs/luci-static/resources/view/network/wireless.js:959 msgid "" @@ -1226,13 +1232,13 @@ msgstr "" "Haga clic en \"Guardar mtdblock\" para descargar el archivo mtdblock " "especificado. (NOTA: ¡ESTA FUNCIÓN ES PARA PROFESIONALES!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Cliente" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "ID de cliente que se enviará al solicitar DHCP" @@ -1273,7 +1279,7 @@ msgstr "Recolectando datos…" msgid "Command" msgstr "Comando" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Comando OK" @@ -1345,7 +1351,7 @@ msgstr "Intento de conexión fallido" msgid "Connection attempt failed." msgstr "Intento de conexión fallido." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Conexión perdida" @@ -1399,7 +1405,7 @@ msgstr "Código de país" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942 msgid "Create / Assign firewall-zone" -msgstr "Crear / Asignar zona de firewall" +msgstr "Crear / Asignar zona de cortafuegos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798 msgid "Create interface" @@ -1691,9 +1697,9 @@ msgstr "Dispositivo no administrado por ModemManager." msgid "Device unreachable!" msgstr "Dispositivo inalcanzable!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." -msgstr "Dispositivo inalcanzable! Todavía esperando al dispositivo..." +msgstr "¡Dispositivo inalcanzable! Todavía esperando al dispositivo..." #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88 msgid "Diagnostics" @@ -1754,7 +1760,7 @@ msgstr "Desactivado" msgid "Disassociate On Low Acknowledgement" msgstr "Desasociarse en un reconocimiento bajo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Descartar las respuestas de RFC1918 aguas arriba" @@ -1800,7 +1806,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 Firewalls <abbr title=\"Network Address " +"Name System\">DNS</abbr> para cortafuegos <abbr title=\"Network Address " "Translation\">NAT</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252 @@ -1824,6 +1830,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "No reenviar búsquedas inversas para redes locales" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "No enviar un nombre de host" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "¿Realmente quieres eliminar \"%s\" ?" @@ -1844,7 +1854,7 @@ msgstr "¿Realmente desea eliminar recursivamente el directorio \"%s\" ?" msgid "Domain required" msgstr "Requerir dominio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Lista blanca de dominios" @@ -2018,7 +2028,7 @@ msgstr "Activar cliente NTP" msgid "Enable Single DES" msgstr "Activar sólo DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Activar servidor TFTP" @@ -2154,7 +2164,7 @@ msgstr "Adaptador ethernet" #: modules/luci-base/htdocs/luci-static/resources/network.js:2880 #: modules/luci-compat/luasrc/model/network.lua:1423 msgid "Ethernet Switch" -msgstr "Switch ethernet" +msgstr "Conmutador ethernet" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270 msgid "Every 30 seconds (slow, 0)" @@ -2164,7 +2174,7 @@ msgstr "Cada 30 segundos (lento, 0)" msgid "Every second (fast, 1)" msgstr "Cada segundo (rápido, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Excluir interfaces" @@ -2277,7 +2287,7 @@ msgstr "Archivo no accesible" msgid "Filename" msgstr "Nombre del archivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Nombre del archivo de imagen de arranque mostrado a los clientes" @@ -2332,19 +2342,19 @@ msgstr "Terminar" #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15 msgid "Firewall" -msgstr "Firewall" +msgstr "Cortafuegos" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102 msgid "Firewall Mark" -msgstr "Marca de Firewall" +msgstr "Marca de Cortafuegos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:326 msgid "Firewall Settings" -msgstr "Configuración del Firewall" +msgstr "Configuración del Cortafuegos" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297 msgid "Firewall Status" -msgstr "Estado del Firewall" +msgstr "Estado del Cortafuegos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932 msgid "Firmware File" @@ -2354,7 +2364,7 @@ msgstr "Archivo de firmware" msgid "Firmware Version" msgstr "Versión del firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Puerto origen fijo para peticiones de DNS salientes" @@ -2590,7 +2600,7 @@ msgstr "Conceder acceso a la configuración de crontab" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60 msgid "Grant access to firewall status" -msgstr "Conceder acceso al estado del firewall" +msgstr "Conceder acceso al estado del cortafuegos" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116 msgid "Grant access to flash operations" @@ -2717,7 +2727,7 @@ msgid "Host-Uniq tag content" msgstr "Contenido de la etiqueta Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2790,7 +2800,7 @@ msgstr "IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316 msgid "IPv4 Firewall" -msgstr "Firewall IPv4" +msgstr "Cortafuegos IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -2876,7 +2886,7 @@ msgstr "IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319 msgid "IPv6 Firewall" -msgstr "Firewall IPv6" +msgstr "Cortafuegos IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203 msgid "IPv6 Neighbours" @@ -3001,7 +3011,7 @@ msgstr "" "Montar el dispositivo por la etiqueta de la partición en vez de por el nodo " "fijo de dispositivo si se especifica" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3012,6 +3022,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3022,10 +3033,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Si no está marcado, no se configurará ninguna ruta predeterminada" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3263,7 +3275,7 @@ msgstr "¡ID de VLAN no válido! Sólo se permiten IDs entre %d y %d." msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "¡ID de VLAN no válido! Sólo se permiten IDs únicos" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Argumento inválido" @@ -3275,7 +3287,7 @@ msgstr "" "Lista de portadores inválida. Posiblemente se hayan creado demasiados " "portadores. Este protocolo admite uno y solo un portador." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Comando inválido" @@ -3428,21 +3440,21 @@ msgstr "Latencia" msgid "Leaf" msgstr "Hoja" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" -msgstr "Tiempo de expiración" +msgstr "Tiempo de concesión" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:32 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:59 msgid "Lease time remaining" -msgstr "Tiempo de conexión restante" +msgstr "Tiempo de concesión restante" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181 msgid "Leasefile" -msgstr "Archivo de conexiones" +msgstr "Archivo de concesión" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47 @@ -3465,13 +3477,13 @@ msgstr "Registro de cambios:" msgid "Limit" msgstr "Límite de IPs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 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/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Limita la escucha de estas interfaces, y el bucle de retorno." @@ -3544,15 +3556,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de archivos de claves SSH para autenticación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Lista de dominios a los que se permiten respuestas RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "Lista de dominios para forzar a una dirección IP." + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Lista de dispositivos que proporcionan resultados de dominio NX falsos" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Interfaces de escucha" @@ -3564,7 +3580,7 @@ msgstr "Puerto" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Escucha solo en la interfaz dada o, si no se especifica, en todas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Puerto de escucha para consultas DNS entrantes" @@ -3587,6 +3603,10 @@ msgstr "Cargando el contenido del directorio…" msgid "Loading view…" msgstr "Cargando vista…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Dirección IP local" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3615,7 +3635,7 @@ msgstr "Dirección IPv4 local" msgid "Local IPv6 address" msgstr "Dirección IPv6 local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Solo servicio local" @@ -3706,7 +3726,7 @@ msgstr "Pérdida de segundos de señal (LOSS)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581 msgid "Lowest leased address as offset from the network address." -msgstr "Dirección inicial más baja como diferencia de la dirección de red." +msgstr "Dirección arrendada más baja como compensación de la dirección de red." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82 @@ -3800,7 +3820,7 @@ msgstr "" msgid "Manual" msgstr "Manual" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "AP" @@ -3813,15 +3833,15 @@ msgstr "Max. velocidad de datos alcanzable (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Máximo permitido de intervalo de escucha" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" -msgstr "Número máximo permitido de clientes DHCP activos" +msgstr "Número máximo permitido de concesiones DHCP activas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Número máximo de consultas DNS concurrentes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Tamaño máximo de paquetes EDNS.0 paquetes UDP" @@ -3833,7 +3853,7 @@ msgstr "Segundos máximos de espera a que el módem esté activo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586 msgid "Maximum number of leased addresses." -msgstr "Máximo de conexiones activas." +msgstr "Máximo de concesiones activas." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:886 msgid "Maximum transmit power" @@ -3862,7 +3882,7 @@ msgstr "Memoria" msgid "Memory usage (%)" msgstr "Uso de RAM (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Malla" @@ -3874,7 +3894,7 @@ msgstr "ID de malla" msgid "Mesh Id" msgstr "ID de malla" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Método no encontrado" @@ -3974,7 +3994,7 @@ msgstr "El módem está desactivado." msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4106,7 +4126,7 @@ msgstr "Red" msgid "Network Utilities" msgstr "Utilidades de red" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Imagen de arranque en red" @@ -4167,7 +4187,7 @@ msgstr "No hay señal RX" msgid "No client associated" msgstr "Ningún cliente asociado" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Sin datos recibidos" @@ -4261,7 +4281,7 @@ msgstr "Ruido:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Errores de CRC no preventivos (CRC P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Sin comodín" @@ -4299,7 +4319,7 @@ msgstr "No presente" msgid "Not started on boot" msgstr "No se inició en el arranque" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "No soportado" @@ -4315,7 +4335,7 @@ msgstr "NSLookup" msgid "Number of IGMP membership reports" msgstr "Número de informes de membresía IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 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 " @@ -4370,7 +4390,7 @@ msgstr "Ruta en enlace" msgid "On-State Delay" msgstr "Retraso de activación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "¡Debe especificar al menos un nombre de host o dirección MAC!" @@ -4409,6 +4429,10 @@ msgstr "Abrir lista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "OpenFortivpn" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Frecuencia de operación" @@ -4550,7 +4574,7 @@ msgstr "Interfaz de salida" msgid "Output zone" msgstr "Zona de salida" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4559,7 +4583,7 @@ msgstr "Zona de salida" msgid "Override MAC address" msgstr "Reemplazar dirección MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4748,6 +4772,7 @@ msgstr "Parte de zona %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Contraseña" @@ -4803,7 +4828,7 @@ msgstr "Ruta al certificado del cliente interno" msgid "Path to inner Private Key" msgstr "Ruta a la clave privada interna" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Pausado" @@ -4845,7 +4870,7 @@ msgstr "Reenvío secreto perfecto" msgid "Perform outgoing packets serialization (optional)." msgstr "Realizar la serialización de paquetes salientes (opcional)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Reiniciar" @@ -4853,7 +4878,7 @@ msgstr "Reiniciar" msgid "Perform reset" msgstr "Realizar restablecimiento" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Permiso denegado" @@ -4945,7 +4970,7 @@ msgstr "" "Asumir que el otro estará muerto tras estos fallos de echo LCP, use 0 para " "ignorar fallos" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Evita escuchar en estas interfaces." @@ -5131,23 +5156,23 @@ msgstr "Gráficos en tiempo real" msgid "Reassociation Deadline" msgstr "Fecha límite de reasociación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Protección contra reasociación" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reiniciar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Reiniciando…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Reiniciar el sistema operativo de su dispositivo" @@ -5167,7 +5192,7 @@ msgstr "Reconectar esta interfaz" msgid "References" msgstr "Referencias" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Refrescar" @@ -5227,7 +5252,7 @@ msgstr "Solicitar dirección IPv6" msgid "Request IPv6-prefix of length" msgstr "Solicitud IPv6-prefijo de longitud" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Tiempo de espera de solicitud terminada" @@ -5249,7 +5274,7 @@ msgstr "Requiere la serialización de paquetes entrantes (opcional)." msgid "Required" msgstr "Requerido" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Requerido para ciertos ISPs, por ejemplo Charter con DOCSIS 3" @@ -5379,7 +5404,7 @@ msgstr "Archivos Resolv y Hosts" msgid "Resolve file" msgstr "Archivo de resolución" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Recurso no encontrado" @@ -5391,7 +5416,7 @@ msgstr "Reiniciar" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313 msgid "Restart Firewall" -msgstr "Reiniciar Firewall" +msgstr "Reiniciar Cortafuegos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:815 msgid "Restart radio interface" @@ -5426,7 +5451,7 @@ msgstr "Error al revertir la solicitud con el estado <code>%h</code>" msgid "Reverting configuration…" msgstr "Revirtiendo configuración…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Directorio raíz para los archivos servidos por TFTP" @@ -5623,6 +5648,10 @@ msgstr "" "Enviar peticiones de echo LCP cada intervalo de segundos dado, solo efectivo " "usado conjuntamente con el umbral de fallo" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "Enviar el nombre de host de este dispositivo" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Configuración del servidor" @@ -5640,7 +5669,7 @@ msgstr "Tipo de servicio" msgid "Services" msgstr "Servicios" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Sesión expirada" @@ -5743,7 +5772,7 @@ msgstr "Señal:" msgid "Size" msgstr "Tamaño" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Tamaño de la caché de consultas DNS" @@ -6117,7 +6146,7 @@ msgstr "Rutas IPv6 estáticas" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165 msgid "Static Leases" -msgstr "Direcciones estáticas" +msgstr "Concesiones estáticas" #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76 msgid "Static Routes" @@ -6129,13 +6158,13 @@ msgstr "Rutas estáticas" msgid "Static address" msgstr "Dirección estática" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " "configurations where only hosts with a corresponding lease are served." msgstr "" -"Las direcciones estáticas se usan para asignar direcciones IP fijas y " +"Las concesiones estáticas se usan para asignar direcciones IP fijas y " "nombres identificativos de dispositivos a clientes DHCP. También son " "necesarias para configuraciones de interfaces no dinámicas en las que a cada " "dispositivo siempre se le quiere dar la misma dirección IP." @@ -6189,18 +6218,18 @@ msgstr "Swap libre" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3 msgid "Switch" -msgstr "Switch" +msgstr "Conmutador" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172 msgid "Switch %q" -msgstr "Switch %q" +msgstr "Conmutador %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150 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." +"El conmutador %q tiene una topología desconocida: la configuración de VLAN " +"puede no ser precisa." #: modules/luci-base/htdocs/luci-static/resources/network.js:2883 #: modules/luci-compat/luasrc/model/network.lua:1426 @@ -6261,7 +6290,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Configuración TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Raíz del servidor TFTP" @@ -6481,9 +6510,9 @@ msgstr "" "hacia una red mayor como internet y el resto se dediquen a la red local." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" -msgstr "El comando reboot falló con el código %d" +msgstr "El comando de reinicio falló con el código %d" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147 msgid "The restore command failed with code %d" @@ -6560,12 +6589,12 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" -msgstr "No hay direcciones activas" +msgstr "No hay concesiones activas" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4268 msgid "There are no changes to apply" @@ -6703,7 +6732,7 @@ msgstr "Intervalo de tiempo para reprogramar GTK" msgid "Timezone" msgstr "Zona horaria" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Iniciar sesión…" @@ -6823,7 +6852,7 @@ msgstr "No se puede determinar la dirección IP externa" msgid "Unable to determine upstream interface" msgstr "No se puede determinar la interfaz ascendente" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Imposible repartir" @@ -6862,7 +6891,7 @@ msgstr "No se puede resolver el nombre de host del par" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:284 msgid "Unable to restart firewall: %s" -msgstr "No se puede reiniciar el firewall: %s" +msgstr "No se puede reiniciar el cortafuegos: %s" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:342 @@ -6892,7 +6921,7 @@ msgstr "Método de conexión desconocido y no compatible." msgid "Unknown error (%s)" msgstr "Error desconocido (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Código de error desconocido" @@ -6916,7 +6945,7 @@ msgstr "Clave sin nombre" msgid "Unsaved Changes" msgstr "Cambios sin aplicar" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Error no especificado" @@ -7004,10 +7033,11 @@ msgstr "Usar servidores anunciados por DHCP" msgid "Use DHCP gateway" msgstr "Usar puerta de enlace DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7062,7 +7092,7 @@ msgstr "Utilizar como superposición externa (/overlay)" msgid "Use as root filesystem (/)" msgstr "Utilizar como sistema de archivos raíz (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Usar marca de difusión" @@ -7070,7 +7100,7 @@ msgstr "Usar marca de difusión" msgid "Use builtin IPv6-management" msgstr "Utilizar la gestión integrada de IPv6" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7085,9 +7115,10 @@ msgstr "Utilizar la gestión integrada de IPv6" msgid "Use custom DNS servers" msgstr "Usar servidores DNS personalizados" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7098,7 +7129,7 @@ msgstr "Usar servidores DNS personalizados" msgid "Use default gateway" msgstr "Utilizar la puerta de enlace predeterminada" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7109,6 +7140,7 @@ msgstr "Utilizar la puerta de enlace predeterminada" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7119,6 +7151,18 @@ msgstr "Utilizar la puerta de enlace predeterminada" msgid "Use gateway metric" msgstr "Usar métrica de puerta de enlace" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "Usar MAP heredado" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" +"Utilice el formato de identificador de interfaz MAP heredado (draft-ietf-" +"softwire-map-00) en lugar de RFC7597" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Usar tabla de rutas" @@ -7131,7 +7175,7 @@ msgstr "Usar certificados del sistema" msgid "Use system certificates for inner-tunnel" msgstr "Usar certificados del sistema para túnel interno" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7139,10 +7183,13 @@ 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 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 del host</em> se asignará " -"como nombre identificativo." +"Utilice el botón <em>Añadir</em> para agregar una nueva entrada de " +"concesión. La <em>Dirección MAC</em> identifica el host, la <em>Dirección " +"IPv4</em> especifica la dirección fija a utilizar y <em>Nombre de host</em> " +"se asigna como nombre simbólico a el anfitrión solicitante. El <em> Tiempo " +"de concesión</em> opcional se puede utilizar para establecer un tiempo de " +"arrendamiento específico de host no estándar, p. Ej. 12h, 3d o infinite " +"(infinito)." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322 msgid "Use upper layer protocol information (layer3+4)" @@ -7186,6 +7233,7 @@ msgstr "Clave de usuario (codificada PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nombre de usuario" @@ -7215,16 +7263,19 @@ msgid "VPN Local port" msgstr "VPN puerto local" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Puerto del servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Hash SHA1 del certificado del servidor VPN" @@ -7275,7 +7326,7 @@ msgstr "El valor no debe estar vacío" msgid "Vendor" msgstr "Proveedor" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Clase de vendedor a enviar cuando solicite DHCP" @@ -7322,16 +7373,16 @@ msgstr "" "Para el encriptado WPA se necesita que estén instalados \"wpa_supplicant\" " "para el modo cliente y/o \"hostapd\" para los modos AP y ad-hoc." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." -msgstr "Esperando al dispositivo..." +msgstr "Esperando por el dispositivo..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178 msgid "Warning" msgstr "Advertencia" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Advertencia: ¡Hay cambios no guardados que se perderán al reiniciar!" @@ -7371,7 +7422,7 @@ msgid "Wireless Adapter" msgstr "Adaptador Wi-Fi" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7491,7 +7542,7 @@ msgstr "Configuración de ZRam" msgid "ZRam Size" msgstr "Tamaño de ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "cualquiera" @@ -7590,8 +7641,8 @@ msgstr "p. ej: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "p. ej: vertedero" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7602,8 +7653,8 @@ 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> asignadas" +"archivo en donde se almacenará las concesiones <abbr title=\"Dynamic Host " +"Configuration Protocol\">DHCP</abbr>" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195 @@ -7783,9 +7834,9 @@ msgstr "valor único" msgid "unknown" msgstr "Desconocido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po index 8b1f1662e..3c6b5d16c 100644 --- a/modules/luci-base/po/fi/base.po +++ b/modules/luci-base/po/fi/base.po @@ -170,12 +170,12 @@ msgstr "802.11w uudelleenaikakatkaisu" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Peruspalvelujoukon tunnus\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" "<abbr title = \"Verkkotunnusten nimijärjestelmä\"> DNS </abbr> kyselyportti" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" "<abbr title = \"Verkkotunnusten nimijärjestelmä\"> DNS </abbr> palvelinportti" @@ -192,7 +192,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title = \"Laajennettu palvelujoukotunniste\"> ESSID </abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title = \"Internet Protocol Version 4\">IPv4</abbr>-osoite" @@ -218,7 +218,7 @@ msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" "<abbr title = \"Internet Protocol Version 4\"> IPv4 </abbr> -yhdyskäytävä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\"> IPv6</abbr>-jälkiliite (heksa)" @@ -231,15 +231,15 @@ msgstr "<abbr title = \"Valoa emittoiva diodi\"> LED </abbr> Määritykset" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title = \"Valoa emittoiva diodi\"> LED </abbr> nimi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title = \"Media Access Control\"> MAC </abbr> -osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\"> Duid</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -247,7 +247,7 @@ msgstr "" "<abbr title = \"maximal\"> Max. </abbr> <abbr title = \"Dynamic Host " "Configuration Protocol\"> DHCP </abbr> laina" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -255,7 +255,7 @@ msgstr "" "<abbr title = \"maximal\"> Max. </abbr> <abbr title = \"Domain Name System -" "laajennusmekanismit\"> EDNS0 </abbr> paketin koko" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title = \"maximal\"> Max. </abbr> samanaikaiset kyselyt" @@ -271,7 +271,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Samanniminen hakemisto on jo olemassa." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Istunnon päättymisen jälkeen tarvitaan uusi kirjautuminen." @@ -412,7 +412,7 @@ msgstr "Aktiiviset DHCPv6-lainat" msgid "Active-Backup policy (active-backup, 1)" msgstr "Aktiivinen varmuuskopiointikäytäntö (aktiivinen varmuuskopiointi, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -511,6 +511,10 @@ msgstr "Osoite" msgid "Address to access local relay bridge" msgstr "Paikallisen välityssillan osoite" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -606,7 +610,7 @@ msgstr "Salli vanhat 802.11b nopeudet" msgid "Allow listed only" msgstr "Salli vain luetellut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Salli localhost" @@ -632,7 +636,7 @@ msgstr "Salli järjestelmän ominaisuuksien testaus" msgid "Allow the <em>root</em> user to login with password" msgstr "Salli <em> root </em> -käyttäjän kirjautua sisään salasanalla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "Salli ylävirran vastaukset alueella 127.0.0.0/8, esim. RBL-palveluille" @@ -955,7 +959,7 @@ msgstr "" "perustiedostoista ja käyttäjän erikseen määrittelemistä varmuuskopioitavista " "tiedostoista." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -968,6 +972,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -978,6 +983,7 @@ msgstr "Yhdistä sovitin" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1212,13 +1218,13 @@ msgstr "" "Lataa määritetty mtdblock-tiedosto valitsemalla Tallenna mtdblock. (HUOM: " "TÄMÄ OMINAISUUS ON AMMATTILAISILLE! )" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Asiakas" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Asiakastunnus, joka lähetetään DHCP: tä pyydettäessä" @@ -1259,7 +1265,7 @@ msgstr "Kerätään tietoja..." msgid "Command" msgstr "Komento" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Komento OK" @@ -1331,7 +1337,7 @@ msgstr "Yhteyden muodostaminen epäonnistui" msgid "Connection attempt failed." msgstr "Yhteyden muodostaminen epäonnistui." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Yhteys katkennut" @@ -1675,7 +1681,7 @@ msgstr "ModemManager ei hallitse laitetta." msgid "Device unreachable!" msgstr "Laitetta ei tavoiteta!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Laitetta ei tavoiteta! Odotetaan edelleen laitetta ..." @@ -1738,7 +1744,7 @@ msgstr "Pois käytöstä" msgid "Disassociate On Low Acknowledgement" msgstr "Poista heikon kuittauksen yhteydet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Hylkää ulkoverkosta tulevat RFC1918-vastaukset" @@ -1809,6 +1815,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Älä välitä käänteisiä hakuja paikallisille verkoille" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Haluatko todella poistaa '%s'?" @@ -1829,7 +1839,7 @@ msgstr "Haluatko todella poistaa hakemiston '%s' alihakemistoineen?" msgid "Domain required" msgstr "Vaadi verkkotunnus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Sallitut verkkotunnukset" @@ -2004,7 +2014,7 @@ msgstr "Ota NTP-asiakas käyttöön" msgid "Enable Single DES" msgstr "Ota käyttöön yksittäinen DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "TFTP-palvelin käytössä" @@ -2149,7 +2159,7 @@ msgstr "30 sekunnin välein (hidas, 0)" msgid "Every second (fast, 1)" msgstr "Joka sekunti (nopea, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Älä huomioi sovittimia" @@ -2262,7 +2272,7 @@ msgstr "Tiedostoa ei voida lukea" msgid "Filename" msgstr "Tiedoston nimi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Asiakkaille mainostetun käynnistysnäköistiedoston tiedostonimi" @@ -2336,7 +2346,7 @@ msgstr "Laiteohjelmisto-tiedosto" msgid "Firmware Version" msgstr "Laiteohjelmiston versio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Kiinteä lähdeportti lähteville DNS-kyselyille" @@ -2698,7 +2708,7 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq-tunnisteen sisältö" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2978,7 +2988,7 @@ msgid "" "device node" msgstr "Määritä laite osiotunnisteella kiinteän laitepolun sijasta" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2989,6 +2999,7 @@ msgstr "Määritä laite osiotunnisteella kiinteän laitepolun sijasta" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2999,10 +3010,11 @@ msgstr "Määritä laite osiotunnisteella kiinteän laitepolun sijasta" msgid "If unchecked, no default route is configured" msgstr "Jos valitsematta, oletusreittiä ei ole määritetty" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3241,7 +3253,7 @@ msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" "Virheellinen VLAN-tunnus annettu! Vain yksilölliset tunnukset ovat sallittuja" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Virheellinen argumentti" @@ -3251,7 +3263,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Virheellinen komento" @@ -3404,7 +3416,7 @@ msgstr "Viive" msgid "Leaf" msgstr "Lehti" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Laina-aika" @@ -3441,11 +3453,11 @@ msgstr "Tietoja:" msgid "Limit" msgstr "Raja" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "Rajoita DNS-palvelu aliverkkoihin joille tarjoamme DNS: ää." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Rajoita kuuntelu näihin sovittimiin ja sisäiseen sovittimeen." @@ -3518,16 +3530,20 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Luettelo autentikoinnin SSH-avaintiedostoista" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Luettelo verkkotunnuksista, joille sallitaan RFC1918-vastaukset" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" "Luettelo palvelimista, jotka toimittavat vääriä NX-verkkotunnuksen tuloksia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Kuuntelevat sovittimet" @@ -3540,7 +3556,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Kuuntele vain määritetyissä sovittimissa tai kaikissa jos määrittelemättä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Saapuvien DNS-kyselyiden kuunteluportti" @@ -3563,6 +3579,10 @@ msgstr "Ladataan hakemiston sisältöä…" msgid "Loading view…" msgstr "Ladataan näkymää…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3591,7 +3611,7 @@ msgstr "Paikallinen IPv4-osoite" msgid "Local IPv6 address" msgstr "Paikallinen IPv6-osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Palvele vain paikallisesti" @@ -3775,7 +3795,7 @@ msgstr "" msgid "Manual" msgstr "Manuaalinen" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Master" @@ -3788,15 +3808,15 @@ msgstr "Maks. Saavutettavissa oleva tiedonsiirtonopeus (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Suurin sallittu kuunteluväli" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Aktiivisten DHCP-lainojen sallittu enimmäismäärä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Samanaikaisten DNS-kyselyiden suurin sallittu määrä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "EDNS.0 UDP -pakettien suurin sallittu koko" @@ -3837,7 +3857,7 @@ msgstr "Muisti" msgid "Memory usage (%)" msgstr "Muistin käyttö (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3849,7 +3869,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Menetelmää ei löydy" @@ -3949,7 +3969,7 @@ msgstr "Modeemi on poistettu käytöstä." msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Valvonta" @@ -4081,7 +4101,7 @@ msgstr "Verkko" msgid "Network Utilities" msgstr "Verkon apuohjelmat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Verkon käynnistyskuva" @@ -4142,7 +4162,7 @@ msgstr "Ei RX-signaalia" msgid "No client associated" msgstr "Ei asiakasta" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Tietoja ei ole vastaanotettu" @@ -4236,7 +4256,7 @@ msgstr "Kohina:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Keskeytyksettömät CRC-virheet (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Ei-yleismerkki" @@ -4274,7 +4294,7 @@ msgstr "puuttuu" msgid "Not started on boot" msgstr "Ei käynnistetty käynnistettäessä" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Ei tuettu" @@ -4290,7 +4310,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "IGMP-jäsenraporttien määrä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Välimuistissa olevien DNS-merkintöjen määrä (max on 10000, 0 poistaa " @@ -4344,7 +4364,7 @@ msgstr "Reitti aina ylhäällä" msgid "On-State Delay" msgstr "Ylöstulon viive" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Palvelinnimi tai MAC-osoite on määritettävä!" @@ -4383,6 +4403,10 @@ msgstr "Avaa lista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Toimintataajuus" @@ -4523,7 +4547,7 @@ msgstr "Lähtösovitin" msgid "Output zone" msgstr "Lähtöalue" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4532,7 +4556,7 @@ msgstr "Lähtöalue" msgid "Override MAC address" msgstr "Ohita MAC-osoite" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4721,6 +4745,7 @@ msgstr "Osa vyöhykkeestä %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Salasana" @@ -4776,7 +4801,7 @@ msgstr "Polku sisäiseen asiakasvarmenteeseen" msgid "Path to inner Private Key" msgstr "Polku sisäiseen yksityiseen avaimeen" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Keskeytetty" @@ -4818,7 +4843,7 @@ msgstr "Perfect Forward Secrecy" msgid "Perform outgoing packets serialization (optional)." msgstr "Sarjoita lähtevät paketit." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Suorita uudelleenkäynnistys" @@ -4826,7 +4851,7 @@ msgstr "Suorita uudelleenkäynnistys" msgid "Perform reset" msgstr "Suorita nollaus" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Lupa evätty" @@ -4918,7 +4943,7 @@ msgstr "" "Oletetaan, että vertaiskone on kuollut tietyn LCP-kaikuhäiriöiden määrän " "jälkeen, ohita viat käyttämällä arvoa 0" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Estä näiden sovittimien kuuntelu." @@ -5102,23 +5127,23 @@ msgstr "Reaaliaikaiset kaaviot" msgid "Reassociation Deadline" msgstr "Uudelleenyhdistämisen määräaika" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Rebind suoja" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Uudelleenkäynnistä" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Uudelleenkäynnistetään…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Käynnistää laitteen käyttöjärjestelmän uudelleen" @@ -5138,7 +5163,7 @@ msgstr "Yhdistä tämä sovitin uudelleen" msgid "References" msgstr "Viite" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Päivittää" @@ -5198,7 +5223,7 @@ msgstr "Pyydä IPv6-osoitetta" msgid "Request IPv6-prefix of length" msgstr "Pyydettävä IPv6-etuliiteen pituus" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Pyynnön aikakatkaisu" @@ -5220,7 +5245,7 @@ msgstr "Vaadi tulevien pakettien sarjoitus." msgid "Required" msgstr "Vaaditaan" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" "Tarvitaan tietyille internet-palveluntarjoajia varten esim. Charter DOCSIS 3" @@ -5351,7 +5376,7 @@ msgstr "Resolv- ja Hosts-tiedostot" msgid "Resolve file" msgstr "Resolve-tiedosto" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Resurssia ei löytynyt" @@ -5398,7 +5423,7 @@ msgstr "Palautuspyyntö epäonnistui, tila <code>%h</code>" msgid "Reverting configuration…" msgstr "Palautetaan määritystä…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Juurihakemisto tftp:n kautta tarjottaneille tiedostoille" @@ -5593,6 +5618,10 @@ msgstr "" "Lähetä LCP-kaikupyynnöt määritetyllä aikavälillä sekunneissa, käytetään vain " "yhdessä vikakynnyksen kanssa" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Palvelimen asetukset" @@ -5610,7 +5639,7 @@ msgstr "Palvelun tyyppi" msgid "Services" msgstr "Palvelut" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Istunto on vanhentunut" @@ -5710,7 +5739,7 @@ msgstr "Signaali:" msgid "Size" msgstr "Koko" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "DNS-kyselyvälimuistin koko" @@ -6086,7 +6115,7 @@ msgstr "Pysyvät reitit" msgid "Static address" msgstr "Staattinen osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6215,7 +6244,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP-asetukset" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP-palvelimen pääkansio" @@ -6427,7 +6456,7 @@ msgstr "" "kuten Internet ja muut portit lähiverkoon." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Reboot-komento epäonnistui, koodi %d" @@ -6505,8 +6534,8 @@ msgstr "" "Ladattu tiedosto ei ole laitteesi tukemassa muodossa. Varmista, että käytät " "laitteeseesi soveltuvaa yleistä tiedostomuotoa." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6648,7 +6677,7 @@ msgstr "Aikaväli GTK:n uusimiseen" msgid "Timezone" msgstr "Aikavyöhyke" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Kirjautuminen…" @@ -6767,7 +6796,7 @@ msgstr "Ulkoista IP-osoitetta ei voitu selvittää" msgid "Unable to determine upstream interface" msgstr "Ylävirran sovitinta ei voitu selvittää" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Ei voida lähettää" @@ -6836,7 +6865,7 @@ msgstr "Tuntematon ja ei-tuettu yhteysmenetelmä." msgid "Unknown error (%s)" msgstr "Tuntematon virhe (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Tuntematon virhekoodi" @@ -6860,7 +6889,7 @@ msgstr "Nimeämätön avain" msgid "Unsaved Changes" msgstr "Tallentamattomia muutoksia" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Määrittämätön virhe" @@ -6948,10 +6977,11 @@ msgstr "Käytä DHCP-mainostettuja palvelimia" msgid "Use DHCP gateway" msgstr "Käytä DHCP-yhdyskäytävää" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7006,7 +7036,7 @@ msgstr "Käytä ulkoisena peittokuvana (/overlay)" msgid "Use as root filesystem (/)" msgstr "Käytä juuritiedostojärjestelmänä (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Käytä lähetyslippua" @@ -7014,7 +7044,7 @@ msgstr "Käytä lähetyslippua" msgid "Use builtin IPv6-management" msgstr "Käytä sisäistä IPv6-hallintaa" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7029,9 +7059,10 @@ msgstr "Käytä sisäistä IPv6-hallintaa" msgid "Use custom DNS servers" msgstr "Käytä mukautettuja DNS-palvelimia" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7042,7 +7073,7 @@ msgstr "Käytä mukautettuja DNS-palvelimia" msgid "Use default gateway" msgstr "Käytä oletusyhdyskäytävää" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7053,6 +7084,7 @@ msgstr "Käytä oletusyhdyskäytävää" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7063,6 +7095,16 @@ msgstr "Käytä oletusyhdyskäytävää" msgid "Use gateway metric" msgstr "Käytä yhdyskäytävän mittaria" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Käytä reititystaulukkoa" @@ -7075,7 +7117,7 @@ msgstr "Käytä järjestelmävarmenteita" msgid "Use system certificates for inner-tunnel" msgstr "Käytä järjestelmävarmenteita sisätunneliin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7132,6 +7174,7 @@ msgstr "Käyttäjäavain (PEM-koodattu)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Käyttäjätunnus" @@ -7161,16 +7204,19 @@ msgid "VPN Local port" msgstr "VPN Paikallinen portti" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN-palvelin" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "VPN-palvelimen portti" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "VPN-Palvelimen sertifikaatin SHA1 tarkiste" @@ -7221,7 +7267,7 @@ msgstr "Arvo ei voi olla tyhjä" msgid "Vendor" msgstr "Toimittaja" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Toimittajaluokka, joka lähetetään DHCP-pyynnössä" @@ -7268,7 +7314,7 @@ msgstr "" "WPA-salaus vaatii wpa_supplicant (asiakastila) tai hostapd (AP ja ad-hoc-" "tila) asentamisen." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Odotetaan laitetta..." @@ -7277,7 +7323,7 @@ msgstr "Odotetaan laitetta..." msgid "Warning" msgstr "Varoitus" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Varoitus: Tallentamattomat muutokset menetetään uudelleenkäynnistyksessä!" @@ -7318,7 +7364,7 @@ msgid "Wireless Adapter" msgstr "Langaton sovitin" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7435,7 +7481,7 @@ msgstr "ZRam-asetukset" msgid "ZRam Size" msgstr "ZRam-koko" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "mikä tahansa" @@ -7534,8 +7580,8 @@ msgstr "esim: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "esim. dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7729,9 +7775,9 @@ msgstr "ainutlaatuinen arvo" msgid "unknown" msgstr "tuntematon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index adf49e4ec..822ebdeb7 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -3,7 +3,7 @@ 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: 2020-08-08 14:26+0000\n" +"PO-Revision-Date: 2020-10-24 08:56+0000\n" "Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/luci/fr/>" "\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.1\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -178,11 +178,11 @@ msgstr "Délai d'attente avant nouvelle tentative pour 802.11w" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "Port des requêtes <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "Port du serveur <abbr title=\"Domain Name System\">DNS</abbr>" @@ -198,7 +198,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adresse <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -223,7 +223,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Passerelle <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "Suffixe <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> (en " @@ -238,15 +238,15 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nom de la <abbr title=\"Diode Électro-Luminescente\">DEL</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Adresse <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -254,7 +254,7 @@ msgstr "" "Nombre maximal de baux <abbr title=\"Dynamic Host Configuration Protocol" "\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -262,7 +262,7 @@ msgstr "" "Taille maximale des paquets <abbr title=\"Extension Mechanisms for Domain " "Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "Nombre maximal de requêtes concurrentes" @@ -278,7 +278,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Un dossier avec le même nom existe déjà." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "Il est nécessaire de s'authentifier de nouveau car la session a expiré." @@ -422,7 +422,7 @@ msgstr "Baux DHCPv6 actifs" msgid "Active-Backup policy (active-backup, 1)" msgstr "Sauvegarde-active (sauvegarde active, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -520,6 +520,10 @@ msgstr "Adresse" msgid "Address to access local relay bridge" msgstr "Adresse pour accéder au pont-relais local" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Adresses" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -620,7 +624,7 @@ msgstr "Autoriser les débits 802.11b obsolètes" msgid "Allow listed only" msgstr "Autoriser seulement ce qui est listé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Autoriser l'hôte local" @@ -647,7 +651,7 @@ msgid "Allow the <em>root</em> user to login with password" msgstr "" "Autoriser l'utilisateur <em>root</em> à se connecter avec un mot de passe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -975,7 +979,7 @@ msgstr "" "de configuration modifiés marqués par opkg, des fichiers de base essentiels, " "et des motifs de sauvegarde définis par l'utilisateur." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -988,6 +992,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -998,6 +1003,7 @@ msgstr "Interface de liaison" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1239,13 +1245,13 @@ msgstr "" "Cliquer sur \"Save mtdblock\" pour télécharger le fichier mtdblock spécifié. " "(REMARQUE : CETTE RUBRIQUE EST DESTINÉE AUX PROFESSIONNELS ! )" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Identifiant client à envoyer dans les requêtes DHCP" @@ -1286,7 +1292,7 @@ msgstr "Récupération des données…" msgid "Command" msgstr "Commande" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Commande OK" @@ -1358,7 +1364,7 @@ msgstr "Échec de la tentative de connexion" msgid "Connection attempt failed." msgstr "La tentative de connexion a échoué." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Connexion perdue" @@ -1704,9 +1710,9 @@ msgstr "Périphérique non géré par ModemManager." msgid "Device unreachable!" msgstr "Appareil inaccessible !" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." -msgstr "Appareil inaccessible ! Toujours en attente de l’appareil ..." +msgstr "Appareil inaccessible ! Toujours en attente de l’appareil …" #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88 msgid "Diagnostics" @@ -1767,7 +1773,7 @@ msgstr "Désactivé" msgid "Disassociate On Low Acknowledgement" msgstr "Désassossier sur la reconnaissance basse (Low Acknowledgement)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Rejeter les réponses RFC1918 en amont" @@ -1840,6 +1846,10 @@ msgid "Do not forward reverse lookups for local networks" msgstr "" "Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Voulez-vous vraiment supprimer \"%s\" ?" @@ -1860,7 +1870,7 @@ msgstr "Voulez-vous vraiment supprimer récursivement le répertoire \"%s\" ?" msgid "Domain required" msgstr "Domaine nécessaire" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Liste blanche de domaines" @@ -2034,7 +2044,7 @@ msgstr "Activer client NTP" msgid "Enable Single DES" msgstr "Activer le DES unique" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Activer le serveur TFTP" @@ -2181,7 +2191,7 @@ msgstr "Toutes les 30 secondes (slow, 0)" msgid "Every second (fast, 1)" msgstr "Chaque seconde (fast, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Exclure les interfaces" @@ -2294,7 +2304,7 @@ msgstr "Fichier non accessible" msgid "Filename" msgstr "Nom de fichier" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Nom de fichier d'une image de démarrage publiée aux clients" @@ -2372,7 +2382,7 @@ msgstr "Fichier de micrologiciel" msgid "Firmware Version" msgstr "Version du micrologiciel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Port source fixe pour les requêtes DNS sortantes" @@ -2487,15 +2497,15 @@ msgstr "Tunnel GRE sur IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10 msgid "GRE tunnel over IPv6" -msgstr "" +msgstr "Tunnel GRE sur IPv6" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10 msgid "GRETAP tunnel over IPv4" -msgstr "" +msgstr "Tunnel GRETAP sur IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10 msgid "GRETAP tunnel over IPv6" -msgstr "" +msgstr "Tunnel GRETAP sur IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 msgid "Gateway" @@ -2535,7 +2545,7 @@ msgstr "Générer la configuration" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66 msgid "Generate Key" -msgstr "" +msgstr "Générer une clé" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460 msgid "Generate PMK locally" @@ -2592,7 +2602,7 @@ msgstr "Permettre l'accès aux procédures LuCI OpenConnect" #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3 msgid "Grant access to LuCI Wireguard procedures" -msgstr "" +msgstr "Accorder l’accès aux procédures LuCI Wireguard" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19 msgid "Grant access to SSH configuration" @@ -2735,7 +2745,7 @@ msgid "Host-Uniq tag content" msgstr "Contenu du tag Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2959,7 +2969,7 @@ msgstr "Suffixe IPv6" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "IPv6 support" -msgstr "" +msgstr "Prise en charge d’IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 @@ -3019,7 +3029,7 @@ msgstr "" "Monte le périphérique identifié par cette étiquette au lieu d'un nom de " "périphérique fixe" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3030,6 +3040,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3040,10 +3051,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Aucune route par défaut ne sera configurée si cette case est décochée" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3123,7 +3135,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Incoming key" -msgstr "" +msgstr "Clé entrante" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 @@ -3283,7 +3295,7 @@ msgstr "" "Identifiant VLAN donné invalide ! Seuls les identifiants uniques sont " "autorisés" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Argument invalide" @@ -3293,7 +3305,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Commande invalide" @@ -3310,7 +3322,7 @@ msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 msgid "Invalid value" -msgstr "" +msgstr "Valeur non valide" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Isolate Clients" @@ -3446,7 +3458,7 @@ msgstr "Latence" msgid "Leaf" msgstr "Feuille" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Durée du bail" @@ -3483,13 +3495,13 @@ msgstr "Légende :" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Limiter le service DNS aux interfaces des sous-réseaux sur lesquels nous " "desservons le DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Limiter l'écoute à ces interfaces, et le loopback." @@ -3563,16 +3575,20 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Liste des fichiers de clés SSH pour l'authentification" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Liste des domaines où sont permises les réponses de type RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" "Liste des hôtes qui fournissent des résultats avec des « NX domain » bogués" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Interfaces d'écoute" @@ -3584,7 +3600,7 @@ msgstr "Port d'écoute" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Écouter seulement sur l'interface spécifié, sinon sur toutes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Port d'écoute des requêtes DNS entrantes" @@ -3607,6 +3623,10 @@ msgstr "Chargement du contenu des répertoires…" msgid "Loading view…" msgstr "Chargement de la vue…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Adresse IP locale" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3635,7 +3655,7 @@ msgstr "Adresse IPv4 locale" msgid "Local IPv6 address" msgstr "Adresse IPv6 locale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Service local uniquement" @@ -3820,7 +3840,7 @@ msgstr "" msgid "Manual" msgstr "Manuel" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Master" @@ -3833,15 +3853,15 @@ msgstr "Débit de données max. atteignable (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Intervalle d'écoute maximum autorisé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Nombre maximum de baux DHCP actifs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Nombre maximum de requêtes DNS au même moment" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Taille maximum autorisée des paquets UDP EDNS.0" @@ -3882,7 +3902,7 @@ msgstr "Mémoire" msgid "Memory usage (%)" msgstr "Utilisation Mémoire (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3894,7 +3914,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Méthode non trouvée" @@ -3986,13 +4006,13 @@ msgstr "Délai max. d'initialisation du modem" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 msgid "Modem is disabled." -msgstr "" +msgstr "Le Modem est désactivé." #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4124,7 +4144,7 @@ msgstr "Réseau" msgid "Network Utilities" msgstr "Utilitaires réseau" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Image de démarrage réseau" @@ -4140,7 +4160,7 @@ msgstr "Le dispositif de réseau n'est pas présent" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "Interface réseau" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" @@ -4185,7 +4205,7 @@ msgstr "Pas de signal RX" msgid "No client associated" msgstr "Aucun client associé" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Aucune donnée reçue" @@ -4279,7 +4299,7 @@ msgstr "Bruit :" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Erreurs CRC non préemptives (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Non-wildcard" @@ -4317,7 +4337,7 @@ msgstr "Non présent" msgid "Not started on boot" msgstr "Non démarré au boot" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Non pris en charge" @@ -4333,7 +4353,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Nombre de rapports d'adhésion à l'IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Nombre d'entrées DNS gardées en cache (maximum 10000 ; entrez \"0\" pour " @@ -4387,7 +4407,7 @@ msgstr "Route On-Link" msgid "On-State Delay" msgstr "Durée allumée" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Il faut indiquer un nom d'hôte ou une adresse MAC !" @@ -4426,6 +4446,10 @@ msgstr "Ouvrir la liste…" msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Fréquence de fonctionnement" @@ -4550,7 +4574,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Outgoing key" -msgstr "" +msgstr "Clé sortante" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 @@ -4568,7 +4592,7 @@ msgstr "Interface de sortie" msgid "Output zone" msgstr "Zone de sortie" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4577,7 +4601,7 @@ msgstr "Zone de sortie" msgid "Override MAC address" msgstr "Modifier l'adresse MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4766,6 +4790,7 @@ msgstr "Fait partie de la zone %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Mot de passe" @@ -4821,7 +4846,7 @@ msgstr "Chemin du certificat client interne" msgid "Path to inner Private Key" msgstr "Chemin d'accès à la clé privée interne" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "En pause" @@ -4863,7 +4888,7 @@ msgstr "Perfect Forward Secrecy (Transfert Parfait du secret)" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Redémarrer" @@ -4871,7 +4896,7 @@ msgstr "Redémarrer" msgid "Perform reset" msgstr "Réinitialiser" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Permission refusée" @@ -4963,7 +4988,7 @@ msgstr "" "Suppose que le pair a disparu une fois le nombre donné d'erreurs d'échos " "LCP ; utiliser 0 pour ignorer ces erreurs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Empêcher l'écoute sur ces interfaces." @@ -5146,23 +5171,23 @@ msgstr "Graphiques temps-réel" msgid "Reassociation Deadline" msgstr "Date limite de réassociation" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Protection contre l'attaque « rebind »" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Redémarrage" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" -msgstr "Redémarrage…" +msgstr "Redémarrage …" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Redémarrage du système d'exploitation de votre équipement" @@ -5182,7 +5207,7 @@ msgstr "Reconnecter cet interface" msgid "References" msgstr "Références" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Rafraîchissement" @@ -5224,7 +5249,7 @@ msgstr "Adresse IPv6 distante" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "Remote IPv6 address or FQDN" -msgstr "" +msgstr "Adresse IPv6 distante ou FQDN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" @@ -5242,7 +5267,7 @@ msgstr "Demander une adresse IPv6" msgid "Request IPv6-prefix of length" msgstr "Demander le préfixe IPv6 de la longueur" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Expiration de la demande" @@ -5264,7 +5289,7 @@ msgstr "" msgid "Required" msgstr "Obligatoire" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Nécessaire avec certains FAIs, par ex. : Charter avec DOCSIS 3" @@ -5394,7 +5419,7 @@ msgstr "Fichiers Resolv et Hosts" msgid "Resolve file" msgstr "Fichier de résolution des noms" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ressource non trouvée" @@ -5441,7 +5466,7 @@ msgstr "La demande d'annulation a échoué, statut <code>%h</code>" msgid "Reverting configuration…" msgstr "Annulation de la configuration…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Répertoire racine des fichiers fournis par TFTP" @@ -5545,11 +5570,11 @@ msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" -msgstr "" +msgstr "SSTP" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 msgid "SSTP Server" -msgstr "" +msgstr "Serveur SSTP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "SWAP" @@ -5639,6 +5664,10 @@ msgstr "" "Envoyer des demandes d'échos LCP à intervalles donnés, en secondes ; utile " "uniqument associé à un seuil d'erreurs" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Paramètres du serveur" @@ -5656,7 +5685,7 @@ msgstr "Type du service" msgid "Services" msgstr "Services" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "La session a expiré" @@ -5759,7 +5788,7 @@ msgstr "Signal :" msgid "Size" msgstr "Taille" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Taille du cache de requête DNS" @@ -5827,7 +5856,7 @@ msgstr "Adresse source" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 msgid "Source interface" -msgstr "" +msgstr "Interface source" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "" @@ -6132,7 +6161,7 @@ msgstr "Routes statiques" msgid "Static address" msgstr "Adresse statique" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6265,7 +6294,7 @@ msgstr "TCP :" msgid "TFTP Settings" msgstr "Paramètres TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Racine du serveur TFTP" @@ -6489,7 +6518,7 @@ msgstr "" "internet et les autres ports sont réservés au réseau local." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "La commande de redémarrage a échoué avec le code %d" @@ -6569,8 +6598,8 @@ msgstr "" "Le fichier d'image téléchargé ne contient pas de format pris en charge. " "Assurez-vous de choisir le format d'image générique pour votre plate-forme." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6718,7 +6747,7 @@ msgstr "Intervalle de temps pour retaper GTK" msgid "Timezone" msgstr "Fuseau horaire" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Ouvrir une session…" @@ -6838,7 +6867,7 @@ msgstr "Impossible de déterminer l'adresse IP externe" msgid "Unable to determine upstream interface" msgstr "Impossible de déterminer l'interface en amont" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Impossible d'envoyer" @@ -6900,14 +6929,14 @@ msgstr "Inconnue" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 msgid "Unknown and unsupported connection method." -msgstr "" +msgstr "Méthode de connexion inconnue et non prise en charge." #: modules/luci-base/htdocs/luci-static/resources/network.js:2292 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" msgstr "Erreur inconnue (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Code d'erreur inconnu" @@ -6931,7 +6960,7 @@ msgstr "Clé sans nom" msgid "Unsaved Changes" msgstr "Changements non appliqués" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Erreur non spécifiée" @@ -7019,10 +7048,11 @@ msgstr "Utiliser des serveurs annoncés DHCP" msgid "Use DHCP gateway" msgstr "Utiliser la passerelle DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7078,7 +7108,7 @@ msgstr "Utiliser comme superposition externe (/superposition)" msgid "Use as root filesystem (/)" msgstr "Utiliser comme système de fichiers racine (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Utiliser une marque de diffusion" @@ -7086,7 +7116,7 @@ msgstr "Utiliser une marque de diffusion" msgid "Use builtin IPv6-management" msgstr "Utilisez la gestion IPv6 intégrée" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7101,9 +7131,10 @@ msgstr "Utilisez la gestion IPv6 intégrée" msgid "Use custom DNS servers" msgstr "Utiliser des serveurs DNS spécifiques" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7114,7 +7145,7 @@ msgstr "Utiliser des serveurs DNS spécifiques" msgid "Use default gateway" msgstr "Utiliser la passerelle par défaut" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7125,6 +7156,7 @@ msgstr "Utiliser la passerelle par défaut" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7135,6 +7167,16 @@ msgstr "Utiliser la passerelle par défaut" msgid "Use gateway metric" msgstr "Utiliser la métrique de la passerelle" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Utiliser la table de routage" @@ -7147,7 +7189,7 @@ msgstr "Utiliser des certificats système" msgid "Use system certificates for inner-tunnel" msgstr "Utiliser des certificats système pour le tunnel intérieur" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7205,6 +7247,7 @@ msgstr "Clé utilisateur (codée PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nom d'utilisateur" @@ -7234,16 +7277,19 @@ msgid "VPN Local port" msgstr "Port local VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Serveur VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Port du serveur VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Hachage SHA1 du certificat du serveur VPN" @@ -7294,7 +7340,7 @@ msgstr "La valeur ne doit pas être vide" msgid "Vendor" msgstr "Vendeur" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Classe de fournisseur à envoyer dans les requêtes DHCP" @@ -7341,16 +7387,16 @@ msgstr "" "Le chiffrage WPA nécessite l'installation du paquet wpa_supplicant (en mode " "client) ou hostapd (en mode Point d'accès ou Ad-hoc)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." -msgstr "En attente de l'appareil ..." +msgstr "En attente de l’appareil …" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178 msgid "Warning" msgstr "Avertissement" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Avertissement : Il y a des modifications non sauvegardées qui seront perdues " @@ -7392,7 +7438,7 @@ msgid "Wireless Adapter" msgstr "Module sans-fil" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7513,7 +7559,7 @@ msgstr "Paramètres ZRam" msgid "ZRam Size" msgstr "Taille ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "tous" @@ -7606,14 +7652,14 @@ msgstr "pilote par défaut" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "e.g: --proxy 10.10.10.10" -msgstr "" +msgstr "p. ex. : --proxy 10.10.10.10" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7707,7 +7753,7 @@ msgstr "valeur non vide" #: modules/luci-base/htdocs/luci-static/resources/form.js:3007 msgid "none" -msgstr "Aucun" +msgstr "aucun" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55 @@ -7771,7 +7817,7 @@ msgstr "mode serveur" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53 msgid "sstpc Log-level" -msgstr "" +msgstr "Niveau de journalisation sstpc" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649 msgid "stateful-only" @@ -7805,9 +7851,9 @@ msgstr "valeur unique" msgid "unknown" msgstr "inconnu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index f332d7050..580a4ec22 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-01-14 15:21+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2020-10-20 05:26+0000\n" +"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/luci/he/>" "\n" "Language: he\n" @@ -10,20 +10,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.3.1-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" -msgstr "" +msgstr "%.1f דציבל" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:114 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:261 msgid "%d Bit" -msgstr "" +msgstr "%d סיביות" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3689 msgid "%d invalid field(s)" -msgstr "" +msgstr "%d שדות שגויים" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35 msgid "%s is untagged in multiple VLANs!" @@ -50,7 +50,7 @@ msgstr "(ריק)" #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23 #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58 msgid "(no interfaces attached)" -msgstr "(אין ממשק מצורף)" +msgstr "(לא צורף אף מנשק)" #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48 msgid "-- Additional Field --" @@ -77,7 +77,7 @@ msgstr "-- מותאם אישית --" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379 msgid "-- match by label --" -msgstr "" +msgstr "-- התאמה לפי תווית --" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362 @@ -88,7 +88,7 @@ msgstr "" #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44 #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23 msgid "-- please select --" -msgstr "" +msgstr "-- נא לבחור --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" @@ -172,11 +172,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שאילתא" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שרת" @@ -190,7 +190,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "כתובות <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -214,7 +214,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -226,27 +226,27 @@ msgstr "הגדרות <abbr title=\"Light Emitting Diode\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "שם <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "כתובת-<abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -260,7 +260,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -401,7 +401,7 @@ msgid "Active-Backup policy (active-backup, 1)" msgstr "" # צריך אימות של מישהו שמבין יותר במושגים האלו אם צריך בכלל לתרגם את זה או להשאיר כמו שזה -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 #, fuzzy @@ -500,6 +500,10 @@ msgstr "כתובת" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 #, fuzzy @@ -593,7 +597,7 @@ msgstr "" msgid "Allow listed only" msgstr "אפשר רשומים בלבד" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 #, fuzzy msgid "Allow localhost" msgstr "אפשר localhost" @@ -618,14 +622,14 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148 msgid "Allowed IPs" -msgstr "" +msgstr "כתובות IP מורשות" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 msgid "Always announce default router" @@ -934,7 +938,7 @@ msgstr "" "המסומנים ב opkg ׁOpen PacKaGe Managementׂ, קבצי בסיס חיוניים ותבניות הגיבוי " "המוגדרות ע\"י המשתמש." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -945,6 +949,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -955,6 +960,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1172,13 +1178,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1211,13 +1217,13 @@ msgstr "סגור רשימה..." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:320 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204 msgid "Collecting data..." -msgstr "אוסף מידע..." +msgstr "נאספים נתונים…" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71 msgid "Command" msgstr "פקודה" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1284,7 +1290,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1619,7 +1625,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1680,7 +1686,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1744,6 +1750,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1764,7 +1774,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1929,7 +1939,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "אפשר שרת TFTP" @@ -2070,7 +2080,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2179,7 +2189,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2233,7 +2243,7 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102 msgid "Firewall Mark" -msgstr "" +msgstr "סימן חומת אש" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:326 msgid "Firewall Settings" @@ -2251,7 +2261,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2608,7 +2618,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2888,7 +2898,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2899,6 +2909,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2909,10 +2920,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3052,7 +3064,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17 msgid "Interface" -msgstr "" +msgstr "מנשק" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62 msgid "Interface %q device auto-migrated from %q to %q." @@ -3138,7 +3150,7 @@ msgstr "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חו msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3148,7 +3160,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3299,7 +3311,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3336,11 +3348,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3400,27 +3412,31 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78 msgid "Listen Port" -msgstr "" +msgstr "פתחת האזנה" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3443,6 +3459,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3471,7 +3491,7 @@ msgstr "כתובת IPv4 מקומית" msgid "Local IPv6 address" msgstr "כתובת IPv6 מקומית" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3646,7 +3666,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3659,15 +3679,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3708,7 +3728,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3720,7 +3740,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3818,7 +3838,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3948,7 +3968,7 @@ msgstr "" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4009,7 +4029,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4103,7 +4123,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4141,7 +4161,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4157,7 +4177,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4209,7 +4229,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4246,6 +4266,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4374,7 +4398,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4383,7 +4407,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4570,6 +4594,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4625,7 +4650,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4667,7 +4692,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4675,7 +4700,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4765,7 +4790,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4826,7 +4851,7 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139 msgid "Public Key" -msgstr "" +msgstr "מפתח ציבורי" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:275 msgid "" @@ -4934,23 +4959,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4970,7 +4995,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5030,7 +5055,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5052,7 +5077,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5175,7 +5200,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5222,7 +5247,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5410,6 +5435,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5427,7 +5456,7 @@ msgstr "" msgid "Services" msgstr "שירותים" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5527,7 +5556,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5854,7 +5883,7 @@ msgstr "ניתובים סטטיים" msgid "Static address" msgstr "כתובת סטטית" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5983,7 +6012,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "הגדרות TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6169,7 +6198,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6234,8 +6263,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6341,7 +6370,7 @@ msgstr "" #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 msgid "This section contains no values yet" -msgstr "אזור זה עדיין לא מכיל ערכים." +msgstr "סעיף זה לא מכיל ערכים עדיין" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110 msgid "Time Synchronization" @@ -6355,7 +6384,7 @@ msgstr "" msgid "Timezone" msgstr "אזור זמן" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6472,7 +6501,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6541,7 +6570,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6565,7 +6594,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6648,10 +6677,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6704,7 +6734,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "השתמש בדגל broadcast" @@ -6712,7 +6742,7 @@ msgstr "השתמש בדגל broadcast" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6727,9 +6757,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "השתמש בשרתי DNS מותאמים אישית" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6740,7 +6771,7 @@ msgstr "השתמש בשרתי DNS מותאמים אישית" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6751,6 +6782,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6761,6 +6793,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "השתמש בטבלת ניתוב" @@ -6773,7 +6815,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6820,6 +6862,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "שם משתמש" @@ -6849,16 +6892,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "שרת VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6907,7 +6953,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6952,7 +6998,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6961,7 +7007,7 @@ msgstr "" msgid "Warning" msgstr "אזהרה" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -6998,7 +7044,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7107,7 +7153,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "כלשהו" @@ -7206,8 +7252,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7397,9 +7443,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po index 306831edb..172c9dac5 100644 --- a/modules/luci-base/po/hi/base.po +++ b/modules/luci-base/po/hi/base.po @@ -169,11 +169,11 @@ msgstr "802.11 पुन: प्रयास काल समापन" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -210,7 +210,7 @@ msgstr "<abbr title=\"इंटरनेट प्रोटोकॉल सं msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"इंटरनेट प्रोटोकॉल संस्करण 6\">IPv6</abbr>-गेटवे" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -222,27 +222,27 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "समान नाम वाली एक निर्देशिका पहले से मौजूद है।" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "प्रमाणीकरण सत्र समाप्त होने के बाद से एक नया लॉगिन आवश्यक है।" @@ -394,7 +394,7 @@ msgstr "सक्रिय DHCPv6 पट्टों" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -491,6 +491,10 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -581,7 +585,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -605,7 +609,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -916,7 +920,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -927,6 +931,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -937,6 +942,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1153,13 +1159,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1198,7 +1204,7 @@ msgstr "" msgid "Command" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1265,7 +1271,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1596,7 +1602,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1657,7 +1663,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1721,6 +1727,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1741,7 +1751,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1904,7 +1914,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2045,7 +2055,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2154,7 +2164,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2226,7 +2236,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2583,7 +2593,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2863,7 +2873,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2874,6 +2884,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2884,10 +2895,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3113,7 +3125,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3123,7 +3135,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3274,7 +3286,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3311,11 +3323,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3375,15 +3387,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3395,7 +3411,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3418,6 +3434,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3446,7 +3466,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3621,7 +3641,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3634,15 +3654,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3683,7 +3703,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3695,7 +3715,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3793,7 +3813,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3923,7 +3943,7 @@ msgstr "" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -3984,7 +4004,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4078,7 +4098,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4116,7 +4136,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4132,7 +4152,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4184,7 +4204,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4221,6 +4241,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4349,7 +4373,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4358,7 +4382,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4545,6 +4569,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4600,7 +4625,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4642,7 +4667,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4650,7 +4675,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4740,7 +4765,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4909,23 +4934,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4945,7 +4970,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5005,7 +5030,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5027,7 +5052,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5150,7 +5175,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5197,7 +5222,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5385,6 +5410,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5402,7 +5431,7 @@ msgstr "" msgid "Services" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5502,7 +5531,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5827,7 +5856,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5953,7 +5982,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6139,7 +6168,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6204,8 +6233,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6325,7 +6354,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6441,7 +6470,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6510,7 +6539,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6534,7 +6563,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6617,10 +6646,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6673,7 +6703,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6681,7 +6711,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6696,9 +6726,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6709,7 +6740,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6720,6 +6751,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6730,6 +6762,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6742,7 +6784,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6789,6 +6831,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "" @@ -6818,16 +6861,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6876,7 +6922,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6921,7 +6967,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6930,7 +6976,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -6967,7 +7013,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7076,7 +7122,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7175,8 +7221,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7366,9 +7412,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 7ea8d040d..60c9246f2 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -175,11 +175,11 @@ msgstr "802.11w újrapróbálás időkorlátja" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> lekérdezési port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr>-kiszolgáló portja" @@ -195,7 +195,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-cím" @@ -220,7 +220,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-átjáró" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-utótag (hex)" @@ -232,15 +232,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> beállítása" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> neve" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-cím" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -248,7 +248,7 @@ msgstr "" "<abbr title=\"maximal\">Legnagyobb</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr> bérletek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -256,7 +256,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> csomagméret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">Legtöbb</abbr> egyidejű lekérdezés" @@ -272,7 +272,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Már létezik egy ilyen nevű könyvtár." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Új bejelentkezés szükséges, mivel a hitelesítés munkamenete lejárt." @@ -412,7 +412,7 @@ msgstr "Aktív DHCPv6 bérletek" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -509,6 +509,10 @@ msgstr "Cím" msgid "Address to access local relay bridge" msgstr "Cím a helyi átjátszóhíd eléréséhez" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -603,7 +607,7 @@ msgstr "Örökölt 802.11b sebességek engedélyezése" msgid "Allow listed only" msgstr "Csak a felsoroltak engedélyezése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Localhost engedélyezése" @@ -629,7 +633,7 @@ msgid "Allow the <em>root</em> user to login with password" msgstr "" "Engedélyezés a <em>root</em> felhasználónak, hogy jelszóval jelentkezzen be" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -957,7 +961,7 @@ msgstr "" "alapvető fájlokból, valamint a felhasználó által meghatározott biztonsági " "mentés mintákból áll." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -970,6 +974,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -980,6 +985,7 @@ msgstr "Csatoló kötése" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1219,13 +1225,13 @@ msgstr "" "Kattintson az „Az mtdblock mentése” gombra egy meghatározott mtdblock fájl " "letöltéséhez. (MEGJEGYZÉS: EZ A FUNKCIÓ CSAK SZAKEMBEREKNEK VALÓ!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Ügyfél" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "DHCP kérésekor küldendő ügyfél-azonosító" @@ -1266,7 +1272,7 @@ msgstr "Adatok összegyűjtése…" msgid "Command" msgstr "Parancs" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Parancs rendben" @@ -1338,7 +1344,7 @@ msgstr "Kapcsolódási kísérlet sikertelen" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "A kapcsolat elveszett" @@ -1680,7 +1686,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Az eszköz elérhetetlen!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Az eszköz elérhetetlen! Még mindig az eszközre várunk…" @@ -1743,7 +1749,7 @@ msgstr "Letiltva" msgid "Disassociate On Low Acknowledgement" msgstr "Hozzárendelés megszüntetése alacsony nyugtázásnál" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Külső RFC1918 válaszok elvetése" @@ -1814,6 +1820,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Valóban törölni szeretné ezt: „%s”?" @@ -1834,7 +1844,7 @@ msgstr "Valóban törölni szeretné rekurzívan a(z) „%s” könyvtárat?" msgid "Domain required" msgstr "Tartomány szükséges" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Tartomány fehérlista" @@ -2009,7 +2019,7 @@ msgstr "NTP-ügyfél engedélyezése" msgid "Enable Single DES" msgstr "Egyszeres DES engedélyezése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "TFTP kiszolgáló engedélyezése" @@ -2152,7 +2162,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Csatolók kizárása" @@ -2263,7 +2273,7 @@ msgstr "A fájl nem érhető el" msgid "Filename" msgstr "Fájlnév" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Az ügyfeleknek meghirdetett rendszerindító lemezkép fájlneve" @@ -2337,7 +2347,7 @@ msgstr "Firmware fájl" msgid "Firmware Version" msgstr "Firmware verziója" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Rögzített forrásport a kimenő DNS-lekérdezéseknél" @@ -2702,7 +2712,7 @@ msgid "Host-Uniq tag content" msgstr "Egyedi gépcímketartalom" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2986,7 +2996,7 @@ msgstr "" "Ha meg van adva, akkor az eszköz a rögzített eszközcsomópont helyett " "partíciós címke alapján lesz csatolva" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2997,6 +3007,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3007,10 +3018,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Ha nincs bejelölve, akkor nincs alapértelmezett útvonal beállítva" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3253,7 +3265,7 @@ msgstr "" "Érvénytelen VLAN-azonosító lett megadva! Csak egyedi azonosítók " "engedélyezettek" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Érvénytelen argumentum" @@ -3263,7 +3275,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Érvénytelen parancs" @@ -3416,7 +3428,7 @@ msgstr "Késleltetés" msgid "Leaf" msgstr "Levél" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Bérleti idő" @@ -3453,13 +3465,13 @@ msgstr "Jelmagyarázat:" msgid "Limit" msgstr "Korlát" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "DNS-szolgáltatás korlátozása azokra az alhálózati csatolókra, amelyeken DNS-" "t szolgálunk ki." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Figyelés korlátozása ezekre a csatolókra és a visszacsatolásra." @@ -3532,15 +3544,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "SSH kulcsfájlok listája a hitelesítéshez" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Tartományok listája, amelyeknél az RFC1918 válaszok engedélyezettek" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Gépek listája, amelyek hamis NX-tartomány eredményeket szolgáltatnak" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Figyelési csatolók" @@ -3552,7 +3568,7 @@ msgstr "Fogadó port" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Figyelés csak a megadott csatolón, vagy az összesen, ha nincs megadva" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Port figyelése a bejövő DNS-lekérdezésekhez" @@ -3575,6 +3591,10 @@ msgstr "Könyvtártartalmak betöltése…" msgid "Loading view…" msgstr "Nézet betöltése…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3603,7 +3623,7 @@ msgstr "Helyi IPv4-cím" msgid "Local IPv6 address" msgstr "Helyi IPv6-cím" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Csak helyi szolgáltatás" @@ -3786,7 +3806,7 @@ msgstr "" msgid "Manual" msgstr "Kézi" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Mester" @@ -3799,15 +3819,15 @@ msgstr "Legnagyobb elérhető adatsebesség (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Legnagyobb engedélyezett figyelési időköz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Aktív DHCP bérletek legnagyobb megengedett száma" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Egyidejű DNS-lekérdezések legnagyobb megengedett száma" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "EDNS.0 UDP csomagok legnagyobb megengedett mérete" @@ -3848,7 +3868,7 @@ msgstr "Memória" msgid "Memory usage (%)" msgstr "Memóriahasználat (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Háló" @@ -3860,7 +3880,7 @@ msgstr "Hálóazonosító" msgid "Mesh Id" msgstr "Hálóazonosító" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Nem található módszer" @@ -3958,7 +3978,7 @@ msgstr "" msgid "ModemManager" msgstr "Modemkezelő" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Megfigyelés" @@ -4090,7 +4110,7 @@ msgstr "Hálózat" msgid "Network Utilities" msgstr "Hálózati segédprogramok" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Hálózati rendszerindító lemezkép" @@ -4151,7 +4171,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Nem érkezett adat" @@ -4245,7 +4265,7 @@ msgstr "Zaj:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nem megelőző CRC-hibák (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Nincs helyettesítő karakter" @@ -4283,7 +4303,7 @@ msgstr "Nincs jelen" msgid "Not started on boot" msgstr "Nincs elindítva rendszerindításkor" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Nem támogatott" @@ -4299,7 +4319,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Gyorsítótárazott DNS-bejegyzések száma (legfeljebb 10000, 0 megadásakor " @@ -4353,7 +4373,7 @@ msgstr "Kapcsolatkori útválasztás" msgid "On-State Delay" msgstr "Állapotkori késleltetés" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "A gépnév vagy a MAC-cím egyikét meg kell adni!" @@ -4390,6 +4410,10 @@ msgstr "Lista megnyitása…" msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Működési gyakoriság" @@ -4532,7 +4556,7 @@ msgstr "Kimeneti csatoló" msgid "Output zone" msgstr "Kimeneti zóna" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4541,7 +4565,7 @@ msgstr "Kimeneti zóna" msgid "Override MAC address" msgstr "MAC-cím felülbírálása" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4730,6 +4754,7 @@ msgstr "A(z) %q zóna része" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Jelszó" @@ -4785,7 +4810,7 @@ msgstr "Útvonal a belső ügyféltanúsítványhoz" msgid "Path to inner Private Key" msgstr "Útvonal a belső személyes kulcshoz" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4827,7 +4852,7 @@ msgstr "Sérülés utáni titkosságvédelem" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Újraindítás végrehajtása" @@ -4835,7 +4860,7 @@ msgstr "Újraindítás végrehajtása" msgid "Perform reset" msgstr "Visszaállítás végrehajtása" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Hozzáférés megtagadva" @@ -4927,7 +4952,7 @@ msgstr "" "A partner halottnak tekintése a megadott mennyiségű LCP visszhang hibák " "után. Használjon 0 értéket a hibák figyelmen kívül hagyásához" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Figyelés megakadályozása ezeken a csatolókon." @@ -5109,23 +5134,23 @@ msgstr "Valós idejű grafikonok" msgid "Reassociation Deadline" msgstr "Újratársítás határideje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Újrakötési védelem" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Újraindítás" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Újraindítás…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Újraindítja az eszköz operációs rendszerét" @@ -5145,7 +5170,7 @@ msgstr "Csatoló újrakapcsolódása" msgid "References" msgstr "Hivatkozások" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5205,7 +5230,7 @@ msgstr "IPv6-cím kérése" msgid "Request IPv6-prefix of length" msgstr "Kért IPv6-előtag vagy hossz" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Kérés időkorlátja" @@ -5227,7 +5252,7 @@ msgstr "" msgid "Required" msgstr "Kötelező" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" "Bizonyos internetszolgáltatók esetén szükséges, például DOCSIS 3-mal " @@ -5359,7 +5384,7 @@ msgstr "Resolv és hosts fájlok" msgid "Resolve file" msgstr "Fájl feloldása" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Az erőforrás nem található" @@ -5406,7 +5431,7 @@ msgstr "A kérés visszavonása meghiúsult <code>%h</code> állapotkóddal" msgid "Reverting configuration…" msgstr "Beállítás visszaállítása…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "TFTP-n keresztül kiszolgált fájlok gyökérkönyvtára" @@ -5601,6 +5626,10 @@ msgstr "" "LCP visszhang kérések küldése a másodpercben megadott időközönként, csak " "hibaküszöbszinttel együtt van hatása" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Kiszolgáló beállításai" @@ -5618,7 +5647,7 @@ msgstr "Szolgáltatás típusa" msgid "Services" msgstr "Szolgáltatások" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "A munkamenet lejárt" @@ -5721,7 +5750,7 @@ msgstr "Jel:" msgid "Size" msgstr "Méret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "A DNS lekérdezési gyorsítótár mérete" @@ -6061,7 +6090,7 @@ msgstr "Statikus útvonalak" msgid "Static address" msgstr "Statikus cím" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6193,7 +6222,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP beállítások" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP-kiszolgáló gyökere" @@ -6411,7 +6440,7 @@ msgstr "" "portok a helyi hálózathoz." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Az újraindítási parancs meghiúsult %d kóddal" @@ -6491,8 +6520,8 @@ msgstr "" "A feltöltött lemezképfájl nem tartalmaz támogatott formátumot. Győződjön meg " "arról, hogy az általános lemezképformátumot választotta-e ki a platformjához." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6638,7 +6667,7 @@ msgstr "Időköz a GTK újrakulcsolásához" msgid "Timezone" msgstr "Időzóna" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Bejelentkezéshez…" @@ -6758,7 +6787,7 @@ msgstr "Nem lehet meghatározni a külső IP-címet" msgid "Unable to determine upstream interface" msgstr "Nem lehet meghatározni a külső csatolót" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Nem lehet elküldeni" @@ -6827,7 +6856,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "Ismeretlen hiba (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Ismeretlen hibakód" @@ -6851,7 +6880,7 @@ msgstr "Névtelen kulcs" msgid "Unsaved Changes" msgstr "Mentetlen változtatások" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Meghatározatlan hiba" @@ -6939,10 +6968,11 @@ msgstr "DHCP által meghirdetett kiszolgálók használata" msgid "Use DHCP gateway" msgstr "DHCP-átjáró használata" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6995,7 +7025,7 @@ msgstr "Használat külső rátétként (/overlay)" msgid "Use as root filesystem (/)" msgstr "Használat gyökérfájlrendszerként (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Üzenetszórási jelző használata" @@ -7003,7 +7033,7 @@ msgstr "Üzenetszórási jelző használata" msgid "Use builtin IPv6-management" msgstr "Beépített IPv6-kezelés használata" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7018,9 +7048,10 @@ msgstr "Beépített IPv6-kezelés használata" msgid "Use custom DNS servers" msgstr "Egyedi DNS-kiszolgálók használata" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7031,7 +7062,7 @@ msgstr "Egyedi DNS-kiszolgálók használata" msgid "Use default gateway" msgstr "Alapértelmezett átjáró használata" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7042,6 +7073,7 @@ msgstr "Alapértelmezett átjáró használata" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7052,6 +7084,16 @@ msgstr "Alapértelmezett átjáró használata" msgid "Use gateway metric" msgstr "Átjáró metrikájának használata" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Útválasztási táblázat használata" @@ -7064,7 +7106,7 @@ msgstr "Rendszertanúsítványok használata" msgid "Use system certificates for inner-tunnel" msgstr "Rendszertanúsítványok használata a belső alagútnál" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7119,6 +7161,7 @@ msgstr "Felhasználói kulcs (PEM kódolású)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Felhasználónév" @@ -7148,16 +7191,19 @@ msgid "VPN Local port" msgstr "VPN helyi port" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN-kiszolgáló" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "VPN-kiszolgáló portja" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "VPN-kiszolgáló tanúsítványának SHA1 kivonata" @@ -7209,7 +7255,7 @@ msgstr "" msgid "Vendor" msgstr "Gyártó" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "DHCP kérésekor küldendő gyártóosztály" @@ -7256,7 +7302,7 @@ msgstr "" "A WPA titkosításához „wpa_supplicant” (ügyfél módnál) vagy " "„hostapd” (hozzáférési pontnál és eseti módban) telepítése szükséges." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Várakozás az eszközre…" @@ -7265,7 +7311,7 @@ msgstr "Várakozás az eszközre…" msgid "Warning" msgstr "Figyelmeztetés" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Figyelmeztetés: mentetlen változtatások vannak, amelyek elvesznek az " @@ -7307,7 +7353,7 @@ msgid "Wireless Adapter" msgstr "Vezeték nélküli adapter" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7425,7 +7471,7 @@ msgstr "ZRam beállítások" msgid "ZRam Size" msgstr "ZRam mérete" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "bármely" @@ -7524,8 +7570,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7717,9 +7763,9 @@ msgstr "egyedi érték" msgid "unknown" msgstr "ismeretlen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index 9e2a5e95d..bd68b8da1 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -174,11 +174,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "Porta di richiesta <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "Porta Server <abbr title=\"Domain Name System\">DNS</abbr>" @@ -194,7 +194,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Indirizzo <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -220,7 +220,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Gateway <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -232,15 +232,15 @@ msgstr "Configurazione <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nome del <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Indirizzo <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -248,7 +248,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> lease <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -256,7 +256,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> dimensione pacchetti <abbr title=" "\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "Numero <abbr title=\"maximal\">max.</abbr> richieste simultanee" @@ -272,7 +272,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -412,7 +412,7 @@ msgstr "Lease DHCPv6 attivi" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -509,6 +509,10 @@ msgstr "Indirizzo" msgid "Address to access local relay bridge" msgstr "Indirizzo per accedere al bridge locale di trasmissione" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -601,7 +605,7 @@ msgstr "" msgid "Allow listed only" msgstr "Consenti solo quelli nell'elenco" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Permetti localhost" @@ -626,7 +630,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Abilita l'accesso all'utente <em>root</em> via password" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -945,7 +949,7 @@ msgstr "" "composto da file di configurazione modificati contrassegnati da opkg, file " "di base essenziali e schemi di backup definiti dall'utente." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -956,6 +960,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -966,6 +971,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1191,13 +1197,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "ID Cliente da inviare all'interno della richiesta DHCP" @@ -1238,7 +1244,7 @@ msgstr "Raccolta dati..." msgid "Command" msgstr "Comando" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1305,7 +1311,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1641,7 +1647,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Dispositivo irraggiungibile!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1704,7 +1710,7 @@ msgstr "Disabilitato" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Scarta risposte RFC1918 upstream" @@ -1774,6 +1780,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Non inoltrare ricerche inverse per reti locali" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1794,7 +1804,7 @@ msgstr "" msgid "Domain required" msgstr "Dominio richiesto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Lista domini consentiti" @@ -1964,7 +1974,7 @@ msgstr "Abilita client NTP" msgid "Enable Single DES" msgstr "Abilita DES Singolo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Abilita server TFTP" @@ -2105,7 +2115,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2216,7 +2226,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Nome del file dell'immagine di avvio annunciato ai client" @@ -2288,7 +2298,7 @@ msgstr "" msgid "Firmware Version" msgstr "Versione Firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Porta di origine fissa per le richieste DNS in uscita" @@ -2647,7 +2657,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2931,7 +2941,7 @@ msgstr "" "Se specificato, montare il dispositivo dall'etichetta della partizione " "invece che dal nodo del dispositivo fisso" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2942,6 +2952,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2952,10 +2963,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Se deselezionata, non è configurato alcun percorso predefinito" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3189,7 +3201,7 @@ msgstr "ID VLAN non valido! Solo gli ID compresi tra %d e %d sono consentiti." msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3199,7 +3211,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3353,7 +3365,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Tempo di lease" @@ -3390,11 +3402,11 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3456,15 +3468,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Elenco di domini per cui consentire risposte RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Elenco di host che forniscono risultati NX domain fasulli" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3476,7 +3492,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Ascolta solo sull'interfaccia data o, se non specificato, su tutte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Porta di ascolto per le richieste DNS in entrata" @@ -3499,6 +3515,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3527,7 +3547,7 @@ msgstr "Indirizzo IPv4 locale" msgid "Local IPv6 address" msgstr "Indirizzo IPv6 locale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3708,7 +3728,7 @@ msgstr "" msgid "Manual" msgstr "Manuale" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3721,15 +3741,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3770,7 +3790,7 @@ msgstr "Memoria" msgid "Memory usage (%)" msgstr "Uso Memoria (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3782,7 +3802,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3880,7 +3900,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4012,7 +4032,7 @@ msgstr "Rete" msgid "Network Utilities" msgstr "Utilità di Rete" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4073,7 +4093,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4167,7 +4187,7 @@ msgstr "Rumore:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4205,7 +4225,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4221,7 +4241,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4273,7 +4293,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4310,6 +4330,10 @@ msgstr "Apri lista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4438,7 +4462,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4447,7 +4471,7 @@ msgstr "" msgid "Override MAC address" msgstr "Sovrascrivi indirizzo MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4636,6 +4660,7 @@ msgstr "Parte della zona %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Password" @@ -4691,7 +4716,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4733,7 +4758,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Esegui un riavvio" @@ -4741,7 +4766,7 @@ msgstr "Esegui un riavvio" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4831,7 +4856,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -5002,23 +5027,23 @@ msgstr "Grafici in Tempo Reale" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Riavvia" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Riavvia il sistema operativo del tuo dispositivo" @@ -5038,7 +5063,7 @@ msgstr "Ricollega questa interfaccia" msgid "References" msgstr "Riferimenti" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5098,7 +5123,7 @@ msgstr "Richiede indirizzo-IPv6" msgid "Request IPv6-prefix of length" msgstr "Richiede prefisso-IPv6 di lunghezza" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5120,7 +5145,7 @@ msgstr "" msgid "Required" msgstr "Richiesto" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5243,7 +5268,7 @@ msgstr "" msgid "Resolve file" msgstr "File Resolve" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5290,7 +5315,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5480,6 +5505,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Impostazioni Server" @@ -5497,7 +5526,7 @@ msgstr "" msgid "Services" msgstr "Servizi" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5597,7 +5626,7 @@ msgstr "" msgid "Size" msgstr "Dimensione" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5930,7 +5959,7 @@ msgstr "Instradamenti Statici" msgid "Static address" msgstr "Indirizzo Statico" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6060,7 +6089,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Impostazioni TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Server TFTP principale" @@ -6250,7 +6279,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6322,8 +6351,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6449,7 +6478,7 @@ msgstr "" msgid "Timezone" msgstr "Fuso orario" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6568,7 +6597,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6637,7 +6666,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6661,7 +6690,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Modifiche non salvate" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6744,10 +6773,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "Usa il DHCP del gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6800,7 +6830,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Usa flag broadcast" @@ -6808,7 +6838,7 @@ msgstr "Usa flag broadcast" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6823,9 +6853,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "Usa server DNS personalizzati" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6836,7 +6867,7 @@ msgstr "Usa server DNS personalizzati" msgid "Use default gateway" msgstr "Usa il gateway predefinito" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6847,6 +6878,7 @@ msgstr "Usa il gateway predefinito" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6857,6 +6889,16 @@ msgstr "Usa il gateway predefinito" msgid "Use gateway metric" msgstr "Usa la metrica del gateway" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Utilizzare tabella di instradamento" @@ -6869,7 +6911,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6922,6 +6964,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nome Utente" @@ -6951,16 +6994,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Server VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -7009,7 +7055,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP" @@ -7056,7 +7102,7 @@ msgstr "" "La crittografia WPA richiede wpa_supplicant (per la modalità client) o " "hostapd (per AP e modalità ad hoc) per essere installato." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -7065,7 +7111,7 @@ msgstr "" msgid "Warning" msgstr "Avviso" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7102,7 +7148,7 @@ msgid "Wireless Adapter" msgstr "Dispositivo Wireless" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7218,7 +7264,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "qualsiasi" @@ -7317,8 +7363,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7510,9 +7556,9 @@ msgstr "" msgid "unknown" msgstr "sconosciuto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index d1e6cbf52..e7ec29f18 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-09-04 13:36+0000\n" -"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" +"PO-Revision-Date: 2020-10-24 08:56+0000\n" +"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/luci/ja/" ">\n" "Language: ja\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.3.1\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -29,7 +29,7 @@ msgstr "無効な入力欄: %d 個" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35 msgid "%s is untagged in multiple VLANs!" -msgstr "%s は複数のVLANにUntaggedしています!" +msgstr "%s は複数のVLANでタグが付けられていません!" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403 @@ -37,7 +37,7 @@ msgstr "%s は複数のVLANにUntaggedしています!" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325 msgid "(%d minute window, %d second interval)" -msgstr "(%d 分幅, %d 秒間隔)" +msgstr "(%d 分幅, %d 秒間隔)" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124 @@ -46,13 +46,13 @@ msgstr "(%d 分幅, %d 秒間隔)" #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88 #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91 msgid "(empty)" -msgstr "(空)" +msgstr "(空)" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351 #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23 #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58 msgid "(no interfaces attached)" -msgstr "(インターフェースが接続されていません)" +msgstr "(インターフェースが接続されていません)" #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48 msgid "-- Additional Field --" @@ -74,7 +74,7 @@ msgstr "-- 選択してください --" #: modules/luci-base/htdocs/luci-static/resources/ui.js:1975 #: modules/luci-compat/luasrc/view/cbi/header.htm:9 msgid "-- custom --" -msgstr "-- 手動設定 --" +msgstr "-- カスタム --" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379 @@ -95,11 +95,11 @@ msgstr "-- 選択してください --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" msgid "0" -msgstr "" +msgstr "0" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "0: RSSI しきい値を使用しない, 1: ドライバのデフォルトを使用する" +msgstr "0: RSSI しきい値を使用しない、1: ドライバーのデフォルトを使用する" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" @@ -108,11 +108,11 @@ msgstr "1" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 msgid "1 Minute Load:" -msgstr "過去1分の負荷:" +msgstr "過去1分間の負荷:" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:251 msgid "15 Minute Load:" -msgstr "過去15分の負荷:" +msgstr "過去15分間の負荷:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 msgctxt "sstp log level value" @@ -136,11 +136,11 @@ msgstr "4 文字かつ 16 進数の ID" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11 msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" +msgstr "464XLAT(CLAT)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241 msgid "5 Minute Load:" -msgstr "過去5分の負荷:" +msgstr "過去5分間の負荷:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471 msgid "6-octet identifier as a hex string - no colons" @@ -152,11 +152,11 @@ msgstr "802.11r 高速ローミング" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 msgid "802.11w Association SA Query maximum timeout" -msgstr "802.11w アソシエーションSAクエリの最大タイムアウト時間です" +msgstr "802.11w アソシエーションSAクエリの最大タイムアウト時間" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626 msgid "802.11w Association SA Query retry timeout" -msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間です。" +msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 msgid "802.11w Management Frame Protection" @@ -174,11 +174,11 @@ msgstr "802.11w 再試行タイムアウト" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> クエリポート" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> サーバーポート" @@ -194,7 +194,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-アドレス" @@ -212,17 +212,15 @@ msgid "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network " "(CIDR)" msgstr "" -"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-アドレス又はネット" -"ワーク (CIDR)" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-アドレス又はネットワーク(CIDR)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-ゲートウェイ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" -msgstr "" -"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス (16進数)" +msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス(16進数)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -232,15 +230,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-アドレス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -248,7 +246,7 @@ msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> リース" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -256,7 +254,7 @@ msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> パケットサイズ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">最大</abbr> 並列処理クエリ" @@ -272,7 +270,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "同名のディレクトリが既に存在します。" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "認証セッションの期限切れのため、再ログインが必要です。" @@ -322,7 +320,7 @@ msgstr "" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77 msgid "ARP monitoring is not supported for the selected policy!" -msgstr "選択したポリシーでは ARP モニタリングはサポートされていません !" +msgstr "選択したポリシーでは ARP モニタリングはサポートされていません!" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 msgid "ARP retry threshold" @@ -339,12 +337,12 @@ msgstr "ATMブリッジ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66 msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM仮想チャネル識別子 (VCI)" +msgstr "ATM仮想チャネル識別子(VCI)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:971 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70 msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM仮想パス識別子 (VPI)" +msgstr "ATM仮想パス識別子(VPI)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938 msgid "" @@ -370,7 +368,7 @@ msgstr "存在しないインターフェース" #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47 msgid "Access Concentrator" -msgstr "Access Concentrator" +msgstr "アクセスコンセントレータ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:927 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032 @@ -409,7 +407,7 @@ msgstr "アクティブなDHCPv6リース" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -470,9 +468,7 @@ msgstr "公開鍵を追加" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248 msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"hosts ファイルにより解決される名前にローカルドメイン サフィックスを付加しま" -"す。" +msgstr "hosts ファイルから提供される名前にローカルドメイン サフィックスを追加" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757 @@ -489,7 +485,7 @@ msgstr "追加のホストファイル" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255 msgid "Additional servers file" -msgstr "追加のサーバー ファイル" +msgstr "追加のサーバーファイル" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35 @@ -508,6 +504,10 @@ msgstr "アドレス" msgid "Address to access local relay bridge" msgstr "ローカル リレーブリッジにアクセスするためのIPアドレス" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "アドレス一覧" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -568,8 +568,7 @@ msgstr "全てのサーバー" msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address" -msgstr "" -"IP アドレスを連続的に並べ、利用可能な最小のアドレスから払い出しを開始します。" +msgstr "IP アドレスを順番に並べ、利用可能な最小のアドレスから開始" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208 msgid "Allocate IP sequentially" @@ -577,11 +576,11 @@ msgstr "連続 IP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" -msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワード認証を許可します。" +msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワード認証を許可" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112 msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "AP モード動作時に、低 ACK(確認応答)状態の STA の切断を許可します。" +msgstr "AP モード動作時に、低 ACK(確認応答)状態の STA の切断を許可" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016 msgid "Allow all except listed" @@ -599,7 +598,7 @@ msgstr "レガシー 802.11b レートを許可" msgid "Allow listed only" msgstr "リスト内の端末からのアクセスを許可" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "ローカルホストを許可する" @@ -609,8 +608,7 @@ msgstr "デバイスの再起動を許可" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36 msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"リモートホストがSSH転送されたローカルのポートに接続することを許可します。" +msgstr "リモートホストがSSH転送されたローカルのポートに接続することを許可" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 msgid "Allow root logins with password" @@ -622,14 +620,12 @@ msgstr "システム機能のプローブを許可" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 msgid "Allow the <em>root</em> user to login with password" -msgstr "パスワードを使用した <em>root</em> 権限でのログインを許可します。" +msgstr "パスワードを使用して <em>root</em> 権限へのログインを許可" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"上位サーバーからの特定範囲内 (127.0.0.0/8) の応答を許可します。例: RBL サービ" -"スのため" +msgstr "上位サーバーからの特定範囲内(127.0.0.0/8)の応答を許可します。例: RBL サービスのため" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148 msgid "Allowed IPs" @@ -641,19 +637,18 @@ msgstr "常にデフォルト ルーターを通知する" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5 msgid "Always off (kernel: none)" -msgstr "常にオフ (kernel: none)" +msgstr "常にオフ(kernel: none)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6 msgid "Always on (kernel: default-on)" -msgstr "常にオン (kernel: default-on)" +msgstr "常にオン(kernel: default-on)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907 msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" -"セカンダリ チャンネルの重複にかかわらず、常に 40MHz チャンネルを使用します。" -"このオプションの使用は、 IEEE 802.11n-2009 に準拠しません!" +"セカンダリ チャンネルの重複にかかわらず、常に40MHzチャンネルを使用します。このオプションは、IEEE 802.11n-2009に準拠しません!" #: modules/luci-base/htdocs/luci-static/resources/form.js:603 msgid "An error occurred while saving the form:" @@ -662,7 +657,7 @@ msgstr "フォームの保存中にエラーが発生:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Annex" -msgstr "" +msgstr "Annex" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891 msgid "Annex A + L + M (all)" @@ -732,7 +727,7 @@ msgstr "通知される DNS ドメイン" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:658 msgid "Announced DNS servers" -msgstr "通知される DNS サーバー" +msgstr "通知されるDNSサーバー" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596 msgid "Anonymous Identity" @@ -755,7 +750,7 @@ msgstr "全てのゾーン" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119 msgid "Apply backup?" -msgstr "バックアップの適用" +msgstr "バックアップを適用しますか?" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276 msgid "Apply request failed with status <code>%h</code>" @@ -768,7 +763,7 @@ msgstr "チェック無しの適用" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4215 msgid "Applying configuration changes… %ds" -msgstr "設定を適用中です… %d 秒" +msgstr "設定を適用中です… 残り最大%d秒" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56 msgid "Architecture" @@ -780,7 +775,7 @@ msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" msgstr "" "パブリック IPv6 プレフィクスのうち、指定されたプレフィクス長をこのインター" -"フェースに割り当てます。" +"フェースに割り当てる" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31 @@ -801,8 +796,7 @@ msgstr "アソシエーション数" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154 msgid "Attempt to enable configured mount points for attached devices" -msgstr "" -"アタッチ済みデバイスに対して構成済みのマウントポイントの有効化を試行します。" +msgstr "アタッチ済みデバイスに対して構成済みのマウントポイントの有効化を試行" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:104 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64 @@ -820,11 +814,11 @@ msgstr "認証タイプ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172 msgid "Authoritative" -msgstr "Authoritative" +msgstr "権威" #: modules/luci-base/luasrc/view/sysauth.htm:17 msgid "Authorization Required" -msgstr "ログイン認証" +msgstr "ログイン" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197 @@ -848,19 +842,19 @@ msgstr "自動" #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7 msgid "Automatic Homenet (HNCP)" -msgstr "自動ホームネット (HNCP)" +msgstr "自動ホームネット(HNCP)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174 msgid "Automatically check filesystem for errors before mounting" -msgstr "マウント実行前にファイルシステムのエラーを自動的にチェックします。" +msgstr "マウント実行前にファイルシステムのエラーを自動的にチェック" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170 msgid "Automatically mount filesystems on hotplug" -msgstr "ホットプラグによってファイルシステムを自動的にマウントします。" +msgstr "ホットプラグによりファイルシステムを自動的にマウント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166 msgid "Automatically mount swap on hotplug" -msgstr "ホットプラグによってスワップ パーティションを自動的にマウントします。" +msgstr "ホットプラグによりスワップ パーティションを自動的にマウント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170 msgid "Automount Filesystem" @@ -922,12 +916,12 @@ msgstr "バックアップ" #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114 msgid "Backup / Flash Firmware" -msgstr "バックアップ / ファームウェア更新" +msgstr "バックアップ / 更新" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:323 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" -msgstr "バックアップファイル リスト" +msgstr "バックアップファイルリスト" #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:451 @@ -949,7 +943,7 @@ msgstr "" "よって認識されている設定ファイル、重要なベースファイル、ユーザーが設定したパ" "ターンに一致したファイルの一覧です。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -962,6 +956,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -972,6 +967,7 @@ msgstr "インターフェースのバインド" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -989,7 +985,7 @@ msgstr "偽の NX ドメイン オーバーライド" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199 msgid "Bonding Policy" -msgstr "" +msgstr "ボンディングポリシー" #: modules/luci-base/htdocs/luci-static/resources/network.js:2877 #: modules/luci-compat/luasrc/model/network.lua:1421 @@ -1024,7 +1020,7 @@ msgstr "バッファ" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138 msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "CA証明書(空白の場合、初回の接続後に保存されます。)" +msgstr "CA証明書; 空白の場合、初回の接続後に保存されます。" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7 msgid "CLAT configuration failed" @@ -1032,7 +1028,7 @@ msgstr "CLAT の構成に失敗しました" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" -msgstr "CPU使用率 (%)" +msgstr "CPU使用率(%)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41 msgid "Cached" @@ -1166,10 +1162,8 @@ msgid "" "fill out the <em>custom</em> field to define a new zone and attach the " "interface to it." msgstr "" -"このインターフェースに設定するファイウォール ゾーンを選択してください。<em>設" -"定しない</em>を選択すると、設定済みのゾーンを削除します。また、<em>作成</em>" -"フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインターフェース" -"に設定します。" +"このインターフェースに設定するファイウォールゾーンを選択してください。<em>設定しない</em>を選択すると、設定済みのゾーンを削除します。また、<em" +">作成</em>フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインターフェースに設定します。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959 msgid "" @@ -1191,25 +1185,23 @@ msgstr "Cisco UDP カプセル化" msgid "" "Click \"Generate archive\" to download a tar archive of the current " "configuration files." -msgstr "" -"\"バックアップ アーカイブを生成\" をクリックすると、現在の設定ファイルをtar形" -"式のアーカイブファイルとしてダウンロードします。" +msgstr "\"バックアップアーカイブを生成\" をクリックすると、現在の設定ファイルをtar形式のアーカイブファイルとしてダウンロードします。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396 msgid "" "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -"指定した mtdblock ファイルをダウンロードするには、 \"mtdblock を保存\" をク" -"リックしてください。(注: この機能はプロフェッショナル向けです!)" +"指定したmtdblockファイルをダウンロードするには、\"mtdblockを保存\"をクリックしてください。(注意: " +"この機能はプロフェッショナル向けです!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "クライアント" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "DHCPリクエスト時に送信するクライアントID" @@ -1250,13 +1242,13 @@ msgstr "データを収集中..." msgid "Command" msgstr "コマンド" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "コマンド OK" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33 msgid "Command failed" -msgstr "コマンド失敗" +msgstr "コマンド実行失敗" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72 msgid "Comment" @@ -1269,9 +1261,8 @@ msgid "" "workaround might cause interoperability issues and reduced robustness of key " "negotiation especially in environments with heavy traffic load." msgstr "" -"キーのインストールに使用される EAPOL キーフレームの再送信を無効にすることによ" -"り、クライアント サイドの Key Reinstallation Attacks (KRACK) を困難にします。" -"この回避策は、相互運用性の問題や、特に高負荷のトラフィック環境下におけるキー " +"キーのインストールに使用される EAPOL キーフレームの再送信を無効にすることにより、クライアント サイドの Key Reinstallation " +"Attacks(KRACK)を困難にします。この回避策は、相互運用性の問題や、特に高負荷のトラフィック環境下におけるキー " "ネゴシエーションの信頼性低下の原因となることがあります。" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91 @@ -1319,9 +1310,9 @@ msgstr "接続の試行が失敗しました" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 msgid "Connection attempt failed." -msgstr "" +msgstr "接続の試行に失敗しました。" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "接続喪失" @@ -1416,27 +1407,27 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6 msgid "Custom flash interval (kernel: timer)" -msgstr "カスタムな点滅間隔 (kernel: timer)" +msgstr "カスタムな点滅間隔(kernel: timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" "\">LED</abbr>s if possible." msgstr "" -"<abbr title=\"Light Emitting Diode\">LED</abbr> デバイスの挙動をカスタマイズ" -"します。" +"デバイスの <abbr title=\"Light Emitting Diode\">LED</abbr> の挙動をカスタマイ" +"ズします。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353 msgid "DAE-Client" -msgstr "" +msgstr "DAEクライアント" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358 msgid "DAE-Port" -msgstr "" +msgstr "DAEポート" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1363 msgid "DAE-Secret" -msgstr "" +msgstr "DAEシークレット" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:327 msgid "DHCP Server" @@ -1496,7 +1487,7 @@ msgstr "DNSSEC 未署名チェック" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99 msgid "DPD Idle Timeout" -msgstr "DPD アイドル・タイムアウト" +msgstr "DPDアイドルタイムアウト" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41 msgid "DS-Lite AFTR address" @@ -1537,7 +1528,7 @@ msgstr "デバッグ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358 msgid "Default %d" -msgstr "標準設定 %d" +msgstr "初期設定 %d" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107 msgid "Default Route" @@ -1556,11 +1547,11 @@ msgstr "デフォルト ゲートウェイ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646 msgid "Default is stateless + stateful" -msgstr "デフォルトは ステートレス + ステートフル です。" +msgstr "デフォルトは ステートレス + ステートフル" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11 msgid "Default state" -msgstr "標準状態" +msgstr "初期状態" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619 msgid "" @@ -1568,8 +1559,8 @@ msgid "" "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS " "servers to clients." msgstr "" -"追加のDHCPオプションを設定します。(例:\"<code>6,192.168.2.1,192.168.2.2</" -"code>\" と設定することで、クライアントに指定のDNSサーバーを通知します。)" +"追加のDHCPオプションを設定します(例: \"<code>6,192.168.2.1,192.168.2.2</code>\" " +"と設定することで、クライアントに指定のDNSサーバーを通知します)。" #: modules/luci-base/htdocs/luci-static/resources/form.js:2237 #: modules/luci-base/htdocs/luci-static/resources/form.js:2662 @@ -1655,15 +1646,15 @@ msgstr "デバイスを再起動中…" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 msgid "Device not managed by ModemManager." -msgstr "" +msgstr "モデムマネージャーはデバイスを管理していません。" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4163 msgid "Device unreachable!" msgstr "デバイスに到達できません!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." -msgstr "デバイスに到達できません!まだデバイスを待っています..." +msgstr "デバイスに接続できません!まだデバイスを待っています..." #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88 msgid "Diagnostics" @@ -1672,7 +1663,7 @@ msgstr "診断機能" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:93 msgid "Dial number" -msgstr "" +msgstr "番号をダイヤル" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 msgid "Directory" @@ -1688,8 +1679,8 @@ msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"このインターフェースでは<abbr title=\"Dynamic Host Configuration Protocol" -"\">DHCP</abbr>機能を使用しません。" +"このインターフェースでは<abbr title=\"Dynamic Host Configuration Protocol\"" +">DHCP</abbr>を使用しない。" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373 @@ -1724,7 +1715,7 @@ msgstr "無効" msgid "Disassociate On Low Acknowledgement" msgstr "低 Acknowledgement 時のアソシエーション解除" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "RFC1918の応答を破棄します" @@ -1741,7 +1732,7 @@ msgstr "切断の試行が失敗しました" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 msgid "Disconnection attempt failed." -msgstr "" +msgstr "切断の試行に失敗しました。" #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2861 @@ -1768,30 +1759,32 @@ msgid "" "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> " "firewalls" msgstr "" -"Dnsmasq は <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" -"サーバーと <abbr title=\"Network Address Translation\">NAT</abbr>ファイア" -"ウォールの為の <abbr title=\"Domain Name System\">DNS</abbr>フォワーダーを複" -"合したサービスです。" +"Dnsmasq は <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> " +"サーバーと <abbr title=\"Network Address Translation\">NAT</abbr> ファイアウォールの為の " +"<abbr title=\"Domain Name System\">DNS</abbr> フォワーダーを複合したサービスです" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252 msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"無効なリプライをキャッシュしません(例:存在しないドメインからの返答など)" +msgstr "無効なリプライをキャッシュしない(例: 存在しないドメインからの返答など)" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:79 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "Do not create host route to peer (optional)." -msgstr "" +msgstr "ピアへのホストルートを作成しない(オプション)。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219 msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "パブリック DNSサーバーが返答できなかったリクエストを転送しません" +msgstr "パブリックDNSサーバーが返答できなかったリクエストを転送しない" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214 msgid "Do not forward reverse lookups for local networks" -msgstr "ローカル ネットワークへの逆引きを転送しません" +msgstr "ローカルネットワークへの逆引きを転送しない" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "ホスト名を送信しない" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" @@ -1813,7 +1806,7 @@ msgstr "本当にディレクトリ \"%s\" を再帰的に削除しますか?" msgid "Domain required" msgstr "ドメイン必須" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "ドメイン ホワイトリスト" @@ -1828,20 +1821,20 @@ msgid "" "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " "<abbr title=\"Domain Name System\">DNS</abbr>-Name" msgstr "" -"<abbr title=\"Domain Name System\">DNS</abbr>名の無い <abbr title=\"Domain " -"Name System\">DNS</abbr>リクエストを転送しません" +"<abbr title=\"Domain Name System\">DNS</abbr> 名の無い <abbr title=\"Domain Name " +"System\">DNS</abbr> リクエストを転送しない" #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152 msgid "Down" -msgstr "下へ" +msgstr "ダウン" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402 msgid "Down Delay" -msgstr "" +msgstr "ダウン遅延" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366 msgid "Download backup" -msgstr "バックアップ アーカイブのダウンロード" +msgstr "バックアップアーカイブのダウンロード" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404 msgid "Download mtdblock" @@ -1868,14 +1861,13 @@ msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" msgstr "" -"Dropbear は <abbr title=\"Secure Shell\">SSH</abbr> ネットワークへのシェルア" -"クセスと統合された <abbr title=\"Secure Copy\">SCP</abbr> サーバーを提供しま" -"す。" +"Dropbearは <abbr title=\"Secure Shell\">SSH</abbr> ネットワークへのシェルアクセスと統合された " +"<abbr title=\"Secure Copy\">SCP</abbr> サーバーを提供します" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 msgid "Dual-Stack Lite (RFC6333)" -msgstr "Dual-Stack Lite (RFC6333)" +msgstr "DS-Lite(RFC6333)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595 msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" @@ -1987,7 +1979,7 @@ msgstr "NTPクライアント機能を有効にする" msgid "Enable Single DES" msgstr "シングルDESの有効化" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "TFTPサーバーを有効にする" @@ -1997,11 +1989,11 @@ msgstr "VLAN機能を有効にする" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638 msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE" -msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSK/WPA3-SAEが必要です。" +msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSK/WPA3-SAEが必要" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634 msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Key Reinstallation (KRACK) 対策の有効化" +msgstr "Key Reinstallation(KRACK)対策の有効化" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187 msgid "Enable learning and aging" @@ -2018,9 +2010,7 @@ msgstr "送信パケットのミラーリングを有効化" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:882 msgid "" "Enable packet steering across all CPUs. May help or hinder network speed." -msgstr "" -"すべての CPU でパケット・ステアリングを有効にします。 ネットワーク速度を向上" -"または阻害する可能性があります。" +msgstr "すべてのCPUでパケットステアリングを有効にします。 ネットワーク速度を向上または低下する可能性があります。" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75 @@ -2031,7 +2021,7 @@ msgstr "rx チェックサムを有効化" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67 msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "カプセル化されたパケットの DF (Don't Fragment) フラグを有効にします。" +msgstr "カプセル化されたパケットの DF(Don't Fragment)フラグを有効にします。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837 msgid "Enable this network" @@ -2058,7 +2048,7 @@ msgid "" "Domain" msgstr "" "同一のモビリティ ドメイン(モビリティ グループ)に属するアクセスポイント間の" -"高速ローミングを有効にします。" +"高速ローミングを有効化" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460 msgid "Enables the Spanning Tree Protocol on this bridge" @@ -2132,7 +2122,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "除外インターフェース" @@ -2167,9 +2157,7 @@ msgstr "期限切れ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "" "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." -msgstr "" -"リースアドレスの有効時間を入力します。最小設定値は2分です。 (<code>2m</" -"code>)." +msgstr "リースアドレスの有効時間です。最小値は2分です(<code>2m</code>)。" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19 msgid "External" @@ -2185,15 +2173,15 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:146 msgid "External system log server" -msgstr "外部システムログ サーバー" +msgstr "外部システムログサーバー" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:151 msgid "External system log server port" -msgstr "外部システムログ・サーバー ポート" +msgstr "外部システムログサーバーポート" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:156 msgid "External system log server protocol" -msgstr "外部システムログ・サーバー プロトコル" +msgstr "外部システムログサーバープロトコル" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79 msgid "Extra SSH command options" @@ -2201,11 +2189,11 @@ msgstr "拡張 SSHコマンドオプション" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "Extra pppd options" -msgstr "" +msgstr "追加のpppdオプション" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "Extra sstpc options" -msgstr "" +msgstr "追加のsstpcオプション" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 msgid "FT over DS" @@ -2225,7 +2213,7 @@ msgstr "システム パスワードの変更に失敗しました。" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "%d 秒以内の適用を確認できませんでした。ロールバック中です…" +msgstr "%d秒以内に適用できませんでした。ロールバック中です…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37 msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" @@ -2243,7 +2231,7 @@ msgstr "ファイルにアクセスできません" msgid "Filename" msgstr "ファイル名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "クライアントに通知するブートイメージのファイル名" @@ -2258,7 +2246,7 @@ msgstr "プライベートフィルター" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218 msgid "Filter useless" -msgstr "" +msgstr "役に立たないフィルター" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388 msgid "Filtering for all slaves, no validation" @@ -2283,7 +2271,7 @@ msgid "" "with defaults based on what was detected" msgstr "" "現在アタッチされている全てのファイルシステムとスワップを検索し、検出結果に基" -"づいてデフォルト設定を置き換えます。" +"づいてデフォルト設定を置き換える" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:820 msgid "Find and join network" @@ -2317,18 +2305,18 @@ msgstr "ファームウェア ファイル" msgid "Firmware Version" msgstr "ファームウェア バージョン" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "DNSクエリを送信する送信元ポートを固定します" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421 msgid "Flash image..." -msgstr "更新" +msgstr "イメージファイルをフラッシュ..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279 msgid "Flash image?" -msgstr "更新" +msgstr "イメージファイルをフラッシュしますか?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411 msgid "Flash new firmware image" @@ -2341,7 +2329,7 @@ msgstr "更新機能" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290 msgid "Flashing…" -msgstr "更新中…" +msgstr "フラッシュ中…" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598 msgid "Force" @@ -2353,7 +2341,7 @@ msgstr "強制 40MHz モード" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158 msgid "Force CCMP (AES)" -msgstr "CCMP (AES)" +msgstr "CCMP(AES)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598 msgid "Force DHCP on this network even if another server is detected." @@ -2366,7 +2354,7 @@ msgstr "TKIP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160 msgid "Force TKIP and CCMP (AES)" -msgstr "TKIP 及びCCMP (AES)" +msgstr "TKIP 及びCCMP(AES)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864 msgid "Force link" @@ -2414,7 +2402,7 @@ msgid "" "wireguard.com'>wireguard.com</a>." msgstr "" "WireGuard インターフェースとピアについての詳細情報: <a href=\"http://" -"wireguard.com\">wireguard.com</a>" +"wireguard.com\">wireguard.com</a>。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184 @@ -2458,7 +2446,7 @@ msgstr "無効なゲートウェイ アドレスです" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" -msgstr "" +msgstr "ゲートウェイメトリック" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:323 @@ -2481,7 +2469,7 @@ msgstr "コンフィグ生成" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66 msgid "Generate Key" -msgstr "" +msgstr "キーを生成" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460 msgid "Generate PMK locally" @@ -2489,11 +2477,11 @@ msgstr "ローカルで PMK を生成" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368 msgid "Generate archive" -msgstr "バックアップ アーカイブを生成" +msgstr "バックアップアーカイブを生成" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79 msgid "Given password confirmation did not match, password not changed!" -msgstr "入力されたパスワードが一致しません。パスワードは変更されませんでした!" +msgstr "入力したパスワードが一致しません。パスワードは変更されません!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146 msgid "Global Settings" @@ -2552,7 +2540,7 @@ msgstr "crontab 構成へのアクセスを許可" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60 msgid "Grant access to firewall status" -msgstr "ファイアウォール・ステータスへのアクセスを許可" +msgstr "ファイアウォールステータスへのアクセスを許可" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116 msgid "Grant access to flash operations" @@ -2580,11 +2568,11 @@ msgstr "ネットワーク診断ツールへのアクセスを許可" #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36 msgid "Grant access to network status information" -msgstr "ネットワーク・ステータス情報へのアクセスを許可" +msgstr "ネットワークステータス情報へのアクセスを許可" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13 msgid "Grant access to process status" -msgstr "プロセス・ステータスへのアクセスを許可" +msgstr "プロセスステータスへのアクセスを許可" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3 msgid "Grant access to realtime statistics" @@ -2604,11 +2592,11 @@ msgstr "システムログへのアクセスを許可" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47 msgid "Grant access to the system route status" -msgstr "システム・ルート・ステータスへのアクセスを許可" +msgstr "システムルートステータスへのアクセスを許可" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120 msgid "Grant access to wireless status display" -msgstr "ワイヤレス・ステータス表示へのアクセスを許可" +msgstr "ワイヤレスステータス表示へのアクセスを許可" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66 msgid "Group Password" @@ -2636,7 +2624,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5 msgid "Heartbeat interval (kernel: heartbeat)" -msgstr "ハートビート (kernel: heartbeat)" +msgstr "ハートビート(kernel: heartbeat)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100 msgid "" @@ -2679,7 +2667,7 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq タグ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2723,7 +2711,7 @@ msgstr "IP プロトコル" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" -msgstr "" +msgstr "IPの種類" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31 msgid "IP address" @@ -2814,7 +2802,7 @@ msgstr "IPv4 ゲートウェイ" #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10 msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-in-IPv4 (RFC2003)" +msgstr "IPv4-in-IPv4(RFC2003)" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" @@ -2842,7 +2830,7 @@ msgstr "IPv6 ファイアウォール" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203 msgid "IPv6 Neighbours" -msgstr "" +msgstr "IPv6 隣接装置" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554 msgid "IPv6 Settings" @@ -2903,7 +2891,7 @@ msgstr "IPv6 サフィックス" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "IPv6 support" -msgstr "" +msgstr "IPv6サポート" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 @@ -2918,17 +2906,17 @@ msgstr "IPv6 PD" #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10 msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" +msgstr "IPv6-in-IPv4(RFC4213)" #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9 msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-over-IPv4 (6rd)" +msgstr "IPv6-over-IPv4(6rd)" #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9 msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-over-IPv4 (6to4)" +msgstr "IPv6-over-IPv4(6to4)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1593 msgid "Identity" @@ -2940,11 +2928,11 @@ msgstr "" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "If checked, adds \"+ipv6\" to the pppd options" -msgstr "" +msgstr "チェックを付けると、pppdオプションに \"+ipv6\" が追加されます" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 msgid "If checked, encryption is disabled" -msgstr "チェックした場合、暗号化は無効になります。" +msgstr "チェックした場合、暗号化は無効になります" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 @@ -2960,9 +2948,9 @@ msgid "" "device node" msgstr "" "固定のデバイス ノード名のかわりに、設定されたパーティション ラベルを使用して" -"マウントします。" +"マウント" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2973,6 +2961,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2983,10 +2972,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "チェックされていない場合、デフォルト ルートは構成されません" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -2995,7 +2985,7 @@ msgstr "チェックされていない場合、デフォルト ルートは構 #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:100 #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:69 msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "チェックされていない場合、通知されたDNSサーバー アドレスを無視します" +msgstr "チェックされていない場合、通知されたDNSサーバーアドレスを無視します" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "" @@ -3184,7 +3174,7 @@ msgstr "インターフェース名" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:122 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:272 msgid "Interface not present or not connected yet." -msgstr "インターフェースが存在しないか、接続していません" +msgstr "インターフェースが存在しないか、接続されていません。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:308 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:335 @@ -3198,7 +3188,7 @@ msgstr "内部" #: modules/luci-base/luasrc/view/error500.htm:8 msgid "Internal Server Error" -msgstr "内部サーバー エラー" +msgstr "内部サーバーエラー" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283 msgid "Interval For Sending Learning Packets" @@ -3216,13 +3206,13 @@ msgstr "無効な Base64 キー文字列" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285 msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "無効なVLAN IDです! IDは%dから%dまでの値のみ入力可能です。" +msgstr "無効なVLAN IDです! IDは%dから%dまでの値のみ入力可能です。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294 msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "無効なVLAN IDです! ユニークなIDを入力してください。" +msgstr "無効なVLAN IDです!重複しないIDを入力してください" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "無効な引数" @@ -3232,7 +3222,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "無効なコマンド" @@ -3250,7 +3240,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 msgid "Invalid value" -msgstr "" +msgstr "不正な値" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Isolate Clients" @@ -3260,16 +3250,14 @@ msgstr "クライアント間の分離" msgid "" "It appears that you are trying to flash an image that does not fit into the " "flash memory, please verify the image file!" -msgstr "" -"更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。イメー" -"ジファイルを確認してください!" +msgstr "更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。イメージファイルを確認してください!" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:291 msgid "JavaScript required!" -msgstr "JavaScriptを有効にしてください!" +msgstr "JavaScriptを有効にしてください!" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746 msgid "Join Network" @@ -3298,7 +3286,7 @@ msgstr "カーネル バージョン" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369 msgid "Key" -msgstr "暗号キー" +msgstr "キー" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398 @@ -3333,7 +3321,7 @@ msgstr "L2TP" #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40 msgid "L2TP Server" -msgstr "L2TP サーバー" +msgstr "L2TPサーバー" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267 msgid "LACPDU Packets" @@ -3384,9 +3372,9 @@ msgstr "レイテンシー" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21 msgid "Leaf" -msgstr "" +msgstr "Leaf" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "リース時間" @@ -3423,13 +3411,13 @@ msgstr "凡例:" msgid "Limit" msgstr "割り当て数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "DNS サービスを、現在 DNS を提供しているサブネットのインターフェースに限定しま" "す。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "待ち受けをこれらのインターフェースとループバックに制限します。" @@ -3439,15 +3427,15 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line Mode" -msgstr "" +msgstr "ラインモード" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 msgid "Line State" -msgstr "" +msgstr "ライン状態" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Uptime" -msgstr "" +msgstr "ライン稼働時間" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123 msgid "Link Aggregation (Channel Bonding)" @@ -3465,9 +3453,7 @@ msgstr "リンクオン" msgid "" "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward " "requests to" -msgstr "" -"問い合わせを転送する<abbr title=\"Domain Name System\">DNS</abbr> サーバーの" -"リストを設定します" +msgstr "問い合わせを転送する <abbr title=\"Domain Name System\">DNS</abbr> サーバーのリストを設定します" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482 msgid "" @@ -3491,15 +3477,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "認証用 SSH暗号キー ファイルのリスト" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "RFC1918の応答を許可するリスト" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "IPアドレスに強制的に設定するドメインのリスト。" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" -msgstr "NX ドメインの偽の結果として返されるホストのリストです。" +msgstr "NX ドメインの偽の結果として返されるホストのリスト" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "待ち受けインターフェース" @@ -3510,10 +3500,10 @@ msgstr "待ち受けポート" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -"指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべての" -"インタフェースが対象です。" +"指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべて対" +"象" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "DNSクエリを受信するポート" @@ -3534,7 +3524,11 @@ msgstr "ディレクトリ内を読み込み中…" #: modules/luci-base/luasrc/view/view.htm:4 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 msgid "Loading view…" -msgstr "ビューを読み込み中…" +msgstr "GUIを準備しています…" + +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "ローカルIPアドレス" #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 @@ -3564,7 +3558,7 @@ msgstr "ローカル IPv4 アドレス" msgid "Local IPv6 address" msgstr "ローカル IPv6 アドレス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "ローカルサービスのみ" @@ -3587,17 +3581,16 @@ msgid "" "and are resolved from DHCP or hosts files only" msgstr "" "ローカル ドメインの定義です。このドメインに一致する名前は転送が行われず、 " -"DHCP または hosts ファイルのみにより解決されます。" +"DHCP または hosts ファイルのみにより解決されます" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244 msgid "Local domain suffix appended to DHCP names and hosts file entries" msgstr "" -"DHCP名とhostsファイルのエントリーに付される、ローカルドメイン サフィックスで" -"す。" +"DHCP名とhostsファイルのエントリーに付される、ローカルドメイン サフィックス" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239 msgid "Local server" -msgstr "ローカル サーバー" +msgstr "ローカルサーバー" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224 msgid "" @@ -3654,7 +3647,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581 msgid "Lowest leased address as offset from the network address." msgstr "" -"ネットワークアドレスをオフセットとして、最小のアドレスを設定してください" +"ネットワークアドレスをオフセットとして、最小のアドレスを設定してください。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82 @@ -3714,7 +3707,7 @@ msgstr "MHz" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353 msgid "MII" -msgstr "" +msgstr "MII" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421 msgid "MII / ETHTOOL ioctls" @@ -3747,7 +3740,7 @@ msgstr "" msgid "Manual" msgstr "手動" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "マスター" @@ -3760,15 +3753,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "許容される最大 Listen 間隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "DHCPリースの許可される最大数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "並列DNSクエリの許可される最大数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "EDNS.0 UDP パケットサイズの許可される最大数" @@ -3807,9 +3800,9 @@ msgstr "メモリー" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73 msgid "Memory usage (%)" -msgstr "メモリ使用率 (%)" +msgstr "メモリ使用率(%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "メッシュ" @@ -3821,7 +3814,7 @@ msgstr "メッシュ ID" msgid "Mesh Id" msgstr "メッシュ ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "メソッドが見つかりません" @@ -3882,7 +3875,7 @@ msgstr "" msgid "" "Modem connection in progress. Please wait. This process will timeout after 2 " "minutes." -msgstr "" +msgstr "モデム接続中です。お待ちください。このプロセスは2分後にタイムアウトします。" #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" @@ -3898,7 +3891,7 @@ msgstr "モデム デバイス" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 msgid "Modem disconnection in progress. Please wait." -msgstr "" +msgstr "モデム切断中です。お待ちください。" #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 @@ -3913,13 +3906,13 @@ msgstr "モデム初期化タイムアウト" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 msgid "Modem is disabled." -msgstr "" +msgstr "モデムは無効です。" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" -msgstr "" +msgstr "モデムマネージャー" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "モニター" @@ -3934,7 +3927,7 @@ msgstr "さらに表示…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192 msgid "Mount Point" -msgstr "マウント・ポイント" +msgstr "マウントポイント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228 @@ -3956,7 +3949,7 @@ msgid "" "filesystem" msgstr "" "マウントポイントは、記憶デバイスがファイルシステムのどこに接続されているかを" -"表示しています。" +"表示しています" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154 msgid "Mount attached devices" @@ -3964,7 +3957,7 @@ msgstr "アタッチ済みデバイスをマウント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162 msgid "Mount filesystems not specifically configured" -msgstr "明確に設定されていないファイルシステムをマウントします。" +msgstr "明確に設定されていないファイルシステムをマウント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331 msgid "Mount options" @@ -3976,7 +3969,7 @@ msgstr "マウントポイント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158 msgid "Mount swap not specifically configured" -msgstr "明確に設定されていないスワップ パーティションをマウントします。" +msgstr "明確に設定されていないスワップ パーティションをマウント" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223 msgid "Mounted file systems" @@ -4051,23 +4044,23 @@ msgstr "ネットワーク" msgid "Network Utilities" msgstr "ネットワーク ユーティリティ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "ネットワークブート用イメージ" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7 msgid "Network device activity (kernel: netdev)" -msgstr "ネットワークデバイス アクティビティ (kernel: netdev)" +msgstr "ネットワークデバイス アクティビティ(kernel: netdev)" #: modules/luci-base/htdocs/luci-static/resources/network.js:15 #: modules/luci-compat/luasrc/model/network.lua:33 msgid "Network device is not present" -msgstr "ネットワーク デバイスが存在しません" +msgstr "ネットワークデバイスが存在しない" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "ネットワークインターフェース" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" @@ -4112,7 +4105,7 @@ msgstr "RX 信号なし" msgid "No client associated" msgstr "クライアントが関連付けられていません" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "受信データ無し" @@ -4129,14 +4122,14 @@ msgstr "ファイルが見つかりませんでした" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "No host route" -msgstr "" +msgstr "ホストルートなし" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59 msgid "No information available" -msgstr "情報がありません" +msgstr "情報なし" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8 @@ -4162,7 +4155,7 @@ msgstr "ネガティブキャッシュを行なわない" #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:279 msgid "No password set!" -msgstr "パスワードが設定されていません!" +msgstr "パスワードが設定されていません!" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:130 msgid "No peers defined yet" @@ -4175,7 +4168,7 @@ msgstr "まだ公開鍵はありません。" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:90 msgid "No rules in this chain." -msgstr "チェイン内にルールがありません" +msgstr "チェイン内にルールがありません。" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384 msgid "No validation or filtering" @@ -4196,7 +4189,7 @@ msgstr "ノイズ" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" -msgstr "ノイズマージン (SNR)" +msgstr "ノイズマージン(SNR)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:270 msgid "Noise:" @@ -4206,7 +4199,7 @@ msgstr "ノイズ:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "非ワイルドカード" @@ -4238,13 +4231,13 @@ msgstr "未接続" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:280 msgid "Not present" -msgstr "存在しません" +msgstr "存在しない" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101 msgid "Not started on boot" msgstr "システム起動時に開始されません" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "サポートされていません" @@ -4260,15 +4253,13 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" -"キャッシュされる DNS エントリーの数です。(最大 10000 件。 0の場合はキャッ" -"シュしません)" +msgstr "キャッシュされる DNS エントリーの数です。(最大 10000 件。 0の場合はキャッシュしない)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199 msgid "Number of parallel threads used for compression" -msgstr "圧縮に使用される、並列スレッド数です。" +msgstr "圧縮に使用される、並列スレッド数" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309 msgid "Number of peer notifications after failover event" @@ -4276,7 +4267,7 @@ msgstr "" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69 msgid "Obfuscated Group Password" -msgstr "難読化されたグループ・パスワード" +msgstr "難読化されたグループパスワード" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61 msgid "Obfuscated Password" @@ -4314,9 +4305,9 @@ msgstr "On-Link ルート" msgid "On-State Delay" msgstr "点灯時間" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" -msgstr "1つ以上のホスト名またはMACアドレスを設定してください!" +msgstr "1つ以上のホスト名またはMACアドレスを設定してください!" #: modules/luci-base/htdocs/luci-static/resources/validation.js:466 msgid "One of the following: %s" @@ -4329,7 +4320,7 @@ msgstr "1つ以上のフィールドに無効な値が設定されています #: modules/luci-compat/luasrc/view/cbi/map.htm:32 msgid "One or more invalid/required values on tab" -msgstr "タブに1つ以上の 無効/必須 の値があります。" +msgstr "タブに1つ以上の 無効/必須 の値があります" #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19 #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24 @@ -4349,7 +4340,11 @@ msgstr "リストを開く..." #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64 msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" +msgstr "OpenConnect(CISCO AnyConnect)" + +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "OpenFortivpn" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" @@ -4390,10 +4385,9 @@ msgid "" "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " "for the interface." msgstr "" -"IPv6 プレフィクス(例: 'a:b:c:d::')を委任サーバーから受信する際、インター" -"フェースの IPv6 アドレス ('a:b:c:d::1') を形成するために使用されるサフィック" -"ス(例: '::1')を指定します。(オプション) 使用できる値: 'eui64', " -"'random', または '::1' や '::1:2' のような固定値" +"使用できる値: 'eui64', 'random', または '::1' や '::1:2' のような固定値。IPv6 プレフィクス(例: " +"'a:b:c:d::')を委任サーバーから受信する際、インターフェースの IPv6 " +"アドレス('a:b:c:d::1')を形成するために使用されるサフィックス(例: '::1')を指定します(オプション) 。" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143 msgid "" @@ -4418,16 +4412,16 @@ msgid "" "Optional. Host of peer. Names are resolved prior to bringing up the " "interface." msgstr "" -"ピアのホストです。名前はインターフェースの起動前に解決されます。(オプショ" -"ン)" +"ピアのホストです。名前はインターフェースの起動前に解決されます(オプショ" +"ン)。" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97 msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "トンネル インターフェースのMaximum Transmission Unit(オプション)" +msgstr "トンネル インターフェースのMaximum Transmission Unit(オプション)。" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:165 msgid "Optional. Port of peer." -msgstr "ピアのポート(オプション)" +msgstr "ピアのポート(オプション)。" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:169 msgid "" @@ -4435,11 +4429,11 @@ msgid "" "Recommended value if this device is behind a NAT is 25." msgstr "" "キープアライブ メッセージの送信間隔(秒)です。既定値: 0。このデバイスがNAT" -"以下に存在する場合の推奨値は25です。(オプション)" +"以下に存在する場合の推奨値は25です(オプション)。" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78 msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "発信パケットと受信パケットに使用されるUDPポート(オプション)" +msgstr "発信パケットと受信パケットに使用されるUDPポート(オプション)。" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Options" @@ -4487,7 +4481,7 @@ msgstr "出力インターフェース" msgid "Output zone" msgstr "出力ゾーン" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4496,7 +4490,7 @@ msgstr "出力ゾーン" msgid "Override MAC address" msgstr "MACアドレスを上書きする" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4539,7 +4533,7 @@ msgstr "TTL を上書き" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079 msgid "Override default interface name" -msgstr "デフォルトのインターフェース名を上書きします。" +msgstr "デフォルトのインターフェース名を上書き" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167 msgid "Override the gateway in DHCP responses" @@ -4555,7 +4549,7 @@ msgstr "" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Override the table used for internal routes" -msgstr "内部経路情報に使用されるテーブルを上書きします。" +msgstr "内部経路情報に使用されるテーブルを上書き" #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3 msgid "Overview" @@ -4571,7 +4565,7 @@ msgstr "所有者" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" -msgstr "" +msgstr "PAP/CHAP(両方)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 @@ -4601,7 +4595,7 @@ msgstr "PAP/CHAP ユーザー名" #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101 msgid "PDP Type" -msgstr "" +msgstr "PDPタイプ" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69 msgid "PID" @@ -4685,6 +4679,7 @@ msgstr "ゾーン %q の一部" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "パスワード" @@ -4714,7 +4709,7 @@ msgstr "パスワード2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:239 msgid "Paste or drag SSH key file…" -msgstr "貼付けまたは SSH 鍵ファイルをドラッグ…" +msgstr "貼付けまたはSSH鍵ファイルをドラッグ…" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510 msgid "Path to CA-Certificate" @@ -4740,7 +4735,7 @@ msgstr "クライアント証明書のパス" msgid "Path to inner Private Key" msgstr "秘密鍵のパス" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "一時停止" @@ -4782,15 +4777,15 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "再起動を実行" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:378 msgid "Perform reset" -msgstr "設定リセットを実行" +msgstr "初期化実行" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "パーミッション拒否" @@ -4863,7 +4858,7 @@ msgstr "UMTS を優先" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33 msgid "Prefix Delegated" -msgstr "委任されたプレフィクス (PD)" +msgstr "委任されたプレフィクス(PD)" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143 msgid "Preshared Key" @@ -4882,7 +4877,7 @@ msgstr "" "設定回数のLCP echo 確認失敗後、ピアノードがダウンしているものと見なします。0" "を設定した場合、失敗しても無視します" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "これらのインターフェースでの待ち受けを停止します。" @@ -4939,7 +4934,7 @@ msgstr "新しいネットワークを設定します" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004 msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "擬似アドホック (ahdemo)" +msgstr "擬似アドホック(ahdemo)" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139 msgid "Public Key" @@ -5013,7 +5008,7 @@ msgstr "受信レート / 送信レート" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343 msgid "Radius-Accounting-Port" -msgstr "Radiusアカウントサーバー ポート番号" +msgstr "Radiusアカウントサーバーポート番号" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348 msgid "Radius-Accounting-Secret" @@ -5025,7 +5020,7 @@ msgstr "Radiusアカウントサーバー" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328 msgid "Radius-Authentication-Port" -msgstr "Radius認証サーバー ポート番号" +msgstr "Radius認証サーバーポート番号" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333 msgid "Radius-Authentication-Secret" @@ -5039,19 +5034,19 @@ msgstr "Radius認証サーバー" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" "16 進数でエンコードされた、生のバイト値です。 ISP がこれを必須としない場合、" -"空欄のままにします。" +"空欄にしてください" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178 msgid "" "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>-Server" msgstr "" -"<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> サーバーの設" -"定として <code>/etc/ethers</code> を読み込みます" +"<code>/etc/ethers</code> を元に <abbr title=\"Dynamic Host Configuration " +"Protocol\">DHCP</abbr> サーバーを設定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:402 msgid "Really switch protocol?" -msgstr "本当にプロトコルを切り替えますか?" +msgstr "本当にプロトコルを切り替えますか?" #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75 msgid "Realtime Graphs" @@ -5061,25 +5056,25 @@ msgstr "リアルタイム グラフ" msgid "Reassociation Deadline" msgstr "再アソシエーション制限時間" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" -msgstr "DNSリバインディング・プロテクション" +msgstr "DNSリバインディングプロテクション" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "再起動" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "再起動中…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" -msgstr "デバイスのオペレーティングシステムを再起動します。" +msgstr "デバイスのオペレーティングシステムを再起動" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25 msgid "Receive" @@ -5087,7 +5082,7 @@ msgstr "受信" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83 msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "WireGuard インターフェースのIPアドレスです。(推奨)" +msgstr "WireGuard インターフェースのIPアドレスです(推奨)。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:348 msgid "Reconnect this interface" @@ -5097,7 +5092,7 @@ msgstr "インターフェースを再接続します" msgid "References" msgstr "参照カウンタ" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "リフレッシュ" @@ -5130,16 +5125,16 @@ msgstr "リモート IPv4アドレス" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40 msgid "Remote IPv4 address or FQDN" -msgstr "リモート IPv4アドレス または FQDN" +msgstr "リモートIPv4アドレスまたはFQDN" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 msgid "Remote IPv6 address" -msgstr "リモート IPv6 アドレス" +msgstr "リモートIPv6アドレス" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "Remote IPv6 address or FQDN" -msgstr "" +msgstr "リモートIPv6アドレスまたはFQDN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" @@ -5157,7 +5152,7 @@ msgstr "IPv6 アドレスのリクエスト" msgid "Request IPv6-prefix of length" msgstr "リクエストする IPv6 プレフィクス長" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "リクエスト タイムアウト" @@ -5179,13 +5174,13 @@ msgstr "" msgid "Required" msgstr "必須" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "DOCSIS 3.0を使用するいくつかのISPでは必要になります" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61 msgid "Required. Base64-encoded private key for this interface." -msgstr "このインターフェースに使用するBase64-エンコード 秘密鍵(必須)" +msgstr "このインターフェースに使用するBase64-エンコード 秘密鍵(必須)。" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139 msgid "Required. Base64-encoded public key of peer." @@ -5226,7 +5221,7 @@ msgstr "SAE サポートを含む hostapd が必要" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238 msgid "Requires hostapd with WEP support" -msgstr "" +msgstr "WEPをサポートしたhostapdが必要" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 msgid "" @@ -5241,8 +5236,7 @@ msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" msgstr "" -"未署名のドメイン レスポンスが、本当にその未署名のドメインから来たものであるか" -"検証します。上位サーバが DNSSEC をサポートしている必要があります。" +"未署名のドメインレスポンスが、本当にその未署名のドメインから来たものであるか検証します。上位サーバがDNSSECをサポートしている必要があります" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1253 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1254 @@ -5276,7 +5270,7 @@ msgstr "SAE サポートを含む wpa-supplicant が必要" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252 msgid "Requires wpa-supplicant with WEP support" -msgstr "" +msgstr "WEPをサポートしたwpa-supplicantが必要" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224 msgid "Reselection policy for primary slave" @@ -5296,7 +5290,7 @@ msgstr "カウンタをリセット" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376 msgid "Reset to defaults" -msgstr "標準設定にリセット" +msgstr "初期化" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162 msgid "Resolv and Hosts Files" @@ -5306,7 +5300,7 @@ msgstr "名前解決およびホストファイル設定" msgid "Resolve file" msgstr "リゾルバファイル" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "リソースが見つかりません" @@ -5353,7 +5347,7 @@ msgstr "取り消しのリクエストはステータス <code>%h</code> で失 msgid "Reverting configuration…" msgstr "設定を元に戻しています…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "TFTP経由でファイルを取り扱う際のルートディレクトリ" @@ -5432,11 +5426,11 @@ msgstr "SSH アクセス" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70 msgid "SSH server address" -msgstr "SSH サーバーアドレス" +msgstr "SSHサーバーアドレス" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74 msgid "SSH server port" -msgstr "SSH サーバーポート" +msgstr "SSHサーバーポート" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58 msgid "SSH username" @@ -5456,11 +5450,11 @@ msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" -msgstr "" +msgstr "SSTP" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 msgid "SSTP Server" -msgstr "" +msgstr "SSTPサーバー" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "SWAP" @@ -5545,8 +5539,12 @@ msgid "" "Send LCP echo requests at the given interval in seconds, only effective in " "conjunction with failure threshold" msgstr "" -"設定された秒間隔でLCP echoリクエストを送信します。失敗数しきい値を設定した場" -"合のみ、機能が有効になります。" +"設定された秒間隔でLCP echoリクエストを送信します。失敗しきい値を設定した場合" +"のみ、機能が有効になります" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "このデバイスのホスト名を送信" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" @@ -5565,13 +5563,13 @@ msgstr "サービスタイプ" msgid "Services" msgstr "サービス" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "セッションの期限切れ" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107 msgid "Set VPN as Default Route" -msgstr "VPN をデフォルト ルートとして設定します。" +msgstr "VPN をデフォルト ルートとして設定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864 msgid "" @@ -5623,7 +5621,7 @@ msgstr "Short GI" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085 msgid "Short Preamble" -msgstr "Short Preamble" +msgstr "ショートプリアンブル" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 @@ -5666,13 +5664,13 @@ msgstr "信号:" msgid "Size" msgstr "サイズ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "DNS クエリ キャッシュのサイズ" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187 msgid "Size of the ZRam device in megabytes" -msgstr "ZRam デバイスのサイズ (MB) です。" +msgstr "ZRam デバイスのサイズ(MB)" #: modules/luci-compat/luasrc/view/cbi/footer.htm:18 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57 @@ -5708,7 +5706,7 @@ msgstr "申し訳ありません。リクエストされたオブジェクトは #: modules/luci-base/luasrc/view/error500.htm:9 msgid "Sorry, the server encountered an unexpected error." -msgstr "申し訳ありません。サーバーに予期せぬエラーが発生しました。" +msgstr "申し訳ありませんが、サーバーに予期しないエラーが発生しました。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414 msgid "" @@ -5724,7 +5722,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182 msgid "Source" -msgstr "送信元" +msgstr "アクセス元" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84 msgid "Source Address" @@ -5733,7 +5731,7 @@ msgstr "アクセス元アドレス" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 msgid "Source interface" -msgstr "" +msgstr "ソースインタフェース" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "" @@ -5771,14 +5769,13 @@ msgstr "" msgid "" "Specifies the maximum amount of failed ARP requests until hosts are presumed " "to be dead" -msgstr "" -"ホストが死亡しているとみなされるまでの ARP リクエスト失敗回数を指定します。" +msgstr "ホストが死んでいるとみなされるまでの ARP リクエスト失敗回数を指定" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171 msgid "" "Specifies the maximum amount of seconds after which hosts are presumed to be " "dead" -msgstr "ホストが死亡しているとみなされるまでの秒数を指定します。" +msgstr "ホストが死んでいるとみなされるまでの秒数を指定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:886 msgid "" @@ -5887,13 +5884,13 @@ msgstr "" msgid "" "Specifies which slave is the primary device. It will always be the active " "slave while it is available" -msgstr "" +msgstr "どのスレーブをプライマリデバイスとするか指定します。利用可能である場合常にアクティブ" #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:72 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:67 msgid "Specify a TOS (Type of Service)." -msgstr "TOS (Type of Service) を指定します。" +msgstr "TOS(Type of Service)を指定します。" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72 @@ -5910,7 +5907,7 @@ msgstr "" msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64) (optional)." -msgstr "" +msgstr "デフォルト(64) 以外のカプセル化パケットのTTL (Time to Live)を指定します(オプション)。" #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67 @@ -5918,9 +5915,7 @@ msgstr "" msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64)." -msgstr "" -"デフォルト値 (64) 以外のカプセル化パケットの TTL (Time to Live) を指定しま" -"す。" +msgstr "デフォルト値(64)以外のカプセル化パケットの TTL(Time to Live)を指定します。" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 @@ -5937,7 +5932,7 @@ msgstr "" msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes) (optional)." -msgstr "" +msgstr "デフォルト(1280 バイト)以外の MTU(最大伝送単位)を指定します(オプション)。" #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 @@ -5945,9 +5940,7 @@ msgstr "" msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes)." -msgstr "" -"デフォルト値 (1280 bytes) 以外の MTU (Maximum Transmission Unit) を指定しま" -"す。" +msgstr "デフォルト値(1280 bytes)以外の MTU(Maximum Transmission Unit)を指定します。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931 msgid "Specify the secret encryption key here." @@ -6001,7 +5994,7 @@ msgstr "静的ルーティング" msgid "Static address" msgstr "静的アドレス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6051,11 +6044,11 @@ msgstr "ログの抑制" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204 msgid "Suppress logging of the routine operation of these protocols" -msgstr "これらのプロトコルの、ルーチン的操作についてのログを抑制します。" +msgstr "これらのプロトコルの、ルーチン的操作についてのログを抑制" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44 msgid "Swap free" -msgstr "" +msgstr "スワップフリー" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3 @@ -6094,7 +6087,7 @@ msgstr "シンボリックリンク" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75 msgid "Sync with NTP-Server" -msgstr "NTP サーバーと同期" +msgstr "NTPサーバーと同期" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67 msgid "Sync with browser" @@ -6132,9 +6125,9 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP設定" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" -msgstr "TFTPサーバー・ルート" +msgstr "TFTPサーバールート" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84 @@ -6178,14 +6171,14 @@ msgstr "" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40 msgid "The IPv4 address or the fully-qualified domain name of the remote end." -msgstr "リモート・エンドの IPv4 アドレスまたは完全修飾ドメイン名です。" +msgstr "リモートエンドのIPv4アドレスまたは完全修飾ドメイン名です。" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40 msgid "" "The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "リモートトンネル・エンドの IPv4 アドレスまたは完全修飾ドメイン名です。" +msgstr "リモートトンネルエンドのIPv4アドレスまたは完全修飾ドメイン名です。" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 msgid "The IPv6 address or the fully-qualified domain name of the remote end." @@ -6203,7 +6196,7 @@ msgid "" "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" msgstr "" "プロバイダに割り当てられる IPv6 プレフィクスです。通常、 <code>::</code> で終" -"わります。" +"わります" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916 msgid "" @@ -6292,13 +6285,12 @@ msgstr "インターフェース名が長すぎます" msgid "" "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " "addresses." -msgstr "" -"IPv4 プレフィクスの長さ (bit) です。残りは IPv6 アドレスで使用されます。" +msgstr "IPv4 プレフィクスの長さ(bit)です。残りは IPv6 アドレスで使用されます。" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63 msgid "The length of the IPv6 prefix in bits" -msgstr "IPv6 プレフィクスの長さ (bit) です。" +msgstr "IPv6 プレフィクスの長さ(bit)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163 msgid "The local IPv4 address" @@ -6342,7 +6334,7 @@ msgstr "" "ク用のその他のポートが存在します。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "reboot コマンドが失敗しました(コード: %d)" @@ -6398,17 +6390,15 @@ msgid "" "listed below. Press \"Continue\" to restore the backup and reboot, or " "\"Cancel\" to abort the operation." msgstr "" -"アップロードされたバックアップ アーカイブは有効であり、以下に列挙するファイル" -"を含んでいます。バックアップを復元し再起動するために \"続行\" ボタンを押下す" -"るか、操作を中止するために \"キャンセル\" します。" +"アップロードされたバックアップアーカイブは有効であり、以下のファイルを含んでいます。\"続行\"をクリックするとバックアップ復元後に再起動します。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115 msgid "The uploaded backup archive is not readable" -msgstr "アップロードされたバックアップ アーカイブは読み込めません" +msgstr "アップロードされたバックアップアーカイブは読み込めません" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244 msgid "The uploaded firmware does not allow keeping current configuration." -msgstr "アップロードされたファームウェアは、現在の設定の保持を許容しません。" +msgstr "アップロードされたファームウェアは、現在の設定を保持しません。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239 msgid "" @@ -6419,8 +6409,8 @@ msgstr "" "マットではありません。このプラットフォームに適合したイメージファイルかどう" "か、確認してください。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6460,9 +6450,8 @@ msgid "" "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain " "Name System\">DNS</abbr> servers." msgstr "" -"このファイルは、特定ドメインまたは全ドメインに対する上位 <abbr title=" -"\"Domain Name System\">DNS</abbr> サーバーを指定するための、 'server=/" -"domain/1.2.3.4' や 'server=1.2.3.4' といった行を含むことができます。" +"このファイルは、特定ドメインまたは全ドメインに対する上位 <abbr title=\"Domain Name System\">DNS</abbr> " +"サーバーを指定するための、'server=/domain/1.2.3.4' や 'server=1.2.3.4' といった行を含むことができます。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 @@ -6471,9 +6460,8 @@ msgid "" "include during sysupgrade. Modified files in /etc/config/ and certain other " "configurations are automatically preserved." msgstr "" -"以下は、sysupgrade中にバックアップ対象に含めるファイルとディレクトリのパター" -"ンリストです。/etc/config/内の設定ファイル及びその他特定の設定ファイルは自動" -"的に保持されます。" +"以下は、sysupgrade中にバックアップ対象に含めるファイルとディレクトリのパターンリストです。/etc/config/ " +"内の設定ファイル及びその他特定の設定ファイルは自動的に保持されます。" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81 msgid "" @@ -6486,8 +6474,8 @@ msgid "" "This is the content of /etc/rc.local. Insert your own commands here (in " "front of 'exit 0') to execute them at the end of the boot process." msgstr "" -"/etc/rc.localを表示しています。実行したいコマンドを'exit 0'行より上に入力して" -"ください。これらのコマンドはブートプロセスの最後に実行されます。" +"/etc/rc.local を表示しています。実行したいコマンドを'exit " +"0'行より上に入力してください。これらのコマンドはブートプロセスの最後に実行されます。" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54 msgid "" @@ -6495,7 +6483,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" "プロバイダからアサインされた、ローカルのエンドポイント アドレスです。通常、" -"<code>...:2/64</code>が終端に設定されます。" +"<code>...:2/64</code>が終端に設定されます" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173 msgid "" @@ -6503,7 +6491,7 @@ msgid "" "abbr> in the local network" msgstr "" "これはローカル ネットワーク内で唯一の <abbr title=\"Dynamic Host " -"Configuration Protocol\">DHCP</abbr> です。" +"Configuration Protocol\">DHCP</abbr> です" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -6554,13 +6542,13 @@ msgstr "時刻設定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093 msgid "Time interval for rekeying GTK" -msgstr "Group Temporal Key (GTK) 再生成間隔" +msgstr "Group Temporal Key(GTK)再生成間隔" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124 msgid "Timezone" msgstr "タイムゾーン" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "ログイン…" @@ -6570,13 +6558,12 @@ msgid "" "archive here. To reset the firmware to its initial state, click \"Perform " "reset\" (only possible with squashfs images)." msgstr "" -"設定を復元するには、作成しておいたバックアップ アーカイブをアップロードしてく" -"ださい。設定のリセットを行う場合、\"設定リセット\"をクリックしてください。(た" -"だし、squashfsをお使いの場合のみ使用可能です)" +"設定を復元するには、バックアップアーカイブをアップロードしてください。設定のリセットを行う場合、\"初期化実行\"をクリックしてください" +"(squashfsイメージを使用している場合のみ使用可能)。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907 msgid "Tone" -msgstr "" +msgstr "トーン" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35 msgid "Total Available" @@ -6597,7 +6584,7 @@ msgstr "トラフィック" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 msgid "Traffic Class" -msgstr "" +msgstr "トラフィッククラス" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 msgid "Transfer" @@ -6679,7 +6666,7 @@ msgstr "外部 IP アドレスを確定できません" msgid "Unable to determine upstream interface" msgstr "アップストリーム インターフェースを確定できません" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "ディスパッチできません" @@ -6746,9 +6733,9 @@ msgstr "不明およびサポートされていない接続メソッドです。 #: modules/luci-base/htdocs/luci-static/resources/network.js:2292 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" -msgstr "不明なエラー (%s)" +msgstr "不明なエラー(%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "不明なエラーコード" @@ -6756,7 +6743,7 @@ msgstr "不明なエラーコード" #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6 #: modules/luci-compat/luasrc/model/network.lua:965 msgid "Unmanaged" -msgstr "Unmanaged" +msgstr "アンマネージド" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217 @@ -6772,7 +6759,7 @@ msgstr "名称未設定の公開鍵" msgid "Unsaved Changes" msgstr "保存されていない変更" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "未指定エラー" @@ -6788,7 +6775,7 @@ msgstr "サポートされていないモデム" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:267 msgid "Unsupported protocol type." -msgstr "サポートされていないプロトコルタイプ" +msgstr "サポートされていないプロトコルタイプ。" #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151 msgid "Up" @@ -6831,7 +6818,7 @@ msgstr "アップロード リクエスト失敗: %s" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3767 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3821 msgid "Uploading file…" -msgstr "ファイルのアップロード…" +msgstr "ファイルのアップロード中…" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:737 msgid "" @@ -6853,16 +6840,17 @@ msgstr "<code>/etc/ethers</code> を使用する" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269 msgid "Use DHCP advertised servers" -msgstr "DHCP から通知されたサーバを使用する" +msgstr "DHCPから通知されたサーバを使用する" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167 msgid "Use DHCP gateway" msgstr "DHCPゲートウェイを使用する" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6895,7 +6883,7 @@ msgstr "トンネル インターフェースのTTLを設定" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320 msgid "Use XOR of hardware MAC addresses (layer2)" -msgstr "ハードウェア MAC アドレスの XOR を使用 (layer2)" +msgstr "ハードウェア MAC アドレスの XOR を使用(layer2)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321 msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)" @@ -6909,13 +6897,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294 msgid "Use as external overlay (/overlay)" -msgstr "外部オーバーレイとして使用する (/overlay)" +msgstr "外部オーバーレイとして使用する(/overlay)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293 msgid "Use as root filesystem (/)" -msgstr "ルート ファイルシステムとして使用する (/)" +msgstr "ルート ファイルシステムとして使用する(/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "ブロードキャスト フラグを使用する" @@ -6923,7 +6911,7 @@ msgstr "ブロードキャスト フラグを使用する" msgid "Use builtin IPv6-management" msgstr "ビルトインの IPv6 マネジメントを使用する" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6938,9 +6926,10 @@ msgstr "ビルトインの IPv6 マネジメントを使用する" msgid "Use custom DNS servers" msgstr "DNSサーバーを手動で設定" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6951,7 +6940,7 @@ msgstr "DNSサーバーを手動で設定" msgid "Use default gateway" msgstr "デフォルト ゲートウェイを使用する" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6962,6 +6951,7 @@ msgstr "デフォルト ゲートウェイを使用する" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6972,6 +6962,16 @@ msgstr "デフォルト ゲートウェイを使用する" msgid "Use gateway metric" msgstr "ゲートウェイ メトリックを使用する" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "従来のMAPを使用" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "ルーティング テーブルの使用" @@ -6984,7 +6984,7 @@ msgstr "システム証明書を使用" msgid "Use system certificates for inner-tunnel" msgstr "内部トンネルにシステム証明書を使用" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6996,17 +6996,17 @@ msgstr "" "い。<em>MAC アドレス</em> はそのホストを識別し、 <em>IPv4 アドレス</em> には" "払いだす固定のアドレスを指定します。また、<em>ホスト名</em> はそのホストに対" "して一時的なホスト名をアサインします。 <em>リース時間</em> はオプションであ" -"り、個々のホストに通常とは異なるリース時間を設定するために使用できます。" -"(例: 12h, 3d, または infinite)" +"り、個々のホストに通常とは異なるリース時間を設定するために使用できます(例: " +"12h, 3d, または infinite)。" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322 msgid "Use upper layer protocol information (layer3+4)" -msgstr "上位層のプロトコル情報を使用 (layer3+4)" +msgstr "上位層のプロトコル情報を使用(layer3+4)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324 msgid "" "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)" -msgstr "skb_flow_dissect に依存する上位層プロトコル情報を使用 (encap3+4)" +msgstr "skb_flow_dissect に依存する上位層プロトコル情報を使用(encap3+4)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194 @@ -7022,10 +7022,11 @@ msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." msgstr "" +"2つの異なる目的のために使用されています: RADIUS NAS IDと802.11r R0KH-ID。通常のWPA(2)-PSKは必要ありません。" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105 msgid "User Group" -msgstr "ユーザー・グループ" +msgstr "ユーザーグループ" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 msgid "User certificate (PEM encoded)" @@ -7037,6 +7038,7 @@ msgstr "ユーザー秘密鍵(PEM エンコード)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "ユーザー名" @@ -7066,27 +7068,30 @@ msgid "VPN Local port" msgstr "VPN ローカルポート" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" -msgstr "VPN サーバー" +msgstr "VPNサーバー" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" -msgstr "VPN サーバーポート" +msgstr "VPNサーバーポート" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" -msgstr "VPN サーバー証明書 SHA1ハッシュ" +msgstr "VPNサーバー証明書 SHA1ハッシュ" #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9 msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (CISCO 3000 (またはその他の) VPN)" +msgstr "VPNC(CISCO 3000(またはその他の)VPN)" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" -msgstr "VXLAN (RFC7348)" +msgstr "VXLAN(RFC7348)" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48 @@ -7095,16 +7100,14 @@ msgstr "VXLAN ネットワーク識別子" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10 msgid "VXLANv6 (RFC7348)" -msgstr "VXLANv6 (RFC7348)" +msgstr "VXLANv6(RFC7348)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556 msgid "" "Validate server certificate using built-in system CA bundle,<br />requires " "the \"ca-bundle\" package" -msgstr "" -"サーバー証明書をビルトインのシステム CA バンドルを用いて検証します。<br />" -"\"ca-bundle\" パッケージが必要です。" +msgstr "サーバー証明書をビルトインシステムのCAバンドルを用いて検証します。<br />\"ca-bundle\" パッケージが必要" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387 msgid "Validation for all slaves" @@ -7116,7 +7119,7 @@ msgstr "アクティブなスレーブのみの検証" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386 msgid "Validation only for backup slaves" -msgstr "バックアップ・スレーブのみの検証" +msgstr "バックアップスレーブのみの検証" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154 msgid "Value must not be empty" @@ -7126,7 +7129,7 @@ msgstr "値を入力してください" msgid "Vendor" msgstr "ベンダー" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "DHCPリクエスト送信時のベンダークラスを設定" @@ -7170,20 +7173,19 @@ msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." msgstr "" -"WPA暗号化を使用する場合、wpa_supplicant (クライアントモードの場合)又は " -"hostapd (アクセスポイント及びアドホック) がインストールされている必要がありま" -"す。" +"WPA暗号化を使用する場合、wpa_supplicant(クライアントモードの場合)又は " +"hostapd(アクセスポイント及びアドホック)がインストールされている必要があります。" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." -msgstr "デバイスを起動中です..." +msgstr "起動が終了するのを待っています..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178 msgid "Warning" msgstr "警告" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "警告: 再起動すると消えてしまう、保存されていない設定があります!" @@ -7223,7 +7225,7 @@ msgid "Wireless Adapter" msgstr "無線アダプタ" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7271,7 +7273,7 @@ msgstr "システムログをファイルに書き込む" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204 msgid "XOR policy (balance-xor, 2)" -msgstr "" +msgstr "XORポリシー(balance-xor, 2)" #: modules/luci-base/htdocs/luci-static/resources/form.js:3643 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295 @@ -7282,7 +7284,7 @@ msgstr "はい" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303 msgid "Yes (none, 0)" -msgstr "" +msgstr "はい(なし, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176 msgid "" @@ -7298,10 +7300,8 @@ msgid "" "after a device reboot.<br /><strong>Warning: If you disable essential init " "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -"ルーターが起動する際のサービスの有効化/無効化を行うことができます。また、変更" -"は再起動後に適用されます。<br /><strong>警告: \"network\" のような重要なサー" -"ビスを無効にするとルーターにアクセスできなくなりますので、注意してください。" -"</strong>" +"ルーターが起動する際のサービスの有効化/無効化を行うことができます。また、変更は再起動後に適用されます。<br /><strong>警告: " +"\"network\" のような重要なサービスを無効にするとルーターにアクセスできなくなります!</strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223 @@ -7309,20 +7309,18 @@ msgstr "" #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:294 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "JavaScriptを有効にしない場合、LuCIは正しく動作しません。" +msgstr "JavaScriptが有効でない場合、LuCIは正しく動作しません。" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115 msgid "" "You must select a primary interface which is included in selected slave " "interfaces!" -msgstr "" +msgstr "選択されているスレーブインターフェースに含まれているプライマリインターフェースを選択する必要があります!" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96 msgid "" "You must select at least one ARP IP target if ARP monitoring is selected!" -msgstr "" -"ARP モニタリングが選択されている場合は、少なくとも 1 つの ARP IP ターゲットを" -"選択する必要があります。" +msgstr "ARP モニタリングが選択されている場合は、少なくとも 1 つの ARP IP ターゲットを選択する必要があります!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192 msgid "ZRam Compression Algorithm" @@ -7340,7 +7338,7 @@ msgstr "ZRam 設定" msgid "ZRam Size" msgstr "ZRam サイズ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "全て" @@ -7433,14 +7431,14 @@ msgstr "ドライバーのデフォルト" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "e.g: --proxy 10.10.10.10" -msgstr "" +msgstr "例: --proxy 10.10.10.10" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "e.g: dump" -msgstr "" +msgstr "例: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7584,7 +7582,7 @@ msgstr "リレー モード" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982 msgid "routed" -msgstr "routed" +msgstr "ルーテッド" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102 @@ -7594,11 +7592,11 @@ msgstr "秒" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:627 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 msgid "server mode" -msgstr "サーバー モード" +msgstr "サーバーモード" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53 msgid "sstpc Log-level" -msgstr "" +msgstr "sstpc ログレベル" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649 msgid "stateful-only" @@ -7618,11 +7616,11 @@ msgstr "セキュリティ: 強" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352 msgid "tagged" -msgstr "tagged" +msgstr "タグ付き" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448 msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" +msgstr "時間の単位(TUs / 1.024ミリ秒)[1000-65535]" #: modules/luci-base/htdocs/luci-static/resources/validation.js:559 msgid "unique value" @@ -7632,9 +7630,9 @@ msgstr "ユニークな値" msgid "unknown" msgstr "不明" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" @@ -7659,7 +7657,7 @@ msgstr "設定しない -又は- 作成:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350 msgid "untagged" -msgstr "untagged" +msgstr "タグなし" #: modules/luci-base/htdocs/luci-static/resources/validation.js:246 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121 @@ -7698,7 +7696,7 @@ msgstr "有効な IPv4 または IPv6 CIDR" #: modules/luci-base/htdocs/luci-static/resources/validation.js:267 msgid "valid IPv4 prefix value (0-32)" -msgstr "有効な IPv4 プレフィクス値 (0 - 32)" +msgstr "有効な IPv4 プレフィクス値(0 - 32)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:286 msgid "valid IPv6 CIDR" @@ -7723,7 +7721,7 @@ msgstr "有効な IPv6 ネットワーク" #: modules/luci-base/htdocs/luci-static/resources/validation.js:272 msgid "valid IPv6 prefix value (0-128)" -msgstr "有効な IPv6 プレフィクス値 (0 - 128)" +msgstr "有効な IPv6 プレフィクス値(0 - 128)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:340 msgid "valid MAC address" @@ -7745,7 +7743,7 @@ msgstr "有効なアドレス:ポート" #: modules/luci-base/htdocs/luci-static/resources/validation.js:533 #: modules/luci-base/htdocs/luci-static/resources/validation.js:537 msgid "valid date (YYYY-MM-DD)" -msgstr "有効な日付 (YYYY-MM-DD)" +msgstr "有効な日付(YYYY-MM-DD)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:237 msgid "valid decimal value" @@ -7790,7 +7788,7 @@ msgstr "有効な電話番号 (0-9 や \"*\"、 \"#\"、 \"!\"、 \".\")" #: modules/luci-base/htdocs/luci-static/resources/validation.js:332 #: modules/luci-base/htdocs/luci-static/resources/validation.js:335 msgid "valid port or port range (port1-port2)" -msgstr "有効なポートまたはポート範囲(port1-port2)" +msgstr "有効なポートまたはポート範囲(port1-port2)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:324 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 @@ -7799,7 +7797,7 @@ msgstr "有効なポート番号" #: modules/luci-base/htdocs/luci-static/resources/validation.js:513 msgid "valid time (HH:MM:SS)" -msgstr "有効な時刻 (HH:MM:SS)" +msgstr "有効な時刻(HH:MM:SS)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:435 msgid "value between %d and %d characters" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index 6ec2d2939..53cdeee89 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -176,11 +176,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 쿼리 포트" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 서버 포트" @@ -196,7 +196,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-주소" @@ -221,7 +221,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-게이트웨이" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-접미사 (16진수)" @@ -234,15 +234,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 구성" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 이름" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-주소" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -250,7 +250,7 @@ msgstr "" "<abbr title=\"maximal\">최대</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> 임대 수" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -258,7 +258,7 @@ msgstr "" "<abbr title=\"maximal\">최대</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> 패킷 크기" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">최대</abbr> 동시 처리 쿼리 수" @@ -274,7 +274,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "이미 같은 이름의 디렉터리가 존재합니다." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "인증 세션이 만료되어 새 로그인이 필요합니다." @@ -411,7 +411,7 @@ msgstr "Active DHCPv6 임대 목록" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -508,6 +508,10 @@ msgstr "주소" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -598,7 +602,7 @@ msgstr "" msgid "Allow listed only" msgstr "목록의 주소만 허용" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "localhost 허용" @@ -622,7 +626,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "암호를 이용한 <em>root</em> 사용자 접근을 허용합니다" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "127.0.0.0/8 루프백 범위 내에서 업스트림 응답 허용 (예: RBL 서비스)" @@ -938,7 +942,7 @@ msgstr "" "필수 기본 파일 그리고 사용자가 패턴 정의로 백업하도록 지정한 것로 이루어져 있" "습니다." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -949,6 +953,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -959,6 +964,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1183,13 +1189,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "DHCP 요청시 전송할 Client ID" @@ -1228,7 +1234,7 @@ msgstr "데이터 수집 중..." msgid "Command" msgstr "명령어" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1295,7 +1301,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1631,7 +1637,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1694,7 +1700,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1761,6 +1767,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1781,7 +1791,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1948,7 +1958,7 @@ msgstr "NTP client 활성화" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "TFTP 서버 활성화" @@ -2089,7 +2099,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2198,7 +2208,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2270,7 +2280,7 @@ msgstr "펌웨어 파일" msgid "Firmware Version" msgstr "펌웨어 버전" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2628,7 +2638,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2908,7 +2918,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2919,6 +2929,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2929,10 +2940,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "체크하지 않을 경우, 기본 route 가 설정되지 않습니다" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3158,7 +3170,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3168,7 +3180,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3319,7 +3331,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "임대 시간" @@ -3356,12 +3368,12 @@ msgstr "" msgid "Limit" msgstr "제한" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "DNS 를 제공하기로한 subnet 인터페이스들에 대해서만 DNS 서비스를 제공합니다." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3421,15 +3433,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3442,7 +3458,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "지정한 인터페이스에만 listening 하며 미지정시 모든 인터페이스에 적용됩니다" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3465,6 +3481,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3493,7 +3513,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3668,7 +3688,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3681,15 +3701,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Active DHCP lease 건의 최대 허용 숫자" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "허용되는 최대 동시 DNS query 수" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "허용된 최대 EDNS.0 UDP 패킷 크기" @@ -3730,7 +3750,7 @@ msgstr "메모리" msgid "Memory usage (%)" msgstr "메모리 사용량 (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3742,7 +3762,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3840,7 +3860,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3970,7 +3990,7 @@ msgstr "네트워크" msgid "Network Utilities" msgstr "네트워크 유틸리티" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "네트워크 boot 이미지" @@ -4031,7 +4051,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4125,7 +4145,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4163,7 +4183,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4179,7 +4199,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4231,7 +4251,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4268,6 +4288,10 @@ msgstr "목록 열람..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "동작 주파수" @@ -4396,7 +4420,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4405,7 +4429,7 @@ msgstr "" msgid "Override MAC address" msgstr "MAC 주소 덮어쓰기" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4594,6 +4618,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "암호" @@ -4649,7 +4674,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4691,7 +4716,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "재부팅하기" @@ -4699,7 +4724,7 @@ msgstr "재부팅하기" msgid "Perform reset" msgstr "Reset 하기" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4789,7 +4814,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4960,23 +4985,23 @@ msgstr "실시간 그래프" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "재부팅" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "장치의 운영체제를 재부팅합니다" @@ -4996,7 +5021,7 @@ msgstr "이 인터페이스를 재연결합니다" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5056,7 +5081,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5078,7 +5103,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "특정 ISP 들에 요구됨. 예: Charter (DOCSIS 3 기반)" @@ -5201,7 +5226,7 @@ msgstr "Resolv 와 Hosts 파일" msgid "Resolve file" msgstr "Resolve 파일" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "리소스 찾을 수 없음" @@ -5248,7 +5273,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "설정 되돌리는 중…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "TFTP 를 통해 제공되는 파일들의 root 디렉토리" @@ -5443,6 +5468,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "서버 설정" @@ -5460,7 +5489,7 @@ msgstr "서비스 유형" msgid "Services" msgstr "서비스" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "세션 만료됨" @@ -5560,7 +5589,7 @@ msgstr "" msgid "Size" msgstr "크기" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "DNS 쿼리 캐시 크기" @@ -5885,7 +5914,7 @@ msgstr "정적 라우트" msgid "Static address" msgstr "정적 주소" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6016,7 +6045,7 @@ msgstr "" msgid "TFTP Settings" msgstr "TFTP 설정" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP 서버 root" @@ -6215,7 +6244,7 @@ msgstr "" "결되어 있고 나머지 포트들은 local 네트워크로 연결되는 구성에 자주 사용됩니다." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6280,8 +6309,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6409,7 +6438,7 @@ msgstr "" msgid "Timezone" msgstr "시간대" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6528,7 +6557,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6597,7 +6626,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6621,7 +6650,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "적용 안된 변경 사항" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6704,10 +6733,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6760,7 +6790,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Broadcast flag 사용" @@ -6768,7 +6798,7 @@ msgstr "Broadcast flag 사용" msgid "Use builtin IPv6-management" msgstr "자체 내장 IPv6-관리 기능 사용" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6783,9 +6813,10 @@ msgstr "자체 내장 IPv6-관리 기능 사용" msgid "Use custom DNS servers" msgstr "임의의 DNS 서버 사용" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6796,7 +6827,7 @@ msgstr "임의의 DNS 서버 사용" msgid "Use default gateway" msgstr "Default gateway 사용" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6807,6 +6838,7 @@ msgstr "Default gateway 사용" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6817,6 +6849,16 @@ msgstr "Default gateway 사용" msgid "Use gateway metric" msgstr "Gateway metric 사용" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Routing table 사용" @@ -6829,7 +6871,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6881,6 +6923,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "사용자이름" @@ -6910,16 +6953,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6968,7 +7014,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "DHCP 요청시 전송할 Vendor Class" @@ -7013,7 +7059,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -7022,7 +7068,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7059,7 +7105,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7172,7 +7218,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7271,8 +7317,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7464,9 +7510,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po index b28760986..f01599419 100644 --- a/modules/luci-base/po/mr/base.po +++ b/modules/luci-base/po/mr/base.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-12 11:00+0000\n" +"PO-Revision-Date: 2020-10-15 00:31+0000\n" "Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" "Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/luci/mr/>" "\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -170,11 +170,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -188,7 +188,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -211,7 +211,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -223,27 +223,27 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -392,7 +392,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -489,6 +489,10 @@ msgstr "पत्ता" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -579,7 +583,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -603,7 +607,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -914,7 +918,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -925,6 +929,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -935,6 +940,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1151,13 +1157,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1196,7 +1202,7 @@ msgstr "डेटा संकलित करीत आहे ..." msgid "Command" msgstr "कमांड" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1263,7 +1269,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1594,7 +1600,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1655,7 +1661,7 @@ msgstr "अक्षम" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1682,7 +1688,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330 msgid "Dismiss" -msgstr "" +msgstr "डिसमिस करा" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895 msgid "Distance Optimization" @@ -1719,6 +1725,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1739,7 +1749,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1902,7 +1912,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2043,7 +2053,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2152,7 +2162,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2224,7 +2234,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2581,7 +2591,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2861,7 +2871,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2872,6 +2882,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2882,10 +2893,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3111,7 +3123,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3121,7 +3133,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3272,7 +3284,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3309,11 +3321,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3373,15 +3385,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3393,7 +3409,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3416,6 +3432,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3444,7 +3464,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3619,7 +3639,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3632,15 +3652,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3681,7 +3701,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3693,7 +3713,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3791,7 +3811,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3921,7 +3941,7 @@ msgstr "" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -3982,7 +4002,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4076,7 +4096,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4114,7 +4134,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4130,7 +4150,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4182,7 +4202,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4219,6 +4239,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4347,7 +4371,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4356,7 +4380,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4543,6 +4567,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "संकेतशब्द" @@ -4598,7 +4623,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4640,7 +4665,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4648,7 +4673,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4738,7 +4763,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4907,23 +4932,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "रीबूट करा" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4943,7 +4968,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5003,7 +5028,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5025,7 +5050,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5148,7 +5173,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5195,7 +5220,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5383,6 +5408,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "सर्व्हर सेटिंग्ज" @@ -5400,7 +5429,7 @@ msgstr "" msgid "Services" msgstr "सेवा" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5500,7 +5529,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5825,7 +5854,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5951,7 +5980,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6137,7 +6166,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6202,8 +6231,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6323,7 +6352,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6439,7 +6468,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6508,7 +6537,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6532,7 +6561,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6615,10 +6644,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6671,7 +6701,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6679,7 +6709,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6694,9 +6724,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6707,7 +6738,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6718,6 +6749,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6728,6 +6760,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6740,7 +6782,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6787,6 +6829,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "वापरकर्तानाव" @@ -6816,16 +6859,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6874,7 +6920,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6919,7 +6965,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6928,7 +6974,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "चेतावणी: जतन न केलेले बदल आहेत जे रीबूट केल्यावर गमावतील!" @@ -6965,7 +7011,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7074,7 +7120,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7173,8 +7219,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7364,9 +7410,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 762242812..993e09590 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -173,11 +173,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -192,7 +192,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"perkhidmatan set mengenalpasti diperpanjangkan\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "IPv4-Alamat" @@ -215,7 +215,7 @@ msgstr "IPv6 Host-Alamat atau Rangkaian (CIDR)" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "IPv6-Pintu gerbang" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -227,27 +227,27 @@ msgstr "Konfigurasi lampu LED" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "MAC-Alamat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -396,7 +396,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -493,6 +493,10 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -583,7 +587,7 @@ msgstr "" msgid "Allow listed only" msgstr "Izinkan senarai saja" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -607,7 +611,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -918,7 +922,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -929,6 +933,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -939,6 +944,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1155,13 +1161,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Pelanggan" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1200,7 +1206,7 @@ msgstr "Mengumpul data..." msgid "Command" msgstr "Perintah" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1267,7 +1273,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1598,7 +1604,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1659,7 +1665,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1728,6 +1734,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1748,7 +1758,7 @@ msgstr "" msgid "Domain required" msgstr "Domain diperlukan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1912,7 +1922,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2053,7 +2063,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2162,7 +2172,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2234,7 +2244,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2593,7 +2603,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2873,7 +2883,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2884,6 +2894,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2894,10 +2905,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3128,7 +3140,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3138,7 +3150,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3293,7 +3305,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3330,11 +3342,11 @@ msgstr "" msgid "Limit" msgstr "Batas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3394,15 +3406,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3414,7 +3430,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3437,6 +3453,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3465,7 +3485,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3640,7 +3660,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3653,15 +3673,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3702,7 +3722,7 @@ msgstr "Memori" msgid "Memory usage (%)" msgstr "Penggunaan Memori (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3714,7 +3734,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3812,7 +3832,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -3944,7 +3964,7 @@ msgstr "Rangkaian" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4005,7 +4025,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4099,7 +4119,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4137,7 +4157,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4153,7 +4173,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4205,7 +4225,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4242,6 +4262,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4370,7 +4394,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4379,7 +4403,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4566,6 +4590,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Kata laluan" @@ -4621,7 +4646,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4663,7 +4688,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Lakukan reboot" @@ -4671,7 +4696,7 @@ msgstr "Lakukan reboot" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4761,7 +4786,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4931,23 +4956,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reboot" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Reboot sistem operasi peranti anda" @@ -4967,7 +4992,7 @@ msgstr "" msgid "References" msgstr "Rujukan" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5027,7 +5052,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5049,7 +5074,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5172,7 +5197,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5219,7 +5244,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5409,6 +5434,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5426,7 +5455,7 @@ msgstr "" msgid "Services" msgstr "Perkhidmatan" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5526,7 +5555,7 @@ msgstr "" msgid "Size" msgstr "Saiz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5851,7 +5880,7 @@ msgstr "Laluan Statik" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5977,7 +6006,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6166,7 +6195,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6238,8 +6267,8 @@ msgstr "" "Format Fail gambar yang diupload tidak disokongkan. Pastikan anda memilih " "fail format gambar yang generik untuk platform anda." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6363,7 +6392,7 @@ msgstr "" msgid "Timezone" msgstr "Zon masa" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6479,7 +6508,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6548,7 +6577,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6572,7 +6601,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Perubahan yang belum disimpan" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6655,10 +6684,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6711,7 +6741,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6719,7 +6749,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6734,9 +6764,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6747,7 +6778,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6758,6 +6789,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6768,6 +6800,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6780,7 +6822,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6827,6 +6869,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Username" @@ -6856,16 +6899,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6914,7 +6960,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6961,7 +7007,7 @@ msgstr "" "WPA-Enkripsi memerlukan pemohan wpa (untuk mod pelanggan) atau hostapd " "(untuk AP dan mod ad-hoc) yang akan dipasangkan." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6970,7 +7016,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7007,7 +7053,7 @@ msgid "Wireless Adapter" msgstr "Adapter Wayarles" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7116,7 +7162,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7215,8 +7261,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7406,9 +7452,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po index 19a7abd03..5038e89f6 100644 --- a/modules/luci-base/po/nb_NO/base.po +++ b/modules/luci-base/po/nb_NO/base.po @@ -170,11 +170,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> spørre port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> server port" @@ -190,7 +190,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Adresse" @@ -215,7 +215,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -227,15 +227,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurasjon" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Navn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -243,7 +243,7 @@ msgstr "" "<abbr title=\"maximal\">Maksimalt antall</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>-tildelninger" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -251,7 +251,7 @@ msgstr "" "<abbr title=\"Maksimal\">Maks.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> pakke størrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"Maksimal\">Maks.</abbr> samtidige spørringer" @@ -265,7 +265,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -407,7 +407,7 @@ msgstr "Aktive DHCPv6 Leier" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -504,6 +504,10 @@ msgstr "Adresse" msgid "Address to access local relay bridge" msgstr "Adresse for tilgang til lokal relébro" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -594,7 +598,7 @@ msgstr "" msgid "Allow listed only" msgstr "Tillat kun oppførte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Tillat lokalvert" @@ -618,7 +622,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Tillat bruker <em>root</em> å logge inn med passord" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "Tillat oppstrømssvar i 127.0.0.0/8-nettet, f.eks. for RBL-tjenester" @@ -932,7 +936,7 @@ msgstr "" "konfigurasjonsfiler som er merket av opkg, essensielle enhets filer og andre " "filer valgt av bruker." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -943,6 +947,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -953,6 +958,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1177,13 +1183,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Klient" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Klient ID som sendes ved DHCP spørring" @@ -1224,7 +1230,7 @@ msgstr "Samler inn data…" msgid "Command" msgstr "Kommando" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1291,7 +1297,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1626,7 +1632,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1689,7 +1695,7 @@ msgstr "Deaktivert" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Forkast oppstrøms RFC1918 svar" @@ -1759,6 +1765,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Ikke videresend reverserte oppslag for lokale nettverk" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1779,7 +1789,7 @@ msgstr "" msgid "Domain required" msgstr "Domene kreves" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Domene hviteliste" @@ -1949,7 +1959,7 @@ msgstr "Aktiver NTP klient" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Aktiver TFTP server" @@ -2090,7 +2100,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2200,7 +2210,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Filnavn fra boot image annonsert til klienter" @@ -2272,7 +2282,7 @@ msgstr "" msgid "Firmware Version" msgstr "Firmware Versjon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Fast kilde port for utgående DNS-spørringer" @@ -2633,7 +2643,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2913,7 +2923,7 @@ msgid "" "device node" msgstr "Hvis oppgitt vil denne enheten bli montert utfra dens Volumnavn" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2924,6 +2934,7 @@ msgstr "Hvis oppgitt vil denne enheten bli montert utfra dens Volumnavn" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2934,10 +2945,11 @@ msgstr "Hvis oppgitt vil denne enheten bli montert utfra dens Volumnavn" msgid "If unchecked, no default route is configured" msgstr "Dersom ikke avmerket blir ingen standard rute konfigurert" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3167,7 +3179,7 @@ msgstr "Ugyldig VLAN ID gitt! Bare IDer mellom %d og %d er tillatt." msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3177,7 +3189,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3331,7 +3343,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3368,11 +3380,11 @@ msgstr "Forklaring:" msgid "Limit" msgstr "Grense" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3434,15 +3446,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Liste over domener hvor en tillater RFC1918 svar" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Liste over verter som returneren falske NX domene resultater" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3455,7 +3471,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Lytt kun på det angitte grensesnitt, om ingen er angitt lyttes det på alle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Lytte-port for innkommende DNS-spørring" @@ -3478,6 +3494,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3506,7 +3526,7 @@ msgstr "Lokal IPv4 adresse" msgid "Local IPv6 address" msgstr "Lokal IPv6 adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3686,7 +3706,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3699,15 +3719,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Maksimalt antall aktive DHCP leieavtaler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Maksimalt antall samtidige DNS spørringer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Maksimal tillatt størrelse på EDNS.0 UDP-pakker" @@ -3748,7 +3768,7 @@ msgstr "Minne" msgid "Memory usage (%)" msgstr "Minne forbruk (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3760,7 +3780,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3858,7 +3878,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -3990,7 +4010,7 @@ msgstr "Nettverk" msgid "Network Utilities" msgstr "Nettverks Verktøy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Nettverks boot image" @@ -4051,7 +4071,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4145,7 +4165,7 @@ msgstr "Støy:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4183,7 +4203,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4199,7 +4219,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4251,7 +4271,7 @@ msgstr "" msgid "On-State Delay" msgstr "Forsinkelse ved tilstand -På-" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Enten Vertsnavn eller Mac-adresse må oppgis!" @@ -4288,6 +4308,10 @@ msgstr "Åpne liste..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4416,7 +4440,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4425,7 +4449,7 @@ msgstr "" msgid "Override MAC address" msgstr "Overstyr MAC adresse" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4614,6 +4638,7 @@ msgstr "En del av sone %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Passord" @@ -4669,7 +4694,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4711,7 +4736,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Omstart nå" @@ -4719,7 +4744,7 @@ msgstr "Omstart nå" msgid "Perform reset" msgstr "Foreta nullstilling" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4811,7 +4836,7 @@ msgstr "" "Annta at peer er uten forbindelse om angitt LCP ekko feiler, bruk verdi 0 " "for å overse feil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4982,23 +5007,23 @@ msgstr "Grafer i sanntid" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Binde beskyttelse" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Omstart" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Omstarter operativsystemet på enheten" @@ -5018,7 +5043,7 @@ msgstr "Koble til igjen" msgid "References" msgstr "Referanser" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5078,7 +5103,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5100,7 +5125,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Er nødvendig for noen nettleverandører, f.eks Charter med DOCSIS 3" @@ -5223,7 +5248,7 @@ msgstr "Oppslag og Vertsfiler" msgid "Resolve file" msgstr "<abbr title=\"Resolvefile\">Oppslagsfil</abbr>" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5270,7 +5295,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Rot katalog for filer gitt fra TFTP" @@ -5462,6 +5487,10 @@ msgstr "" "Send LCP ekko forespørsler etter angitt intervall i sekunder, dette er kun " "gjeldene dersom feilterskelen er nådd" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Server Innstillinger" @@ -5479,7 +5508,7 @@ msgstr "Tjeneste type" msgid "Services" msgstr "Tjenester" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5579,7 +5608,7 @@ msgstr "Signal:" msgid "Size" msgstr "Størrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5908,7 +5937,7 @@ msgstr "Statiske Ruter" msgid "Static address" msgstr "Statisk adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6037,7 +6066,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP Innstillinger" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP server roten" @@ -6234,7 +6263,7 @@ msgstr "" "til lokalt nettverk." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6307,8 +6336,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6440,7 +6469,7 @@ msgstr "" msgid "Timezone" msgstr "Tidssone" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6560,7 +6589,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Kan ikke sende" @@ -6629,7 +6658,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6653,7 +6682,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Ulagrede Endringer" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6736,10 +6765,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "Bruk DHCP gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6792,7 +6822,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Bruk kringkasting flagg" @@ -6800,7 +6830,7 @@ msgstr "Bruk kringkasting flagg" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6815,9 +6845,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "Bruk egendefinerte DNS servere" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6828,7 +6859,7 @@ msgstr "Bruk egendefinerte DNS servere" msgid "Use default gateway" msgstr "Bruk standard gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6839,6 +6870,7 @@ msgstr "Bruk standard gateway" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6849,6 +6881,16 @@ msgstr "Bruk standard gateway" msgid "Use gateway metric" msgstr "Bruk gateway metrikk" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Bruk rutingtabellen" @@ -6861,7 +6903,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 #, fuzzy msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" @@ -6915,6 +6957,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Brukernavn" @@ -6944,16 +6987,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN server" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -7002,7 +7048,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Leverandør klasse som sendes ved DHCP spørring" @@ -7049,7 +7095,7 @@ msgstr "" "WPA-Kryptering krever at wpa_supplicant (for klient-modus) eller hostapd " "(for AP og ad-hoc-modus) er installert." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -7058,7 +7104,7 @@ msgstr "" msgid "Warning" msgstr "Advarsel" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7095,7 +7141,7 @@ msgid "Wireless Adapter" msgstr "Trådløs Tilslutning" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7210,7 +7256,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "enhver" @@ -7309,8 +7355,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7502,9 +7548,9 @@ msgstr "" msgid "unknown" msgstr "ukjent" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po new file mode 100644 index 000000000..1c8bad9e8 --- /dev/null +++ b/modules/luci-base/po/nl/base.po @@ -0,0 +1,7643 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-09-27 12:38+0000\n" +"Last-Translator: G. Allen Morris III <gamthree@gmail.com>\n" +"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/luci/nl/>\n" +"Language: nl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3-dev\n" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 +msgid "%.1f dB" +msgstr "%.1f dB" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:114 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:261 +msgid "%d Bit" +msgstr "%d Bit" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3689 +msgid "%d invalid field(s)" +msgstr "%d ongeldige velden" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35 +msgid "%s is untagged in multiple VLANs!" +msgstr "%s mag niet zonder tag in meerdere VLANs voorkomen!" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:270 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325 +msgid "(%d minute window, %d second interval)" +msgstr "(bereik van %d minuten, %d seconden interval)" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91 +msgid "(empty)" +msgstr "(leeg)" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351 +#: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23 +#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58 +msgid "(no interfaces attached)" +msgstr "(geen gekoppelde interfaces)" + +#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48 +msgid "-- Additional Field --" +msgstr "-- Extra Veld --" + +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3372 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3704 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:767 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:1005 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:1974 +#: modules/luci-compat/luasrc/view/cbi/header.htm:8 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 +msgid "-- Please choose --" +msgstr "-- Maak een keuze --" + +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:1006 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:1975 +#: modules/luci-compat/luasrc/view/cbi/header.htm:9 +msgid "-- custom --" +msgstr "-- aangepast --" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379 +msgid "-- match by label --" +msgstr "-- op label selecteren --" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362 +msgid "-- match by uuid --" +msgstr "-- op uuid selecteren --" + +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27 +#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44 +#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23 +msgid "-- please select --" +msgstr "-- maak een keuze --" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 +msgctxt "sstp log level value" +msgid "0" +msgstr "0" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" +"0 = geen signaaldrempelwaarde gebruiken, 1 = standaardwaarde van driver niet " +"wijzigen" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 +msgctxt "sstp log level value" +msgid "1" +msgstr "1" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 +msgid "1 Minute Load:" +msgstr "Systeembelasting (1 minuut):" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:251 +msgid "15 Minute Load:" +msgstr "Systeembelasting (15 minuten):" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 +msgctxt "sstp log level value" +msgid "2" +msgstr "2" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57 +msgctxt "sstp log level value" +msgid "3" +msgstr "3" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58 +msgctxt "sstp log level value" +msgid "4" +msgstr "4" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 +msgid "4-character hexadecimal ID" +msgstr "4-teken hexadecimaal ID" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11 +msgid "464XLAT (CLAT)" +msgstr "464XLAT (CLAT)" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241 +msgid "5 Minute Load:" +msgstr "Systeembelasting (5 minuten):" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471 +msgid "6-octet identifier as a hex string - no colons" +msgstr "6-octet ID als hex tekenreeks - zonder dubbele punten" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431 +msgid "802.11r Fast Transition" +msgstr "802.11r Snelle overgang" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 +msgid "802.11w Association SA Query maximum timeout" +msgstr "802.11w Association SA Query maximale time-out" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626 +msgid "802.11w Association SA Query retry timeout" +msgstr "802.11w Associatie SA Vraag herproberen time-out" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 +msgid "802.11w Management Frame Protection" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 +msgid "802.11w maximum timeout" +msgstr "802.11w maximale time-out" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626 +msgid "802.11w retry timeout" +msgstr "802.11w herproberen time-out" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956 +msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" +msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" +msgstr "<abbr title=\"Domain Name System\">DNS</abbr> verzoekpoort" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 +msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" +msgstr "<abbr title=\"Domain Name System\">DNS</abbr> serverpoort" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 +msgid "" +"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " +"order of the resolvfile" +msgstr "" +"<abbr title=\"Domain Name System\">DNS</abbr> servers worden geraadpleegd in " +"volgorde van het resolvbestand" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945 +msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 +msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" +msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Adres" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 +msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway" +msgstr "<abbr title=\"Internet Protocol Versie 4\">IPv4</abbr>-Gateway" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36 +msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask" +msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netwerkmasker" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31 +msgid "" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network " +"(CIDR)" +msgstr "" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Adres of Netwerk " +"(CIDR)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 +msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" +msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 +msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" +msgstr "" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Achtervoegsel (hex)" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58 +msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" +msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuratie" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69 +msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" +msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Naam" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 +msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" +msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adres" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 +msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" +msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 +msgid "" +"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " +"Protocol\">DHCP</abbr> leases" +msgstr "" +"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " +"Protocol\">DHCP</abbr> toewijzingen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +msgid "" +"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " +"Domain Name System\">EDNS0</abbr> packet size" +msgstr "" +"<abbr title=\"maximale\">Max.</abbr> <abbr title=\"Extension Mechanisms for " +"Domain Name System\">EDNS0</abbr> packetgrootte" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 +msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" +msgstr "<abbr title=\"maximaal aantal\">Max.</abbr> gelijktijdige verzoeken" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29 +msgid "" +"<br/>Note: you need to manually restart the cron service if the crontab file " +"was empty before editing." +msgstr "" +"<br/>Noot: de cron service moet handmatig worden herstart indien het " +"crontabbestand voor het bewerken leeg was." + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2720 +msgid "A directory with the same name already exists." +msgstr "Er bestaat al een map met deze naam." + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 +msgid "A new login is required since the authentication session expired." +msgstr "Er moet opnieuw worden ingelogd omdat de sessie is verlopen." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:909 +msgid "A43C + J43 + A43" +msgstr "A43C + J43 + A43" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910 +msgid "A43C + J43 + A43 + V43" +msgstr "A43C + J43 + A43 + V43" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922 +msgid "ADSL" +msgstr "ADSL" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898 +msgid "ANSI T1.413" +msgstr "ANSI T1.413" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 +msgid "APN" +msgstr "APN" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352 +msgid "ARP" +msgstr "ARP" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365 +msgid "ARP IP Targets" +msgstr "ARP IP-Doelen" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357 +msgid "ARP Interval" +msgstr "ARP Interval" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381 +msgid "ARP Validation" +msgstr "ARP Validatie" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373 +msgid "ARP mode to consider a slave as being up" +msgstr "ARP modus om een slaaf te beschouwen als actief" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77 +msgid "ARP monitoring is not supported for the selected policy!" +msgstr "" +"ARP monitoring wordt niet ondersteund voor de geselecteerde instelling!" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 +msgid "ARP retry threshold" +msgstr "Drempelwaarde voor hernieuwde ARP-pogingen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917 +msgid "ATM (Asynchronous Transfer Mode)" +msgstr "ATM (Asynchronous Transfer Mode)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938 +msgid "ATM Bridges" +msgstr "ATM Bruggen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66 +msgid "ATM Virtual Channel Identifier (VCI)" +msgstr "ATM Virtual Circuit Identifier (VCI)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:971 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70 +msgid "ATM Virtual Path Identifier (VPI)" +msgstr "ATM Virtual Path Identifier (VPI)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938 +msgid "" +"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " +"Linux network interfaces which can be used in conjunction with DHCP or PPP " +"to dial into the provider network." +msgstr "" +"ATM bruggen maken in AAL5 omhulde ethernetverbindingen beschikbaar als " +"virtuele Linux netwerkinterfaces welke met DHCP of PPP gebruikt kunnen " +"worden om in het netwerk van de provider in te bellen." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62 +msgid "ATM device number" +msgstr "ATM apparaatnummer" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +msgid "ATU-C System Vendor ID" +msgstr "ATU-C Systeemleverancier-ID" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:543 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:547 +msgid "Absent Interface" +msgstr "Geen interface" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47 +msgid "Access Concentrator" +msgstr "Toegang Concentrator" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:927 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032 +msgid "Access Point" +msgstr "Toegangspunt" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:360 +msgid "Actions" +msgstr "Acties" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200 +msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" +msgstr "Actieve <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206 +msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" +msgstr "Actieve <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81 +msgid "Active Connections" +msgstr "Actieve verbindingen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:92 +msgid "Active DHCP Leases" +msgstr "Actieve DHCP toewijzingen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:94 +msgid "Active DHCPv6 Leases" +msgstr "Actieve DHCPv6 toewijzingen" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203 +msgid "Active-Backup policy (active-backup, 1)" +msgstr "Actieve-Backup instelling (active-backup, 1)" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 +msgid "Ad-Hoc" +msgstr "Ad-Hocmodus" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208 +msgid "Adaptive load balancing (balance-alb, 6)" +msgstr "Adaptieve lastbalancering (balance-alb, 6)" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207 +msgid "Adaptive transmit load balancing (balance-tlb, 5)" +msgstr "Adaptieve verzendlastbalancering (balance-tlb, 5)" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2167 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2170 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2184 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2185 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3170 +#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 +#: modules/luci-compat/luasrc/view/cbi/tsection.htm:39 +#: modules/luci-compat/luasrc/view/cbi/tsection.htm:47 +#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:827 +msgid "Add" +msgstr "Toevoegen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942 +msgid "Add ATM Bridge" +msgstr "ATM brug toevoegen" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92 +msgid "Add IPv4 address…" +msgstr "IPv4-adres toevoegen…" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:207 +msgid "Add IPv6 address…" +msgstr "IPv6-adres toevoegen…" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65 +msgid "Add LED action" +msgstr "LED-actie toevoegen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219 +msgid "Add VLAN" +msgstr "VLAN toevoegen" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15 +msgid "Add instance" +msgstr "Instantie toevoegen" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:152 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:247 +msgid "Add key" +msgstr "Sleutel toevoegen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248 +msgid "Add local domain suffix to names served from hosts files" +msgstr "" +"Lokaal-domeinachtervoegsel toevoegen aan uit hostsfiles geserveerde namen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757 +msgid "Add new interface..." +msgstr "Nieuwe interface toevoegen..." + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125 +msgid "Add peer" +msgstr "Peer toevoegen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200 +msgid "Additional Hosts files" +msgstr "Aanvullende Hostsbestanden" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255 +msgid "Additional servers file" +msgstr "Aanvullende-serversbestand" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43 +msgid "Address" +msgstr "Adres" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151 +msgid "Address to access local relay bridge" +msgstr "Adres van lokale relay-brug" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Adressen" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 +msgid "Administration" +msgstr "Administratie" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:553 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:866 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 +msgid "Advanced Settings" +msgstr "Geavanceerde instellingen" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +msgid "Aggregate Transmit Power (ACTATP)" +msgstr "Geaggregeerd verzendvermogen (ACTATP)" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258 +msgid "Aggregation Selection Logic" +msgstr "Aggregatie Selectie Logica" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 +msgid "Aggregator: All slaves down or has no slaves (stable, 0)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263 +msgid "" +"Aggregator: Chosen by the largest number of ports + slave added/removed or " +"state changes (count, 2)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262 +msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171 +msgid "Alert" +msgstr "Waarschuwing" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2871 +#: modules/luci-compat/luasrc/model/network.lua:1417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:61 +msgid "Alias Interface" +msgstr "Alias Interface" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:145 +msgid "Alias of \"%s\"" +msgstr "Alias van \"%s\"" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 +msgid "All Servers" +msgstr "Alle servers" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209 +msgid "" +"Allocate IP addresses sequentially, starting from the lowest available " +"address" +msgstr "" +"IP-adressen op volgorde toewijzen, beginnend bij het laagst beschikbare adres" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208 +msgid "Allocate IP sequentially" +msgstr "IP-adressen sequentieel toewijzen" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25 +msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" +msgstr "" +"<abbr title=\"Secure Shell\">SSH</abbr> wachtwoordauthenticatie toestaan" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112 +msgid "Allow AP mode to disconnect STAs based on low ACK condition" +msgstr "AP toestaan verbindingen met lage signaalkwaliteit te verbreken" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016 +msgid "Allow all except listed" +msgstr "Alles behalve vermelde toestaan" + +#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3 +msgid "Allow full UCI access for legacy applications" +msgstr "Volledige UCI toegang voor verouderde applicaties toestaan" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892 +msgid "Allow legacy 802.11b rates" +msgstr "Verouderde 802.11b-snelheden toestaan" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015 +msgid "Allow listed only" +msgstr "Alleen vermelde toestaan" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +msgid "Allow localhost" +msgstr "Localhost toestaan" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157 +msgid "Allow rebooting the device" +msgstr "Herstarten van apparaat toestaan" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36 +msgid "Allow remote hosts to connect to local SSH forwarded ports" +msgstr "" +"Hosts op afstand toestaan te verbinden met locale middels SSH doorverbonden " +"poorten" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 +msgid "Allow root logins with password" +msgstr "Root-logins met wachtwoord toestaan" + +#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3 +msgid "Allow system feature probing" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 +msgid "Allow the <em>root</em> user to login with password" +msgstr "<em>root</em>gebruiker toestaan zonder wachtwoord in te loggen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +msgid "" +"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" +msgstr "" +"DNS-antwoorden in het 127.0.0.0/8 bereik toestaan, bijvoorbeeld voor " +"blokkeerlijstdiensten" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148 +msgid "Allowed IPs" +msgstr "Toegestane IP-adressen" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 +msgid "Always announce default router" +msgstr "Kondig altijd de standaardrouter aan" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5 +msgid "Always off (kernel: none)" +msgstr "Altijd uit (kernel: geen)" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6 +msgid "Always on (kernel: default-on)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907 +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-base/htdocs/luci-static/resources/form.js:603 +msgid "An error occurred while saving the form:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +msgid "Annex" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891 +msgid "Annex A + L + M (all)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899 +msgid "Annex A G.992.1" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900 +msgid "Annex A G.992.2" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901 +msgid "Annex A G.992.3" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902 +msgid "Annex A G.992.5" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:892 +msgid "Annex B (all)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:895 +msgid "Annex B G.992.1" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:896 +msgid "Annex B G.992.3" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897 +msgid "Annex B G.992.5" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:893 +msgid "Annex J (all)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903 +msgid "Annex L G.992.3 POTS 1" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894 +msgid "Annex M (all)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904 +msgid "Annex M G.992.3" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905 +msgid "Annex M G.992.5" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 +msgid "Announce as default router even if no public prefix is available." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:659 +msgid "Announced DNS domains" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:658 +msgid "Announced DNS servers" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596 +msgid "Anonymous Identity" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162 +msgid "Anonymous Mount" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158 +msgid "Anonymous Swap" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60 +msgid "Any zone" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119 +msgid "Apply backup?" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276 +msgid "Apply request failed with status <code>%h</code>" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4142 +msgid "Apply unchecked" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4215 +msgid "Applying configuration changes… %ds" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56 +msgid "Architecture" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27 +msgid "" +"Assign a part of given length of every public IPv6-prefix to this interface" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31 +msgid "" +"Assign prefix parts using this hexadecimal subprefix ID for this interface." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245 +msgid "Associated Stations" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46 +msgid "Associations" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154 +msgid "Attempt to enable configured mount points for attached devices" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:104 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64 +msgid "Auth Group" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1535 +msgid "Authentication" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 +msgid "Authentication Type" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172 +msgid "Authoritative" +msgstr "" + +#: modules/luci-base/luasrc/view/sysauth.htm:17 +msgid "Authorization Required" +msgstr "" + +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:241 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:244 +msgid "Auto Refresh" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:50 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:81 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:55 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:68 +msgid "Automatic" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7 +msgid "Automatic Homenet (HNCP)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174 +msgid "Automatically check filesystem for errors before mounting" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170 +msgid "Automatically mount filesystems on hotplug" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166 +msgid "Automatically mount swap on hotplug" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170 +msgid "Automount Filesystem" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166 +msgid "Automount Swap" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193 +msgid "Available" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:268 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:278 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:329 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:339 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:349 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:234 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:244 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:254 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:291 +msgid "Average:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911 +msgid "B43 + B43C" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:912 +msgid "B43 + B43C + V43" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48 +msgid "BR / DMR / AFTR" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:44 +msgid "BSSID" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/footer.htm:14 +#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48 +msgid "Back to Overview" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 +msgid "Back to configuration" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:363 +msgid "Backup" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114 +msgid "Backup / Flash Firmware" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:323 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 +msgid "Backup file list" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:451 +msgid "Band" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910 +msgid "Beacon Interval" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:324 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 +msgid "" +"Below is the determined list of files to backup. It consists of changed " +"configuration files marked by opkg, essential base files and the user " +"defined backup patterns." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:52 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 +msgid "Bind interface" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:52 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 +msgid "Bind the tunnel to this interface (optional)." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:63 +msgid "Bitrate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +msgid "Bogus NX Domain Override" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199 +msgid "Bonding Policy" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2877 +#: modules/luci-compat/luasrc/model/network.lua:1421 +msgid "Bridge" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:730 +msgid "Bridge interfaces" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:978 +msgid "Bridge unit number" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:412 +msgid "Bring up on boot" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205 +msgid "Broadcast policy (broadcast, 3)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2810 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3799 +msgid "Browse…" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37 +msgid "Buffered" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138 +msgid "CA certificate; if empty it will be saved after the first connection." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7 +msgid "CLAT configuration failed" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 +msgid "CPU usage (%)" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41 +msgid "Cached" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 +#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 +msgid "Call failed" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808 +#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 +#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:187 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:272 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:184 +msgid "Cancel" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17 +msgid "Category" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519 +msgid "Certificate constraint (Domain)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516 +msgid "Certificate constraint (SAN)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513 +msgid "Certificate constraint (Subject)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522 +msgid "Certificate constraint (Wildcard)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571 +msgid "" +"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See " +"`logread -f` during handshake for actual values" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577 +msgid "" +"Certificate constraint(s) against DNS SAN values (if available)<br />or " +"Subject CN (exact match)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580 +msgid "" +"Certificate constraint(s) against DNS SAN values (if available)<br />or " +"Subject CN (suffix match)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574 +msgid "" +"Certificate constraint(s) via Subject Alternate Name values<br />(supported " +"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:200 +msgid "Chain" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028 +msgid "Changes" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4311 +msgid "Changes have been reverted." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46 +msgid "Changes the administrator password for accessing the device" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1663 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:62 +msgid "Channel" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174 +msgid "Check filesystems before mount" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914 +msgid "Check this option to delete the existing networks from this radio." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110 +msgid "Checking archive…" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195 +msgid "Checking image…" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:399 +msgid "Choose mtdblock" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942 +msgid "" +"Choose the firewall zone you want to assign to this interface. Select " +"<em>unspecified</em> to remove the interface from the associated zone or " +"fill out the <em>custom</em> field to define a new zone and attach the " +"interface to it." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959 +msgid "" +"Choose the network(s) you want to attach to this wireless interface or fill " +"out the <em>custom</em> field to define a new network." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 +msgid "Cipher" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91 +msgid "Cisco UDP encapsulation" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:363 +msgid "" +"Click \"Generate archive\" to download a tar archive of the current " +"configuration files." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396 +msgid "" +"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " +"FEATURE IS FOR PROFESSIONALS! )" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 +msgid "Client" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 +msgid "Client ID to send when requesting DHCP" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:148 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:154 +msgid "Close" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:157 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:141 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:128 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:106 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:115 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:138 +msgid "" +"Close inactive connection after the given amount of seconds, use 0 to " +"persist connection" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 +msgid "Close list..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2076 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:317 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:320 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204 +msgid "Collecting data..." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71 +msgid "Command" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 +msgid "Command OK" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33 +msgid "Command failed" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72 +msgid "Comment" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634 +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 "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:96 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 +msgid "Compute outgoing checksum (optional)." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426 +msgid "Configuration" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4190 +msgid "Configuration changes applied." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4128 +msgid "Configuration changes have been rolled back!" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21 +msgid "Configuration failed" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:175 +msgid "Confirm disconnect" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55 +msgid "Confirmation" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51 +msgid "Connected" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:9 +#: modules/luci-compat/luasrc/model/network.lua:27 +msgid "Connection attempt failed" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +msgid "Connection lost" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:117 +msgid "Connections" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377 +msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376 +msgid "Consider the slave up when any ARP IP target is reachable (any, 0)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55 +msgid "Contents have been saved." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:742 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:264 +msgid "Continue" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4164 +msgid "" +"Could not regain access to the device after applying the configuration " +"changes. You might need to reconnect if you modified network related " +"settings such as the IP address or wireless security credentials." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189 +msgid "Country" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889 +msgid "Country Code" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942 +msgid "Create / Assign firewall-zone" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798 +msgid "Create interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:730 +msgid "Creates a bridge over specified interface(s)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:170 +msgid "Critical" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174 +msgid "Cron Log Level" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:533 +msgid "Current power" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570 +#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51 +#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53 +#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82 +#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83 +msgid "Custom Interface" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:36 +msgid "Custom delegated IPv6-prefix" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382 +msgid "" +"Custom files (certificates, scripts) may remain on the system. To prevent " +"this, perform a factory-reset first." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6 +msgid "Custom flash interval (kernel: timer)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 +msgid "" +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353 +msgid "DAE-Client" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358 +msgid "DAE-Port" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1363 +msgid "DAE-Secret" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:327 +msgid "DHCP Server" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155 +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50 +msgid "DHCP and DNS" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:1982 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16 +#: modules/luci-compat/luasrc/model/network.lua:969 +msgid "DHCP client" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619 +msgid "DHCP-Options" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7 +msgid "DHCPv6 client" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646 +msgid "DHCPv6-Mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631 +msgid "DHCPv6-Service" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49 +msgid "DNS" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +msgid "DNS forwardings" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:37 +msgid "DNS-Label / FQDN" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228 +msgid "DNSSEC" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232 +msgid "DNSSEC check unsigned" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99 +msgid "DPD Idle Timeout" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41 +msgid "DS-Lite AFTR address" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:887 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 +msgid "DSL" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +msgid "DSL Status" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920 +msgid "DSL line mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088 +msgid "DTIM Interval" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:58 +msgid "DUID" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +msgid "Data Rate" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:165 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176 +msgid "Debug" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358 +msgid "Default %d" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107 +msgid "Default Route" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +msgid "Default gateway" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646 +msgid "Default is stateless + stateful" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11 +msgid "Default state" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619 +msgid "" +"Define additional DHCP options, for example " +"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS " +"servers to clients." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2237 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2666 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3154 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2872 +#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 +#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 +msgid "Delete" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:180 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:186 +msgid "Delete key" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2769 +msgid "Delete request failed: %s" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:847 +msgid "Delete this network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088 +msgid "Delivery Traffic Indication Message Interval" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340 +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134 +msgid "Description" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2868 +msgid "Deselect" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:220 +msgid "Design" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 +msgid "Destination" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48 +msgid "Destination port" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165 +msgid "Destination zone" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392 +msgid "Device" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861 +msgid "Device Configuration" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132 +msgid "Device is not active" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:224 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:599 +msgid "Device is restarting…" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4163 +msgid "Device unreachable!" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 +msgid "Device unreachable! Still waiting for device..." +msgstr "" + +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88 +msgid "Diagnostics" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:93 +msgid "Dial number" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 +msgid "Directory" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879 +msgid "Disable" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579 +msgid "" +"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " +"this interface." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373 +msgid "Disable DNS lookups" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 +msgid "Disable Encryption" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1098 +msgid "Disable Inactivity Polling" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837 +msgid "Disable this network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:107 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:99 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:95 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69 +msgid "Disabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112 +msgid "Disassociate On Low Acknowledgement" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "Discard upstream RFC1918 responses" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:665 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231 +msgid "Disconnect" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22 +msgid "Disconnection attempt failed" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:606 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2861 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3309 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4045 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4134 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330 +msgid "Dismiss" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895 +msgid "Distance Optimization" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895 +msgid "Distance to farthest network member in meters." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155 +msgid "" +"Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-" +"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> " +"firewalls" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252 +msgid "Do not cache negative replies, e.g. for not existing domains" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:79 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:84 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 +msgid "Do not create host route to peer (optional)." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219 +msgid "Do not forward requests that cannot be answered by public name servers" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214 +msgid "Do not forward reverse lookups for local networks" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 +msgid "Do you really want to delete \"%s\" ?" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:181 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94 +msgid "Do you really want to erase all settings?" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2753 +msgid "Do you really want to recursively delete the directory \"%s\" ?" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168 +msgid "Domain required" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +msgid "Domain whitelist" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67 +msgid "Don't Fragment" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169 +msgid "" +"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without " +"<abbr title=\"Domain Name System\">DNS</abbr>-Name" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152 +msgid "Down" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402 +msgid "Down Delay" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366 +msgid "Download backup" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404 +msgid "Download mtdblock" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925 +msgid "Downstream SNR offset" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2620 +msgid "Drag to reorder" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341 +msgid "Drop Duplicate Frames" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12 +msgid "Dropbear Instance" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 +msgid "" +"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " +"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 +msgid "Dual-Stack Lite (RFC6333)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595 +msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60 +msgid "Dynamic tunnel" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595 +msgid "" +"Dynamically allocate DHCP addresses for clients. If disabled, only clients " +"having static leases will be served." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67 +msgid "EA-bits length" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1491 +msgid "EAP-Method" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2640 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2643 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3017 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:844 +msgid "Edit" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/error.htm:13 +msgid "" +"Edit the raw configuration data above to fix any error and hit \"Save\" to " +"reload the page." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842 +msgid "Edit this network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793 +msgid "Edit wireless network" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172 +msgid "Emergency" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879 +msgid "Enable" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462 +msgid "" +"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> " +"snooping" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460 +msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:367 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373 +msgid "Enable DNS lookups" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292 +msgid "Enable Dynamic Shuffling Of Flows" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60 +msgid "Enable HE.net dynamic endpoint update" +msgstr "" + +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89 +msgid "Enable IPv6 negotiation" +msgstr "" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:93 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93 +msgid "Enable IPv6 negotiation on the PPP link" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192 +msgid "Enable Jumbo Frame passthrough" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:240 +msgid "Enable NTP client" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96 +msgid "Enable Single DES" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 +msgid "Enable TFTP server" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184 +msgid "Enable VLAN functionality" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638 +msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634 +msgid "Enable key reinstallation (KRACK) countermeasures" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187 +msgid "Enable learning and aging" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198 +msgid "Enable mirroring of incoming packets" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199 +msgid "Enable mirroring of outgoing packets" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:882 +msgid "" +"Enable packet steering across all CPUs. May help or hinder network speed." +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75 +msgid "Enable rx checksum" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67 +msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837 +msgid "Enable this network" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:79 +msgid "Enable tx checksum" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66 +msgid "Enabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462 +msgid "Enables IGMP snooping on this bridge" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431 +msgid "" +"Enables fast roaming among access points that belong to the same Mobility " +"Domain" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460 +msgid "Enables the Spanning Tree Protocol on this bridge" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59 +msgid "Encapsulation limit" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:973 +msgid "Encapsulation mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1117 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1666 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:45 +msgid "Encryption" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:161 +msgid "Endpoint Host" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:165 +msgid "Endpoint Port" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16 +msgid "Enter custom value" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16 +msgid "Enter custom values" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97 +msgid "Erasing..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:169 +msgid "Error" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +msgid "Errored seconds (ES)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2889 +#: modules/luci-compat/luasrc/model/network.lua:1433 +msgid "Ethernet Adapter" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2880 +#: modules/luci-compat/luasrc/model/network.lua:1423 +msgid "Ethernet Switch" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270 +msgid "Every 30 seconds (slow, 0)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271 +msgid "Every second (fast, 1)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 +msgid "Exclude interfaces" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247 +msgid "Expand hosts" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:198 +msgid "Expecting a hexadecimal assignment hint" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:64 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 +msgid "Expecting: %s" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48 +msgid "Expecting: non-empty value" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50 +msgid "Expires" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 +msgid "" +"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19 +msgid "External" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482 +msgid "External R0 Key Holder List" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486 +msgid "External R1 Key Holder List" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:146 +msgid "External system log server" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:151 +msgid "External system log server port" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:156 +msgid "External system log server protocol" +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79 +msgid "Extra SSH command options" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 +msgid "Extra pppd options" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 +msgid "Extra sstpc options" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 +msgid "FT over DS" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1457 +msgid "FT over the Air" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1454 +msgid "FT protocol" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87 +msgid "Failed to change the system password." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 +msgid "Failed to confirm apply within %ds, waiting for rollback…" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37 +msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2673 +msgid "File" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2620 +msgid "File not accessible" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2811 +msgid "Filename" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +msgid "Filename of the boot image advertised to clients" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314 +msgid "Filesystem" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213 +msgid "Filter private" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218 +msgid "Filter useless" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388 +msgid "Filtering for all slaves, no validation" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389 +msgid "Filtering for all slaves, validation only for active slave" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390 +msgid "Filtering for all slaves, validation only for backup slaves" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23 +msgid "Finalizing failed" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150 +msgid "" +"Find all currently attached filesystems and swap and replace configuration " +"with defaults based on what was detected" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:820 +msgid "Find and join network" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/delegator.htm:9 +msgid "Finish" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15 +msgid "Firewall" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102 +msgid "Firewall Mark" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:326 +msgid "Firewall Settings" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297 +msgid "Firewall Status" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932 +msgid "Firmware File" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57 +msgid "Firmware Version" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 +msgid "Fixed source port for outbound DNS queries" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421 +msgid "Flash image..." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279 +msgid "Flash image?" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411 +msgid "Flash new firmware image" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:356 +msgid "Flash operations" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290 +msgid "Flashing…" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598 +msgid "Force" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907 +msgid "Force 40MHz mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158 +msgid "Force CCMP (AES)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598 +msgid "Force DHCP on this network even if another server is detected." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159 +msgid "Force TKIP" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160 +msgid "Force TKIP and CCMP (AES)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864 +msgid "Force link" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255 +msgid "Force upgrade" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90 +msgid "Force use of NAT-T" +msgstr "" + +#: modules/luci-base/luasrc/view/csrftoken.htm:8 +msgid "Form token mismatch" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164 +msgid "Forward DHCP traffic" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +msgid "Forward Error Correction Seconds (FECS)" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161 +msgid "Forward broadcast traffic" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934 +msgid "Forward mesh peer traffic" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980 +msgid "Forwarding mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899 +msgid "Fragmentation Threshold" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:115 +msgid "" +"Further information about WireGuard interfaces and peers at <a href='http://" +"wireguard.com'>wireguard.com</a>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:62 +msgid "GHz" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77 +msgid "GPRS only" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10 +msgid "GRE tunnel over IPv4" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10 +msgid "GRE tunnel over IPv6" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10 +msgid "GRETAP tunnel over IPv4" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10 +msgid "GRETAP tunnel over IPv6" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 +msgid "Gateway" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36 +msgid "Gateway Ports" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:11 +#: modules/luci-compat/luasrc/model/network.lua:29 +msgid "Gateway address is invalid" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 +msgid "Gateway metric" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:323 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 +msgid "General Settings" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:865 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:921 +msgid "General Setup" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150 +msgid "Generate Config" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66 +msgid "Generate Key" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460 +msgid "Generate PMK locally" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368 +msgid "Generate archive" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79 +msgid "Given password confirmation did not match, password not changed!" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146 +msgid "Global Settings" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875 +msgid "Global network options" +msgstr "" + +#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 +#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:58 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +msgid "Go to password configuration..." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2562 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3336 +#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 +msgid "Go to relevant configuration page" +msgstr "" + +#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:33 +msgid "Grant access to DHCP configuration" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:102 +msgid "Grant access to DHCP status display" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111 +msgid "Grant access to DSL status display" +msgstr "" + +#: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3 +msgid "Grant access to LuCI OpenConnect procedures" +msgstr "" + +#: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3 +msgid "Grant access to LuCI Wireguard procedures" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19 +msgid "Grant access to SSH configuration" +msgstr "" + +#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12 +msgid "Grant access to basic LuCI procedures" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64 +msgid "Grant access to crontab configuration" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60 +msgid "Grant access to firewall status" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116 +msgid "Grant access to flash operations" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:86 +msgid "Grant access to main status display" +msgstr "" + +#: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3 +msgid "Grant access to mmcli" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84 +msgid "Grant access to mount configuration" +msgstr "" + +#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3 +msgid "Grant access to network configuration" +msgstr "" + +#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:46 +msgid "Grant access to network diagnostic tools" +msgstr "" + +#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36 +msgid "Grant access to network status information" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13 +msgid "Grant access to process status" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3 +msgid "Grant access to realtime statistics" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42 +msgid "Grant access to startup configuration" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3 +msgid "Grant access to system configuration" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30 +msgid "Grant access to system logs" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47 +msgid "Grant access to the system route status" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120 +msgid "Grant access to wireless status display" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66 +msgid "Group Password" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22 +msgid "Guest" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81 +msgid "HE.net password" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 +msgid "HE.net username" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46 +msgid "Hang Up" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +msgid "Header Error Code Errors (HEC)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5 +msgid "Heartbeat interval (kernel: heartbeat)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100 +msgid "" +"Here you can configure the basic aspects of your device like its hostname or " +"the timezone." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1066 +msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:264 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:303 +msgid "Hide empty chains" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2070 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:56 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140 +msgid "Host" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22 +msgid "Host entries" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171 +msgid "Host expiry timeout" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31 +msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network" +msgstr "" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102 +msgid "Host-Uniq tag content" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121 +msgid "Hostname" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22 +msgid "Hostname to send when requesting DHCP" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20 +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63 +msgid "Hostnames" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24 +msgid "Hybrid" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48 +msgid "ID used to uniquely identify the VXLAN" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206 +msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75 +msgid "IKE DH Group" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83 +msgid "IP Addresses" +msgstr "" + +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:80 +msgid "IP Protocol" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +msgid "IP Type" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31 +msgid "IP address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:10 +#: modules/luci-compat/luasrc/model/network.lua:28 +msgid "IP address is invalid" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:13 +#: modules/luci-compat/luasrc/model/network.lua:31 +msgid "IP address is missing" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82 +msgid "IPv4" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316 +msgid "IPv4 Firewall" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 +msgid "IPv4 Upstream" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162 +msgid "IPv4 address" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33 +msgid "IPv4 assignment length" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181 +msgid "IPv4 broadcast" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180 +msgid "IPv4 gateway" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168 +msgid "IPv4 netmask" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:291 +msgid "IPv4 network in address/netmask notation" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 +msgid "IPv4 only" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52 +msgid "IPv4 prefix" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55 +msgid "IPv4 prefix length" +msgstr "" + +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83 +msgid "IPv4+IPv6" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154 +msgid "IPv4-Address" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164 +msgid "IPv4-Gateway" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10 +msgid "IPv4-in-IPv4 (RFC2003)" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 +msgid "IPv4/IPv6 (both - defaults to IPv4)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84 +msgid "IPv6" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319 +msgid "IPv6 Firewall" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203 +msgid "IPv6 Neighbours" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554 +msgid "IPv6 Settings" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 +msgid "IPv6 ULA-Prefix" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 +msgid "IPv6 Upstream" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:205 +msgid "IPv6 address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31 +msgid "IPv6 assignment hint" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27 +msgid "IPv6 assignment length" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:210 +msgid "IPv6 gateway" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:296 +msgid "IPv6 network in address/netmask notation" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 +msgid "IPv6 only" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59 +msgid "IPv6 prefix" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63 +msgid "IPv6 prefix length" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:214 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57 +msgid "IPv6 routed prefix" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:218 +msgid "IPv6 suffix" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 +msgid "IPv6 support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172 +msgid "IPv6-Address" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100 +msgid "IPv6-PD" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10 +msgid "IPv6-in-IPv4 (RFC4213)" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9 +msgid "IPv6-over-IPv4 (6rd)" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9 +msgid "IPv6-over-IPv4 (6to4)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1593 +msgid "Identity" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96 +msgid "If checked, 1DES is enabled" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 +msgid "If checked, adds \"+ipv6\" to the pppd options" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 +msgid "If checked, encryption is disabled" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 +msgid "" +"If specified, mount the device by its UUID instead of a fixed device node" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376 +msgid "" +"If specified, mount the device by the partition label instead of a fixed " +"device node" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:61 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:74 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:97 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61 +msgid "If unchecked, no default route is configured" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:64 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:77 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:100 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:69 +msgid "If unchecked, the advertised DNS server addresses are ignored" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 +msgid "" +"If your physical memory is insufficient unused data can be temporarily " +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197 +msgid "Ignore <code>/etc/hosts</code>" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579 +msgid "Ignore interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185 +msgid "Ignore resolve file" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419 +msgid "Image" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67 +msgid "In" +msgstr "" + +#: modules/luci-base/luasrc/view/csrftoken.htm:13 +msgid "" +"In order to prevent unauthorized access to the system, your request has been " +"blocked. Click \"Continue »\" below to return to the previous page." +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:157 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:141 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:128 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:106 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:115 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:138 +msgid "Inactivity timeout" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265 +msgid "Inbound:" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:90 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:95 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 +msgid "Incoming checksum" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 +msgid "Incoming key" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 +msgid "Incoming serialization" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166 +msgid "Info" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101 +msgid "Information" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25 +msgid "Initialization failure" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77 +msgid "Initscript" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111 +msgid "Initscripts" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577 +msgid "Inner certificate constraint (Domain)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574 +msgid "Inner certificate constraint (SAN)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571 +msgid "Inner certificate constraint (Subject)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580 +msgid "Inner certificate constraint (Wildcard)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:268 +msgid "Install protocol extensions..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938 +msgid "" +"Instead of joining any network with a matching SSID, only connect to the " +"BSSID <code>%h</code>." +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/map.htm:43 +msgid "Insufficient permissions to read UCI configuration." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:464 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:739 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17 +msgid "Interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62 +msgid "Interface %q device auto-migrated from %q to %q." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917 +msgid "Interface Configuration" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:110 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151 +msgid "Interface has %d pending changes" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92 +msgid "Interface is disabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:64 +msgid "Interface is marked for deletion" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:209 +msgid "Interface is reconnecting..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:203 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:209 +msgid "Interface is shutting down..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:253 +msgid "Interface is starting..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:256 +msgid "Interface is stopping..." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079 +msgid "Interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:122 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:272 +msgid "Interface not present or not connected yet." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:308 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:335 +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38 +msgid "Interfaces" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20 +msgid "Internal" +msgstr "" + +#: modules/luci-base/luasrc/view/error500.htm:8 +msgid "Internal Server Error" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283 +msgid "Interval For Sending Learning Packets" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192 +#: modules/luci-compat/luasrc/view/cbi/tsection.htm:42 +msgid "Invalid" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19 +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22 +msgid "Invalid Base64 key string" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285 +msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294 +msgid "Invalid VLAN ID given! Only unique IDs are allowed" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 +msgid "Invalid argument" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 +msgid "Invalid command" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:106 +msgid "Invalid hexadecimal value" +msgstr "" + +#: modules/luci-base/luasrc/view/sysauth.htm:12 +msgid "Invalid username and/or password! Please try again." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:71 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:76 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 +msgid "Invalid value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 +msgid "Isolate Clients" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231 +msgid "" +"It appears that you are trying to flash an image that does not fit into the " +"flash memory, please verify the image file!" +msgstr "" + +#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:291 +msgid "JavaScript required!" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746 +msgid "Join Network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680 +msgid "Join Network: Wireless Scan" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946 +msgid "Joining Network: %q" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20 +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51 +msgid "Kernel Log" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58 +msgid "Kernel Version" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369 +msgid "Key" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412 +msgid "Key #%d" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 +msgid "Key for incoming packets (optional)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 +msgid "Key for outgoing packets (optinal)." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54 +msgid "Kill" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10 +msgid "L2TP" +msgstr "" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40 +msgid "L2TP Server" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267 +msgid "LACPDU Packets" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:102 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:76 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:89 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:112 +msgid "LCP echo failure threshold" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:115 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:102 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:125 +msgid "LCP echo interval" +msgstr "" + +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101 +msgid "LED Configuration" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:974 +msgid "LLC" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376 +msgid "Label" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:209 +msgid "Language" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111 +msgid "Language and Style" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +msgid "Latency" +msgstr "" + +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21 +msgid "Leaf" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 +msgid "Lease time" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:59 +msgid "Lease time remaining" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181 +msgid "Leasefile" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50 +msgid "Leave empty to autodetect" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45 +msgid "Leave empty to use the current WAN address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4030 +msgid "Legend:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586 +msgid "Limit" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +msgid "Limit DNS service to subnets interfaces on which we are serving DNS." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +msgid "Limit listening to these interfaces, and loopback." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +msgid "Line Attenuation (LATN)" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +msgid "Line Mode" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +msgid "Line State" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +msgid "Line Uptime" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123 +msgid "Link Aggregation (Channel Bonding)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348 +msgid "Link Monitoring" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23 +msgid "Link On" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +msgid "" +"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward " +"requests to" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482 +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 " +"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " +"from the R0KH that the STA used during the Initial Mobility Domain " +"Association." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486 +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 " +"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " +"R0KH. This is also the list of authorized R1KHs in the MD that can request " +"PMK-R1 keys." +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82 +msgid "List of SSH key files for auth" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 +msgid "List of domains to allow RFC1918 responses for" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 +msgid "List of hosts that supply bogus NX domain results" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 +msgid "Listen Interfaces" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78 +msgid "Listen Port" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17 +msgid "Listen only on the given interface or, if unspecified, on all" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 +msgid "Listening port for inbound DNS queries" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:87 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54 +msgid "Load" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61 +msgid "Load Average" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938 +msgid "Loading directory contents…" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:1948 +#: modules/luci-base/luasrc/view/view.htm:4 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 +msgid "Loading view…" +msgstr "" + +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:12 +#: modules/luci-compat/luasrc/model/network.lua:30 +msgid "Local IP address is invalid" +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86 +msgid "Local IP address to assign" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39 +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44 +msgid "Local IPv4 address" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44 +msgid "Local IPv6 address" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +msgid "Local Service Only" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115 +msgid "Local Startup" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117 +msgid "Local Time" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243 +msgid "Local domain" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240 +msgid "" +"Local domain specification. Names matching this domain are never forwarded " +"and are resolved from DHCP or hosts files only" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244 +msgid "Local domain suffix appended to DHCP names and hosts file entries" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239 +msgid "Local server" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224 +msgid "" +"Localise hostname depending on the requesting subnet if multiple IPs are " +"available" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223 +msgid "Localise queries" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938 +msgid "Lock to BSSID" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:164 +msgid "Log output level" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +msgid "Log queries" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109 +msgid "Logging" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 +msgid "" +"Logical network from which to select the local endpoint if local IPv6 " +"address is empty and no WAN IPv6 is available (optional)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 +msgid "Logical network to which the tunnel will be added (bridged) (optional)." +msgstr "" + +#: modules/luci-base/luasrc/view/sysauth.htm:38 +msgid "Login" +msgstr "" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81 +msgid "Logout" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +msgid "Loss of Signal Seconds (LOSS)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581 +msgid "Lowest leased address as offset from the network address." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82 +msgid "MAC" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251 +msgid "MAC Address For The Actor" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2069 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:139 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:173 +msgid "MAC-Address" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011 +msgid "MAC-Address Filter" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923 +msgid "MAC-Filter" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018 +msgid "MAC-List" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13 +msgid "MAP / LW4over6" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7 +msgid "MAP rule is invalid" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:321 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:322 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323 +msgid "MBit/s" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218 +msgid "MD5" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:71 +msgid "MHz" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353 +msgid "MII" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421 +msgid "MII / ETHTOOL ioctls" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394 +msgid "MII Interval" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97 +msgid "MTU" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302 +msgid "" +"Make sure to clone the root filesystem using something like the commands " +"below:" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70 +msgid "Manual" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 +msgid "Master" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +msgid "Max. Attainable Data Rate (ATTNDR)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1107 +msgid "Maximum allowed Listen Interval" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 +msgid "Maximum allowed number of active DHCP leases" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +msgid "Maximum allowed number of concurrent DNS queries" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +msgid "Maximum allowed size of EDNS.0 UDP packets" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:112 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:104 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:93 +msgid "Maximum amount of seconds to wait for the modem to become ready" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586 +msgid "Maximum number of leased addresses." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:886 +msgid "Maximum transmit power" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:63 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:71 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329 +msgid "Mbit/s" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35 +msgid "Medium" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24 +msgid "Memory" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73 +msgid "Memory usage (%)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 +msgid "Mesh" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156 +msgid "Mesh ID" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931 +msgid "Mesh Id" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +msgid "Method not found" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349 +msgid "Method of link monitoring" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418 +msgid "Method to determine link status" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183 +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 +msgid "Metric" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235 +msgid "Minimum Number of Links" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202 +msgid "Mirror monitor port" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201 +msgid "Mirror source port" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9 +msgid "Mobile Data" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 +msgid "Mobility Domain" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:442 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:926 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:43 +msgid "Mode" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55 +msgid "Model" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 +msgid "Modem default" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 +msgid "Modem device" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 +msgid "Modem information query failed" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:112 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:104 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:93 +msgid "Modem init timeout" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 +msgid "ModemManager" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 +msgid "Monitor" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31 +msgid "More Characters" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2504 +msgid "More…" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192 +msgid "Mount Point" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88 +msgid "Mount Points" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229 +msgid "Mount Points - Mount Entry" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 +msgid "Mount Points - Swap Entry" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228 +msgid "" +"Mount Points define at which point a memory device will be attached to the " +"filesystem" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154 +msgid "Mount attached devices" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162 +msgid "Mount filesystems not specifically configured" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331 +msgid "Mount options" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 +msgid "Mount point" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158 +msgid "Mount swap not specifically configured" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223 +msgid "Mounted file systems" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152 +msgid "Move down" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151 +msgid "Move up" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437 +msgid "NAS ID" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87 +msgid "NAT-T Mode" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41 +msgid "NAT64 Prefix" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31 +msgid "NCM" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:637 +msgid "NDP-Proxy" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72 +msgid "NT Domain" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:274 +msgid "NTP server candidates" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2542 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3785 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:710 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67 +msgid "Name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916 +msgid "Name of the new network" +msgstr "" + +#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 +msgid "Navigation" +msgstr "" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2068 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:381 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:138 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:162 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180 +msgid "Network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68 +msgid "Network Utilities" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 +msgid "Network boot image" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7 +msgid "Network device activity (kernel: netdev)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:15 +#: modules/luci-compat/luasrc/model/network.lua:33 +msgid "Network device is not present" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 +msgid "Network interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 +msgid "New interface for \"%s\" can not be created: %s" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713 +msgid "New interface name…" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/delegator.htm:11 +msgid "Next »" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:3643 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 +msgid "No" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:562 +msgid "No DHCP Server configured for this interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310 +msgid "No Encryption" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87 +msgid "No Host Routes" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89 +msgid "No NAT-T" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79 +msgid "No RX signal" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 +msgid "No client associated" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +msgid "No data received" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2878 +msgid "No entries in this directory" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 +msgid "No files found" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:79 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:84 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 +msgid "No host route" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:241 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59 +msgid "No information available" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8 +msgid "No matching prefix delegation" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143 +msgid "No more slaves available" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187 +msgid "No more slaves available, can not save interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 +msgid "No negative cache" +msgstr "" + +#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212 +#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:55 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:279 +msgid "No password set!" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:130 +msgid "No peers defined yet" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 +msgid "No public keys present yet." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:90 +msgid "No rules in this chain." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384 +msgid "No validation or filtering" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825 +msgid "No zone assigned" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:174 +msgid "Noise" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +msgid "Noise Margin (SNR)" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:270 +msgid "Noise:" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +msgid "Non Pre-emptive CRC errors (CRC_P)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +msgid "Non-wildcard" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 +msgid "None" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177 +msgid "Normal" +msgstr "" + +#: modules/luci-base/luasrc/view/error404.htm:8 +msgid "Not Found" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 +msgid "Not associated" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32 +msgid "Not connected" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:120 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:280 +msgid "Not present" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101 +msgid "Not started on boot" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +msgid "Not supported" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167 +msgid "Notice" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127 +msgid "Nslookup" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332 +msgid "Number of IGMP membership reports" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 +msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199 +msgid "Number of parallel threads used for compression" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309 +msgid "Number of peer notifications after failover event" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69 +msgid "Obfuscated Group Password" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61 +msgid "Obfuscated Password" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:105 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:93 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93 +msgid "Obtain IPv6-Address" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351 +msgid "Off" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15 +msgid "Off-State Delay" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18 +msgid "On" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96 +msgid "On-Link route" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11 +msgid "On-State Delay" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +msgid "One of hostname or mac address must be specified!" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:466 +msgid "One of the following: %s" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17 +#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22 +msgid "One or more fields contain invalid values!" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/map.htm:32 +msgid "One or more invalid/required values on tab" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19 +#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24 +msgid "One or more required fields have no value!" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229 +msgid "" +"Only if current active slave fails and the primary slave is up (failure, 2)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 +msgid "Open list..." +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64 +msgid "OpenConnect (CISCO AnyConnect)" +msgstr "" + +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 +msgid "Operating frequency" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:1971 +#: modules/luci-base/htdocs/luci-static/resources/form.js:3653 +msgid "Option \"%s\" contains an invalid input value." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:1984 +msgid "Option \"%s\" must not be empty." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4037 +msgid "Option changed" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4039 +msgid "Option removed" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1609 +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 +msgid "Optional" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102 +msgid "" +"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " +"starting with <code>0x</code>." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:218 +msgid "" +"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " +"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " +"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " +"for the interface." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143 +msgid "" +"Optional. Base64-encoded preshared key. Adds in an additional layer of " +"symmetric-key cryptography for post-quantum resistance." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159 +msgid "Optional. Create routes for Allowed IPs for this peer." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134 +msgid "Optional. Description of peer." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87 +msgid "Optional. Do not create host routes to peers." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:161 +msgid "" +"Optional. Host of peer. Names are resolved prior to bringing up the " +"interface." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97 +msgid "Optional. Maximum Transmission Unit of tunnel interface." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:165 +msgid "Optional. Port of peer." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:169 +msgid "" +"Optional. Seconds between keep alive messages. Default is 0 (disabled). " +"Recommended value if this device is behind a NAT is 25." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78 +msgid "Optional. UDP port used for outgoing and incoming packets." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 +msgid "Options" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:346 +msgid "Other:" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68 +msgid "Out" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275 +msgid "Outbound:" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:96 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 +msgid "Outgoing checksum" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 +msgid "Outgoing key" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 +msgid "Outgoing serialization" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50 +msgid "Output Interface" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165 +msgid "Output zone" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:76 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:71 +msgid "Override MAC address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:62 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:67 +#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:132 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:110 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:119 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:97 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:77 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57 +msgid "Override MTU" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:72 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:67 +msgid "Override TOS" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:67 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:72 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62 +msgid "Override TTL" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079 +msgid "Override default interface name" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167 +msgid "Override the gateway in DHCP responses" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603 +msgid "" +"Override the netmask sent to clients. Normally it is calculated from the " +"subnet that is served." +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 +msgid "Override the table used for internal routes" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3 +msgid "Overview" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2721 +msgid "Overwrite existing file \"%s\" ?" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70 +msgid "Owner" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +msgid "PAP/CHAP (both)" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46 +msgid "PAP/CHAP password" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:77 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44 +msgid "PAP/CHAP username" +msgstr "" + +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101 +msgid "PDP Type" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69 +msgid "PID" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 +msgid "PIN" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:21 +#: modules/luci-compat/luasrc/model/network.lua:39 +msgid "PIN code rejected" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1477 +msgid "PMK R1 Push" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43 +msgid "PPP" +msgstr "" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58 +msgid "PPPoA Encapsulation" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28 +msgid "PPPoATM" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28 +msgid "PPPoE" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28 +msgid "PPPoSSH" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28 +msgid "PPtP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73 +msgid "PSID offset" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70 +msgid "PSID-bits length" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918 +msgid "PTM/EFM (Packet Transfer Mode)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:882 +msgid "Packet Steering" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53 +msgid "Packets" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275 +msgid "Packets To Transmit Before Moving To Next Slave" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825 +msgid "Part of zone %q" +msgstr "" + +#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 +msgid "Password" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25 +msgid "Password authentication" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1531 +msgid "Password of Private Key" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1589 +msgid "Password of inner Private Key" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37 +msgid "Password strength" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111 +msgid "Password2" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:239 +msgid "Paste or drag SSH key file…" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510 +msgid "Path to CA-Certificate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525 +msgid "Path to Client-Certificate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528 +msgid "Path to Private Key" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568 +msgid "Path to inner CA-Certificate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583 +msgid "Path to inner Client-Certificate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586 +msgid "Path to inner Private Key" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 +msgid "Paused" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:271 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:281 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:332 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:342 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:352 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:237 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:247 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:257 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294 +msgid "Peak:" +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89 +msgid "Peer IP address to assign" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:14 +#: modules/luci-compat/luasrc/model/network.lua:32 +msgid "Peer address is missing" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:115 +msgid "Peers" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80 +msgid "Perfect Forward Secrecy" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 +msgid "Perform outgoing packets serialization (optional)." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 +msgid "Perform reboot" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:378 +msgid "Perform reset" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +msgid "Permission denied" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:169 +msgid "Persistent Keep Alive" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:288 +msgid "Phy Rate:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:325 +msgid "Physical Settings" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90 +msgid "Ping" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 +msgid "Pkts." +msgstr "" + +#: modules/luci-base/luasrc/view/sysauth.htm:19 +msgid "Please enter your username and password." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3768 +msgid "Please select the file to upload." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53 +msgid "Policy" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 +msgid "Port" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278 +msgid "Port status:" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:492 +msgid "Potential negation of: %s" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 +msgid "Power Management Mode" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +msgid "Pre-emptive CRC errors (CRCP_P)" +msgstr "" + +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73 +msgid "Prefer LTE" +msgstr "" + +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74 +msgid "Prefer UMTS" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33 +msgid "Prefix Delegated" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143 +msgid "Preshared Key" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:102 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:76 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:89 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:112 +msgid "" +"Presume peer to be dead after given amount of LCP echo failures, use 0 to " +"ignore failures" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 +msgid "Prevent listening on these interfaces." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 +msgid "Prevents client-to-client communication" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211 +msgid "Primary Slave" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228 +msgid "" +"Primary becomes active slave when it comes back up if speed and duplex " +"better than current slave (better, 1)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227 +msgid "Primary becomes active slave whenever it comes back up (always, 0)" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61 +msgid "Private Key" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64 +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63 +msgid "Processes" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +msgid "Profile" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 +msgid "Prot." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:79 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:727 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:382 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32 +msgid "Protocol" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:265 +msgid "Provide NTP server" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:825 +msgid "Provide new network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004 +msgid "Pseudo Ad-Hoc (ahdemo)" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139 +msgid "Public Key" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:275 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:214 +msgid "Public prefix routed to this device for distribution to clients." +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27 +msgid "QMI Cellular" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:41 +msgid "Quality" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 +msgid "" +"Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> " +"servers" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465 +msgid "R0 Key Lifetime" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471 +msgid "R1 Key Holder" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88 +msgid "RFC3947 NAT-T mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 +msgid "RSSI threshold for joining" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903 +msgid "RTS/CTS Threshold" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 +msgid "RX" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142 +msgid "RX Rate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072 +msgid "RX Rate / TX Rate" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343 +msgid "Radius-Accounting-Port" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348 +msgid "Radius-Accounting-Secret" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338 +msgid "Radius-Accounting-Server" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328 +msgid "Radius-Authentication-Port" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333 +msgid "Radius-Authentication-Secret" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323 +msgid "Radius-Authentication-Server" +msgstr "" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102 +msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178 +msgid "" +"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host " +"Configuration Protocol\">DHCP</abbr>-Server" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:402 +msgid "Really switch protocol?" +msgstr "" + +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75 +msgid "Realtime Graphs" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448 +msgid "Reassociation Deadline" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Rebind protection" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 +msgid "Reboot" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 +msgid "Rebooting…" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 +msgid "Reboots the operating system of your device" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25 +msgid "Receive" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83 +msgid "Recommended. IP addresses of the WireGuard interface." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:348 +msgid "Reconnect this interface" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 +msgid "References" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +msgid "Refreshing" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 +msgid "Relay" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_relay.lua:157 +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36 +msgid "Relay Bridge" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154 +msgid "Relay between networks" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_relay.lua:12 +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64 +msgid "Relay bridge" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40 +msgid "Remote IPv4 address" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40 +msgid "Remote IPv4 address or FQDN" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 +msgid "Remote IPv6 address" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 +msgid "Remote IPv6 address or FQDN" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 +msgid "Remove" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914 +msgid "Replace wireless configuration" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17 +msgid "Request IPv6-address" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23 +msgid "Request IPv6-prefix of length" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +msgid "Request timeout" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:90 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:95 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 +msgid "Require incoming checksum (optional)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 +msgid "Require incoming packets serialization (optional)." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610 +msgid "Required" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61 +msgid "Required. Base64-encoded private key for this interface." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139 +msgid "Required. Base64-encoded public key of peer." +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148 +msgid "" +"Required. IP addresses and prefixes that this peer is allowed to use inside " +"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " +"routes through the tunnel." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241 +msgid "Requires hostapd" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1246 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1247 +msgid "Requires hostapd with EAP Suite-B support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1244 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1245 +msgid "Requires hostapd with EAP support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1248 +msgid "Requires hostapd with OWE support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1242 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1243 +msgid "Requires hostapd with SAE support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238 +msgid "Requires hostapd with WEP support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 +msgid "" +"Requires the 'full' version of wpad/hostapd and support from the wifi driver " +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233 +msgid "" +"Requires upstream supports DNSSEC; verify unsigned domain responses really " +"come from unsigned domains" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1253 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1254 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1255 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1267 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1268 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1269 +msgid "Requires wpa-supplicant" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1261 +msgid "Requires wpa-supplicant with EAP Suite-B support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1259 +msgid "Requires wpa-supplicant with EAP support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1262 +msgid "Requires wpa-supplicant with OWE support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1256 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1257 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1272 +msgid "Requires wpa-supplicant with SAE support" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252 +msgid "Requires wpa-supplicant with WEP support" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224 +msgid "Reselection policy for primary slave" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2203 +#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 +#: modules/luci-compat/luasrc/view/cbi/footer.htm:30 +#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 +msgid "Reset" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:308 +msgid "Reset Counters" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376 +msgid "Reset to defaults" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162 +msgid "Resolv and Hosts Files" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188 +msgid "Resolve file" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +msgid "Resource not found" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:350 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:817 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100 +msgid "Restart" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313 +msgid "Restart Firewall" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:815 +msgid "Restart radio interface" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372 +msgid "Restore" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382 +msgid "Restore backup" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:371 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:372 +msgid "Reveal/hide password" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053 +msgid "Revert" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4138 +msgid "Revert changes" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4320 +msgid "Revert request failed with status <code>%h</code>" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4300 +msgid "Reverting configuration…" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +msgid "Root directory for files served via TFTP" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297 +msgid "Root preparation" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202 +msgid "Round-Robin policy (balance-rr, 0)" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159 +msgid "Route Allowed IPs" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73 +msgid "Route table" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60 +msgid "Route type" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:625 +msgid "Router Advertisement-Service" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26 +msgid "Router Password" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:194 +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27 +msgid "Routes" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15 +msgid "" +"Routes specify over which interface and gateway a certain host or network " +"can be reached." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:206 +msgid "Rule" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 +msgid "Run a filesystem check before mounting the device" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 +msgid "Run filesystem check" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2364 +msgid "Runtime error" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219 +msgid "SHA256" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:175 +msgid "SNR" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 +msgid "SSH Access" +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70 +msgid "SSH server address" +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74 +msgid "SSH server port" +msgstr "" + +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58 +msgid "SSH username" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 +msgid "SSH-Keys" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:42 +msgid "SSID" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 +msgid "SSTP" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 +msgid "SSTP Server" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 +msgid "SWAP" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2866 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2198 +#: modules/luci-compat/luasrc/view/cbi/error.htm:17 +#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 +#: modules/luci-compat/luasrc/view/cbi/header.htm:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:435 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123 +msgid "Save" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2180 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4049 +#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 +msgid "Save & Apply" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:602 +msgid "Save error" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406 +msgid "Save mtdblock" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396 +msgid "Save mtdblock contents" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:822 +msgid "Scan" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76 +msgid "Scheduled Tasks" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4033 +msgid "Section added" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4035 +msgid "Section removed" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331 +msgid "See \"mount\" manpage for details" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257 +msgid "" +"Select 'Force upgrade' to flash the image even if the image format check " +"fails. Use only if you are sure that the firmware is correct and meant for " +"your device!" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2622 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2762 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2927 +msgid "Select file…" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318 +msgid "Selects the transmit hash policy to use for slave selection" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:115 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:102 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:125 +msgid "" +"Send LCP echo requests at the given interval in seconds, only effective in " +"conjunction with failure threshold" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 +msgid "Server Settings" +msgstr "" + +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50 +msgid "Service Name" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:87 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:71 +msgid "Service Type" +msgstr "" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36 +msgid "Services" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107 +msgid "Set VPN as Default Route" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864 +msgid "" +"Set interface properties regardless of the link carrier (If set, carrier " +"sense events do not invoke hotplug handlers)." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300 +msgid "Set same MAC Address to all slaves" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 +msgid "Set this interface as master for the dhcpv6 relay." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304 +msgid "Set to currently active slave (active, 1)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305 +msgid "Set to first slave added to the bond (follow, 2)" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 +#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 +msgid "Setting PLMN failed" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26 +msgid "Setting operation mode failed" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:565 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575 +msgid "Setup DHCP Server" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +msgid "Severely Errored Seconds (SES)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80 +msgid "Short GI" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085 +msgid "Short Preamble" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 +msgid "Show current backup file list" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:264 +msgid "Show empty chains" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:354 +msgid "Shutdown this interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:41 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:173 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:179 +msgid "Signal" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071 +msgid "Signal / Noise" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +msgid "Signal Attenuation (SATN)" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:260 +msgid "Signal:" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3786 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217 +msgid "Size" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +msgid "Size of DNS query cache" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187 +msgid "Size of the ZRam device in megabytes" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/footer.htm:18 +#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57 +msgid "Skip" +msgstr "" + +#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:36 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 +msgid "Skip to content" +msgstr "" + +#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:35 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 +msgid "Skip to navigation" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178 +msgid "Slave Interfaces" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2883 +#: modules/luci-compat/luasrc/model/network.lua:1428 +msgid "Software VLAN" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/header.htm:5 +msgid "Some fields are invalid, cannot save values!" +msgstr "" + +#: modules/luci-base/luasrc/view/error404.htm:9 +msgid "Sorry, the object you requested was not found." +msgstr "" + +#: modules/luci-base/luasrc/view/error500.htm:9 +msgid "Sorry, the server encountered an unexpected error." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414 +msgid "" +"Sorry, there is no sysupgrade support present; a new firmware image must be " +"flashed manually. Please refer to the wiki for device specific install " +"instructions." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182 +msgid "Source" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84 +msgid "Source Address" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 +msgid "Source interface" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 +msgid "" +"Specifies that duplicate frames (received on inactive ports) should be " +"dropped or delivered" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358 +msgid "Specifies the ARP link monitoring frequency in milliseconds" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366 +msgid "Specifies the IP addresses to use for ARP monitoring" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395 +msgid "Specifies the MII link monitoring frequency in milliseconds" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259 +msgid "Specifies the aggregation selection logic to use" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 +msgid "Specifies the directory the device is attached to" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252 +msgid "" +"Specifies the mac-address for the actor in protocol packet exchanges " +"(LACPDUs). If empty, masters' mac address defaults to system default" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 +msgid "" +"Specifies the maximum amount of failed ARP requests until hosts are presumed " +"to be dead" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171 +msgid "" +"Specifies the maximum amount of seconds after which hosts are presumed to be " +"dead" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:886 +msgid "" +"Specifies the maximum transmit power the wireless radio may use. Depending " +"on regulatory requirements and wireless usage, the actual transmit power may " +"be reduced by the driver." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236 +msgid "" +"Specifies the minimum number of links that must be active before asserting " +"carrier" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200 +msgid "Specifies the mode to be used for this bonding interface" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333 +msgid "" +"Specifies the number of IGMP membership reports to be issued after a " +"failover event in 200ms intervals" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276 +msgid "" +"Specifies the number of packets to transmit through a slave before moving to " +"the next one" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310 +msgid "" +"Specifies the number of peer notifications (gratuitous ARPs and unsolicited " +"IPv6 Neighbor Advertisements) to be issued after a failover event" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284 +msgid "" +"Specifies the number of seconds between instances where the bonding driver " +"sends learning packets to each slaves peer switch" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374 +msgid "Specifies the quantity of ARP IP targets that must be reachable" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268 +msgid "" +"Specifies the rate in which the link partner will be asked to transmit " +"LACPDU packets" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225 +msgid "" +"Specifies the reselection policy for the primary slave when failure of the " +"active slave or recovery of the primary slave occurs" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244 +msgid "Specifies the system priority" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403 +msgid "" +"Specifies the time in milliseconds to wait before disabling a slave after a " +"link failure detection" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411 +msgid "" +"Specifies the time in milliseconds to wait before enabling a slave after a " +"link recovery detection" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382 +msgid "" +"Specifies whether ARP probes and replies should be validated or non-ARP " +"traffic should be filtered for link monitoring" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301 +msgid "" +"Specifies whether active-backup mode should set all slaves to the same MAC " +"address at enslavement" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419 +msgid "" +"Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. " +"netif_carrier_ok()" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293 +msgid "" +"Specifies whether to shuffle active flows across slaves based on the load" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179 +msgid "" +"Specifies which slave interfaces should be attached to this bonding interface" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212 +msgid "" +"Specifies which slave is the primary device. It will always be the active " +"slave while it is available" +msgstr "" + +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:72 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:67 +msgid "Specify a TOS (Type of Service)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72 +msgid "" +"Specify a TOS (Type of Service). Can be either <code>inherit</code> (the " +"outer header inherits the value of the inner header) or an hexadecimal value " +"starting with <code>0x</code> (optional)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:67 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:72 +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64) (optional)." +msgstr "" + +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62 +msgid "" +"Specify a TTL (Time to Live) for the encapsulating packet other than the " +"default (64)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 +msgid "" +"Specify a Traffic Class. Can be either <code>inherit</code> (the outer " +"header inherits the value of the inner header) or an hexadecimal value " +"starting with <code>0x</code> (optional)." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:62 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:67 +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes) (optional)." +msgstr "" + +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57 +msgid "" +"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " +"bytes)." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931 +msgid "Specify the secret encryption key here." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99 +msgid "Start" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76 +msgid "Start priority" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1765 +msgid "Start refresh" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4253 +msgid "Starting configuration apply…" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678 +msgid "Starting wireless scan..." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64 +msgid "Startup" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19 +msgid "Static IPv4 Routes" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19 +msgid "Static IPv6 Routes" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165 +msgid "Static Leases" +msgstr "" + +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76 +msgid "Static Routes" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:1981 +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172 +#: modules/luci-compat/luasrc/model/network.lua:967 +msgid "Static address" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 +msgid "" +"Static leases are used to assign fixed IP addresses and symbolic hostnames " +"to DHCP clients. They are also required for non-dynamic interface " +"configurations where only hosts with a corresponding lease are served." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102 +msgid "Station inactivity limit" +msgstr "" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:385 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:871 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +msgid "Status" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:356 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101 +msgid "Stop" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770 +msgid "Stop refresh" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "Strict order" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33 +msgid "Strong" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956 +msgid "Submit" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203 +msgid "Suppress logging" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204 +msgid "Suppress logging of the routine operation of these protocols" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44 +msgid "Swap free" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3 +msgid "Switch" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172 +msgid "Switch %q" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150 +msgid "" +"Switch %q has an unknown topology - the VLAN settings might not be accurate." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2883 +#: modules/luci-compat/luasrc/model/network.lua:1426 +msgid "Switch VLAN" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:403 +msgid "Switch protocol" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103 +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104 +#: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26 +msgid "Switch to CIDR list notation" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657 +msgid "Symbolic link" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75 +msgid "Sync with NTP-Server" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67 +msgid "Sync with browser" +msgstr "" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99 +#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3 +msgid "System" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25 +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39 +msgid "System Log" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243 +msgid "System Priority" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104 +msgid "System Properties" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141 +msgid "System log buffer size" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:336 +msgid "TCP:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163 +msgid "TFTP Settings" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 +msgid "TFTP server root" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84 +msgid "TX" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142 +msgid "TX Rate" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184 +msgid "Table" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:181 +msgid "Target" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103 +msgid "Target network" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50 +msgid "Terminate" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84 +msgid "The <em>block mount</em> command failed with code %d" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77 +msgid "" +"The HE.net endpoint update configuration changed, you must now use the plain " +"username instead of the user ID!" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40 +msgid "The IPv4 address or the fully-qualified domain name of the remote end." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40 +msgid "" +"The IPv4 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 +msgid "The IPv6 address or the fully-qualified domain name of the remote end." +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 +msgid "" +"The IPv6 address or the fully-qualified domain name of the remote tunnel end." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59 +msgid "" +"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916 +msgid "" +"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</" +"code> and <code>_</code>" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/error.htm:6 +msgid "The configuration file could not be loaded due to the following error:" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4129 +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 "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392 +msgid "" +"The device file of the memory or partition (<abbr title=\"for example\">e.g." +"</abbr> <code>/dev/sda1</code>)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:736 +msgid "" +"The existing wireless configuration needs to be changed for LuCI to function " +"properly." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215 +msgid "" +"The flash image was uploaded. Below is the checksum and file size listed, " +"compare them with the original file to ensure data integrity. <br /> Click " +"\"Proceed\" below to start the flash procedure." +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:195 +msgid "The following rules are currently active on this system." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154 +msgid "The gateway address must not be a local IP address" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:147 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:153 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:716 +msgid "The interface name is already used" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:722 +msgid "The interface name is too long" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55 +msgid "" +"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " +"addresses." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63 +msgid "The length of the IPv6 prefix in bits" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163 +msgid "The local IPv4 address" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46 +#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44 +msgid "The local IPv4 address over which the tunnel is created (optional)." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169 +msgid "The local IPv4 netmask" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44 +msgid "The local IPv6 address over which the tunnel is created (optional)." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922 +msgid "The network name is already used" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 +msgid "" +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"communicate directly with each other. <abbr title=\"Virtual Local Area " +"Network\">VLAN</abbr>s are often used to separate different network " +"segments. Often there is by default one Uplink port for a connection to the " +"next greater network like the internet and other ports for a local network." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 +msgid "The reboot command failed with code %d" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147 +msgid "The restore command failed with code %d" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1297 +msgid "The selected %s mode is incompatible with %s encryption" +msgstr "" + +#: modules/luci-base/luasrc/view/csrftoken.htm:11 +msgid "The submitted security token is invalid or already expired!" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98 +msgid "" +"The system is erasing the configuration partition now and will reboot itself " +"when finished." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:291 +msgid "" +"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " +"few minutes before you try to reconnect. It might be necessary to renew the " +"address of your computer to reach the device again, depending on your " +"settings." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163 +msgid "" +"The system is rebooting now. If the restored configuration changed the " +"current LAN IP address, you might need to reconnect manually." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85 +msgid "The system password has been successfully changed." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317 +msgid "The sysupgrade command failed with code %d" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120 +msgid "" +"The uploaded backup archive appears to be valid and contains the files " +"listed below. Press \"Continue\" to restore the backup and reboot, or " +"\"Cancel\" to abort the operation." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115 +msgid "The uploaded backup archive is not readable" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244 +msgid "The uploaded firmware does not allow keeping current configuration." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239 +msgid "" +"The uploaded image file does not contain a supported format. Make sure that " +"you choose the generic image format for your platform." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 +msgid "There are no active leases" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:4268 +msgid "There are no changes to apply" +msgstr "" + +#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213 +#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:56 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:282 +msgid "" +"There is no password set on this router. Please configure a root password to " +"protect the web interface." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49 +msgid "This IPv4 address of the relay" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551 +msgid "This authentication type is not applicable to the selected EAP method." +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57 +msgid "This does not look like a valid PEM file" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256 +msgid "" +"This file may contain lines like 'server=/domain/1.2.3.4' or " +"'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain " +"Name System\">DNS</abbr> servers." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 +msgid "" +"This is a list of shell glob patterns for matching files and directories to " +"include during sysupgrade. Modified files in /etc/config/ and certain other " +"configurations are automatically preserved." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81 +msgid "" +"This is either the \"Update Key\" configured for the tunnel or the account " +"password if no update key has been configured" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116 +msgid "" +"This is the content of /etc/rc.local. Insert your own commands here (in " +"front of 'exit 0') to execute them at the end of the boot process." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54 +msgid "" +"This is the local endpoint address assigned by the tunnel broker, it usually " +"ends with <code>...:2/64</code>" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173 +msgid "" +"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" +"abbr> in the local network" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 +msgid "This is the plain username for logging into the account" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57 +msgid "" +"This is the prefix routed to you by the tunnel broker for use by clients" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28 +msgid "This is the system crontab in which scheduled tasks can be defined." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50 +msgid "" +"This is usually the address of the nearest PoP operated by the tunnel broker" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65 +msgid "" +"This list gives an overview over currently running system processes and " +"their status." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563 +msgid "" +"This option cannot be used because the ca-bundle package is not installed." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:2205 +#: modules/luci-base/htdocs/luci-static/resources/form.js:2511 +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 +#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 +msgid "This section contains no values yet" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110 +msgid "Time Synchronization" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093 +msgid "Time interval for rekeying GTK" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124 +msgid "Timezone" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 +msgid "To login…" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372 +msgid "" +"To restore configuration files, you can upload a previously generated backup " +"archive here. To reset the firmware to its initial state, click \"Perform " +"reset\" (only possible with squashfs images)." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907 +msgid "Tone" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35 +msgid "Total Available" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113 +msgid "Traceroute" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:96 +msgid "Traffic" +msgstr "" + +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 +#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 +msgid "Traffic Class" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 +msgid "Transfer" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24 +msgid "Transmit" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317 +msgid "Transmit Hash Policy" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74 +msgid "Trigger" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19 +msgid "Trigger Mode" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69 +msgid "Tunnel ID" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2886 +#: modules/luci-compat/luasrc/model/network.lua:1431 +msgid "Tunnel Interface" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76 +msgid "Tunnel Link" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185 +msgid "Tx-Power" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:61 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43 +msgid "Type" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:326 +msgid "UDP:" +msgstr "" + +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:90 +msgid "UMTS only" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_3g.lua:10 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43 +msgid "UMTS/GPRS/EV-DO" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 +msgid "UUID" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:16 +#: modules/luci-base/htdocs/luci-static/resources/network.js:17 +#: modules/luci-compat/luasrc/model/network.lua:34 +#: modules/luci-compat/luasrc/model/network.lua:35 +msgid "Unable to determine device name" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:18 +#: modules/luci-compat/luasrc/model/network.lua:36 +msgid "Unable to determine external IP address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:19 +#: modules/luci-compat/luasrc/model/network.lua:37 +msgid "Unable to determine upstream interface" +msgstr "" + +#: modules/luci-base/luasrc/view/error404.htm:11 +msgid "Unable to dispatch" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15 +msgid "Unable to load log data:" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 +#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 +#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 +msgid "Unable to obtain client ID" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221 +msgid "Unable to obtain mount information" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:278 +msgid "Unable to reset ip6tables counters: %s" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276 +msgid "Unable to reset iptables counters: %s" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7 +msgid "Unable to resolve AFTR host name" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:20 +#: modules/luci-compat/luasrc/model/network.lua:38 +msgid "Unable to resolve peer host name" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:284 +msgid "Unable to restart firewall: %s" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:342 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57 +msgid "Unable to save contents: %s" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +msgid "Unavailable Seconds (UAS)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/fs.js:102 +msgid "Unexpected reply data format" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:1983 +#: modules/luci-compat/luasrc/model/network.lua:971 +msgid "Unknown" +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2292 +#: modules/luci-compat/luasrc/model/network.lua:1138 +msgid "Unknown error (%s)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +msgid "Unknown error code" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:1980 +#: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6 +#: modules/luci-compat/luasrc/model/network.lua:965 +msgid "Unmanaged" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217 +msgid "Unmount" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:112 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:259 +msgid "Unnamed key" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3973 +msgid "Unsaved Changes" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +msgid "Unspecified error" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9 +msgid "Unsupported MAP type" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27 +msgid "Unsupported modem" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:267 +msgid "Unsupported protocol type." +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151 +msgid "Up" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410 +msgid "Up Delay" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3860 +msgid "Upload" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:413 +msgid "" +"Upload a sysupgrade-compatible image here to replace the running firmware." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384 +msgid "Upload archive..." +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2816 +msgid "Upload file" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2791 +msgid "Upload file…" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:2738 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3848 +msgid "Upload request failed: %s" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3767 +#: modules/luci-base/htdocs/luci-static/resources/ui.js:3821 +msgid "Uploading file…" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:737 +msgid "" +"Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be " +"assigned with a name in the form <em>wifinet#</em> and the network will be " +"restarted to apply the updated configuration." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60 +msgid "Uptime" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177 +msgid "Use <code>/etc/ethers</code>" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269 +msgid "Use DHCP advertised servers" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167 +msgid "Use DHCP gateway" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:64 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:77 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:100 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:69 +msgid "Use DNS servers advertised by peer" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:565 +msgid "Use ISO/IEC 3166 alpha2 country codes." +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:56 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:97 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:77 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:61 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:75 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:92 +msgid "Use MTU on tunnel interface" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:93 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:73 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:57 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88 +msgid "Use TTL on tunnel interface" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320 +msgid "Use XOR of hardware MAC addresses (layer2)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321 +msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323 +msgid "" +"Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect " +"(encap2+3)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294 +msgid "Use as external overlay (/overlay)" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293 +msgid "Use as root filesystem (/)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +msgid "Use broadcast flag" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860 +msgid "Use builtin IPv6-management" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:62 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:106 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:93 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:67 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:80 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:103 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72 +msgid "Use custom DNS servers" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:61 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:74 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:97 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61 +msgid "Use default gateway" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 +#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:88 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:68 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:52 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:70 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:72 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:85 +#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:108 +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:64 +msgid "Use gateway metric" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + +#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 +msgid "Use routing table" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498 +msgid "Use system certificates" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556 +msgid "Use system certificates for inner-tunnel" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +msgid "" +"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" +"em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " +"address to use, and the <em>Hostname</em> is assigned as a symbolic name to " +"the requesting host. The optional <em>Lease time</em> can be used to set non-" +"standard host-specific lease time, e.g. 12h, 3d or infinite." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322 +msgid "Use upper layer protocol information (layer3+4)" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324 +msgid "" +"Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)" +msgstr "" + +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194 +msgid "Used" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394 +msgid "Used Key Slot" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437 +msgid "" +"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " +"needed with normal WPA(2)-PSK." +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105 +msgid "User Group" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 +msgid "User certificate (PEM encoded)" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126 +msgid "User key (PEM encoded)" +msgstr "" + +#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 +msgid "Username" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975 +msgid "VC-Mux" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923 +msgid "VDSL" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173 +msgid "VLANs on %q" +msgstr "" + +#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54 +msgid "VPN" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42 +msgid "VPN Local address" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46 +msgid "VPN Local port" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 +msgid "VPN Server" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 +msgid "VPN Server port" +msgstr "" + +#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 +msgid "VPN Server's certificate SHA1 hash" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9 +msgid "VPNC (CISCO 3000 (and others) VPN)" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 +msgid "VXLAN (RFC7348)" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53 +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48 +msgid "VXLAN network identifier" +msgstr "" + +#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10 +msgid "VXLANv6 (RFC7348)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556 +msgid "" +"Validate server certificate using built-in system CA bundle,<br />requires " +"the \"ca-bundle\" package" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387 +msgid "Validation for all slaves" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385 +msgid "Validation only for active slave" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386 +msgid "Validation only for backup slaves" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154 +msgid "Value must not be empty" +msgstr "" + +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73 +msgid "Vendor" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 +msgid "Vendor Class to send when requesting DHCP" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196 +msgid "Verifying the uploaded image file." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:59 +msgid "Virtual dynamic interface" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 +msgid "WDS" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1217 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306 +msgid "WEP Open System" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1218 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307 +msgid "WEP Shared Key" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931 +msgid "WEP passphrase" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1070 +msgid "WMM Mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931 +msgid "WPA passphrase" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1208 +msgid "" +"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " +"and ad-hoc mode) to be installed." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +msgid "Waiting for device..." +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178 +msgid "Warning" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 +msgid "Warning: There are unsaved changes that will get lost on reboot!" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37 +msgid "Weak" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460 +msgid "" +"When using a PSK, the PMK can be automatically generated. When enabled, the " +"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " +"key options." +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:468 +msgid "Width" +msgstr "" + +#: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9 +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29 +msgid "WireGuard VPN" +msgstr "" + +#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:87 +#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105 +msgid "Wireless" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2874 +#: modules/luci-compat/luasrc/model/network.lua:1419 +msgid "Wireless Adapter" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/network.js:2853 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 +#: modules/luci-compat/luasrc/model/network.lua:1405 +#: modules/luci-compat/luasrc/model/network.lua:1868 +msgid "Wireless Network" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753 +msgid "Wireless Overview" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922 +msgid "Wireless Security" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:735 +msgid "Wireless configuration migration" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:47 +msgid "Wireless is disabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:47 +msgid "Wireless is not associated" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877 +msgid "Wireless network is disabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877 +msgid "Wireless network is enabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 +msgid "Write received DNS requests to syslog" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:160 +msgid "Write system log to file" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204 +msgid "XOR policy (balance-xor, 2)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:3643 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295 +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344 +#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 +msgid "Yes" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303 +msgid "Yes (none, 0)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176 +msgid "" +"You appear to be currently connected to the device via the \"%h\" interface. " +"Do you really want to shut down the interface?" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112 +msgid "" +"You can enable or disable installed init scripts here. Changes will applied " +"after a device reboot.<br /><strong>Warning: If you disable essential init " +"scripts like \"network\", your device might become inaccessible!</strong>" +msgstr "" + +#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223 +#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:294 +msgid "" +"You must enable JavaScript in your browser or LuCI will not work properly." +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115 +msgid "" +"You must select a primary interface which is included in selected slave " +"interfaces!" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96 +msgid "" +"You must select at least one ARP IP target if ARP monitoring is selected!" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192 +msgid "ZRam Compression Algorithm" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199 +msgid "ZRam Compression Streams" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185 +msgid "ZRam Settings" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187 +msgid "ZRam Size" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 +msgid "any" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:908 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:921 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157 +#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51 +#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:103 +msgid "auto" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +msgid "automatic" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82 +msgid "baseT" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981 +msgid "bridged" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99 +#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31 +msgid "create" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69 +msgid "create:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:173 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:174 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:178 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:179 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:261 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:264 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:267 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:271 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:274 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:277 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:303 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:304 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315 +msgid "dBm" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014 +msgid "disable" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:626 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:638 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91 +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25 +msgid "disabled" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553 +msgid "driver default" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 +msgid "e.g: --proxy 10.10.10.10" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 +msgid "e.g: dump" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 +msgid "expired" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182 +msgid "" +"file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" +"abbr>-leases will be stored" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61 +msgid "forward" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84 +msgid "full-duplex" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84 +msgid "half-duplex" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:569 +msgid "hexadecimal encoded value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1738 +msgid "hidden" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:629 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:640 +msgid "hybrid mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36 +msgid "if target is a network" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63 +msgid "ignore" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46 +msgid "input" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:395 +msgid "key between 8 and 63 characters" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:407 +msgid "key with either 5 or 13 characters" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189 +msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316 +msgid "medium security" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465 +msgid "minutes" +msgstr "" + +#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422 +msgid "netif_carrier_ok()" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46 +msgid "no" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76 +msgid "no link" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:59 +msgid "non-empty value" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:3007 +msgid "none" +msgstr "" + +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69 +msgid "not present" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:905 +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:245 +msgid "off" +msgstr "" + +#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:242 +msgid "on" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317 +msgid "open network" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46 +msgid "output" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:241 +msgid "positive decimal value" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:233 +msgid "positive integer value" +msgstr "" + +#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80 +msgid "random" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:628 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:639 +msgid "relay mode" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982 +msgid "routed" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102 +msgid "sec" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:627 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 +msgid "server mode" +msgstr "" + +#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53 +msgid "sstpc Log-level" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649 +msgid "stateful-only" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:647 +msgid "stateless" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:648 +msgid "stateless + stateful" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315 +msgid "strong security" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352 +msgid "tagged" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448 +msgid "time units (TUs / 1.024 ms) [1000-65535]" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:559 +msgid "unique value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:534 +msgid "unknown" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 +msgid "unlimited" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/form.js:3372 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:428 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:465 +#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:561 +#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53 +#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38 +msgid "unspecified" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71 +msgid "unspecified -or- create:" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350 +msgid "untagged" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:246 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132 +msgid "valid IP address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:246 +msgid "valid IP address or prefix" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:281 +msgid "valid IPv4 CIDR" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:254 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125 +msgid "valid IPv4 address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:254 +msgid "valid IPv4 address or network" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:374 +msgid "valid IPv4 address:port" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:314 +msgid "valid IPv4 network" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:276 +msgid "valid IPv4 or IPv6 CIDR" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:267 +msgid "valid IPv4 prefix value (0-32)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:286 +msgid "valid IPv6 CIDR" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129 +msgid "valid IPv6 address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:262 +msgid "valid IPv6 address or prefix" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:304 +msgid "valid IPv6 host id" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:319 +msgid "valid IPv6 network" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:272 +msgid "valid IPv6 prefix value (0-128)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:340 +msgid "valid MAC address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:411 +msgid "valid UCI identifier" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:362 +msgid "valid UCI identifier, hostname or IP address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:383 +#: modules/luci-base/htdocs/luci-static/resources/validation.js:386 +msgid "valid address:port" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:533 +#: modules/luci-base/htdocs/luci-static/resources/validation.js:537 +msgid "valid date (YYYY-MM-DD)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:237 +msgid "valid decimal value" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:405 +msgid "valid hexadecimal WEP key" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:393 +msgid "valid hexadecimal WPA key" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:368 +msgid "valid host:port" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:355 +#: modules/luci-base/htdocs/luci-static/resources/validation.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107 +msgid "valid hostname" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:345 +msgid "valid hostname or IP address" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:229 +msgid "valid integer value" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:309 +msgid "valid network in address/netmask notation" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:508 +msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:332 +#: modules/luci-base/htdocs/luci-static/resources/validation.js:335 +msgid "valid port or port range (port1-port2)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 +msgid "valid port value" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:513 +msgid "valid time (HH:MM:SS)" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:435 +msgid "value between %d and %d characters" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:416 +msgid "value between %f and %f" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:420 +msgid "value greater or equal to %f" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:424 +msgid "value smaller or equal to %f" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:429 +msgid "value with %d characters" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:440 +msgid "value with at least %d characters" +msgstr "" + +#: modules/luci-base/htdocs/luci-static/resources/validation.js:445 +msgid "value with at most %d characters" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317 +msgid "weak security" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46 +msgid "yes" +msgstr "" + +#: modules/luci-compat/luasrc/view/cbi/delegator.htm:20 +msgid "« Back" +msgstr "« Terug" diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index b186d5264..03e8204a9 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: 2020-09-01 02:24+0000\n" +"PO-Revision-Date: 2020-10-05 18:26+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>" "\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -175,11 +175,11 @@ msgstr "802.11w Interwał ponawiania prób" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "Port wywołania <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "Port serwera <abbr title=\"Domain Name System\">DNS</abbr>" @@ -195,7 +195,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adres <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -219,7 +219,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Brama <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "Sufiks <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>(hex)" @@ -231,15 +231,15 @@ msgstr "Konfiguracja diod <abbr title=\"Light Emitting Diode\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nazwa diody <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Adres <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Unikatowy Identyfikator DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -247,7 +247,7 @@ msgstr "" "<abbr title=\"Maksymalna ilość\">Maks.</abbr> dzierżaw <abbr title=\"Dynamic " "Host Configuration Protocol\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -255,7 +255,7 @@ msgstr "" "<abbr title=\"Maksymalny\">Maks.</abbr> rozmiar pakietu <abbr title=" "\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"Maksymalna ilość\">Maks.</abbr> jednoczesnych zapytań" @@ -271,7 +271,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Katalog o tej samej nazwie już istnieje." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "Wymagane jest ponowne zalogowanie, ponieważ sesja uwierzytelniania wygasła." @@ -413,7 +413,7 @@ msgstr "Aktywne dzierżawy DHCPv6" msgid "Active-Backup policy (active-backup, 1)" msgstr "Zasady Active-Backup (Active-Backup, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -511,6 +511,10 @@ msgstr "Adres" msgid "Address to access local relay bridge" msgstr "Adres dostępowy do \"relay bridge\"" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Adresy" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -609,7 +613,7 @@ msgstr "Zezwól na starsze wersje 802.11b" msgid "Allow listed only" msgstr "Zezwól tylko wymienionym" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Zezwól na localhost" @@ -634,7 +638,7 @@ msgstr "Zezwalaj na sondowanie funkcji systemu" msgid "Allow the <em>root</em> user to login with password" msgstr "Zezwól użytkownikowi <em>root</em> na logowanie się przy pomocy hasła" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -959,7 +963,7 @@ msgstr "" "Zawiera ona zmienione pliki konfiguracyjne oznaczone przez opkg, podstawowe " "pliki systemowe, oraz pliki oznaczone do kopiowania przez użytkownika." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -972,6 +976,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -982,6 +987,7 @@ msgstr "Interfejs wiązań" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1217,13 +1223,13 @@ msgstr "" "Kliknij \"Zapisz mtdblock\", aby pobrać określony plik mtdblock. (UWAGA: " "FUNKCJA DLA PROFESJONALISTÓW!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Klient" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Nazwa (ID) klienta do wysłania podczas negocjacji DHCP" @@ -1264,7 +1270,7 @@ msgstr "Trwa zbieranie danych..." msgid "Command" msgstr "Polecenie" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Polecenie OK" @@ -1336,7 +1342,7 @@ msgstr "Próba połączenia nieudana" msgid "Connection attempt failed." msgstr "Próba połączenia nieudana." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Utrata połączenia" @@ -1586,7 +1592,7 @@ msgid "" "servers to clients." msgstr "" "Zdefiniuj dodatkowe opcje DHCP, np. \"<code>6,192.168.2.1,192.168.2.2</code>" -"\" rozgłasza domyślne serwery DNS klientom DHCP." +"\" które są rozgłaszane na serwery DNS klientów." #: modules/luci-base/htdocs/luci-static/resources/form.js:2237 #: modules/luci-base/htdocs/luci-static/resources/form.js:2662 @@ -1678,7 +1684,7 @@ msgstr "Urządzenie nie jest zarządzane przez ModemManager." msgid "Device unreachable!" msgstr "Urządzenie nieosiągalne!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Urządzenie nieosiągalne! Wciąż czekam na urządzenie..." @@ -1741,7 +1747,7 @@ msgstr "Wyłączone" msgid "Disassociate On Low Acknowledgement" msgstr "Rozłączaj przy niskim stanie ramek ACK" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Odrzuć wychodzące odpowiedzi RFC1918" @@ -1811,6 +1817,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "Nie wysyłaj nazwy hosta" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Czy jesteś pewien, że chcesz usunąć \"%s\" ?" @@ -1833,7 +1843,7 @@ msgstr "" msgid "Domain required" msgstr "Wymagana domena" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Białe listy (Dozwolone domeny)" @@ -1911,8 +1921,8 @@ msgid "" "Dynamically allocate DHCP addresses for clients. If disabled, only clients " "having static leases will be served." msgstr "" -"Dynamicznie rezerwuje adresy DHCP dla klientów. Jeśli jest wyłączone tylko " -"klienci posiadający stałe dzierżawy będą obsłużeni." +"Rezerwuje adresy DHCP klientów. Jeśli wyłączone tylko klienci posiadający " +"stałe dzierżawy będą obsłużeni." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67 msgid "EA-bits length" @@ -1942,7 +1952,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842 msgid "Edit this network" -msgstr "Edytuj tą sieć" +msgstr "Edytuj tę sieć" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793 msgid "Edit wireless network" @@ -2008,7 +2018,7 @@ msgstr "Włącz klienta NTP" msgid "Enable Single DES" msgstr "Zezwól na Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Włącz serwer TFTP" @@ -2155,7 +2165,7 @@ msgstr "Co 30 sekund (powoli, 0)" msgid "Every second (fast, 1)" msgstr "Co sekundę (szybko, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Wyklucz interfejsy" @@ -2265,7 +2275,7 @@ msgstr "Plik niedostępny" msgid "Filename" msgstr "Nazwa pliku" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Rozgłaszana nazwa pliku obrazu startowego do klientów" @@ -2343,7 +2353,7 @@ msgstr "Plik firmware" msgid "Firmware Version" msgstr "Wersja firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Stały port źródłowy dla wychodzących zapytań DNS" @@ -2707,7 +2717,7 @@ msgid "Host-Uniq tag content" msgstr "Zawartość znacznika Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2992,7 +3002,7 @@ msgstr "" "Jeśli podano, zainstaluj urządzenie poprzez nazwę partycji zamiast <abbr " "title=\"fixed device node\">ustalonego węzła urządzenia</abbr>" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3003,6 +3013,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3013,10 +3024,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Jeśli odznaczone, nie ma zdefiniowanej domyślnej trasy" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3110,7 +3122,7 @@ msgstr "Informacja" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101 msgid "Information" -msgstr "Informacja" +msgstr "Informacje" #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25 @@ -3252,7 +3264,7 @@ msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko ID pomiędzy %d a %d msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko unikalne ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Błędny argument" @@ -3264,7 +3276,7 @@ msgstr "" "Nieprawidłowa lista nośna. Być może zbyt wielu okazicieli zostało " "stworzonych. Ten protokół obsługuje jedną nośną i tylko jednego okaziciela." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Nieprawidłowe polecenie" @@ -3417,7 +3429,7 @@ msgstr "Opoźnienie" msgid "Leaf" msgstr "Karta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Czas dzierżawy" @@ -3454,12 +3466,12 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Ogranicz usługi DNS do podsieci interfejsów, na których obsługujemy DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Ogranicz nasłuchiwanie do tych interfesjów, oraz loopbacku." @@ -3531,15 +3543,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista kluczy SSH do autoryzacji" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Lista domen zezwalających na odpowiedzi RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "Lista wymuszonych domen na adres IP." + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Lista hostów które dostarczają zafałszowane wyniki NX domain" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Nasłuchuj interfejs" @@ -3552,7 +3568,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Słuchaj tylko na podanym interfejsie, lub jeśli nie podano na wszystkich" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Port nasłuchu dla przychodzących zapytań DNS" @@ -3575,6 +3591,10 @@ msgstr "Ładowanie zawartości katalogu.…" msgid "Loading view…" msgstr "Ładowanie widoku…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Lokalny adres IP" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3603,7 +3623,7 @@ msgstr "Lokalny adres IPv4" msgid "Local IPv6 address" msgstr "Lokalny adres IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Tylko serwis lokalny" @@ -3788,7 +3808,7 @@ msgstr "" msgid "Manual" msgstr "Podręcznik" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Główny" @@ -3801,15 +3821,15 @@ msgstr "Max. Osiągalna przepustowość danych (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Maksymalny dozwolony odstęp czasu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Maksymalna dozwolona liczba aktywnych dzierżaw DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Maksymalna dozwolona liczba jednoczesnych zapytań DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Maksymalny dozwolony rozmiar pakietu EDNS.0 UDP" @@ -3850,7 +3870,7 @@ msgstr "Pamięć" msgid "Memory usage (%)" msgstr "Użycie RAM" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3862,7 +3882,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh Id" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Nie znaleziono metody" @@ -3962,7 +3982,7 @@ msgstr "Modem jest wyłączony." msgid "ModemManager" msgstr "Menedżer modemu" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4094,7 +4114,7 @@ msgstr "Sieć" msgid "Network Utilities" msgstr "Narzędzia sieciowe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Sieciowy obraz startowy" @@ -4155,7 +4175,7 @@ msgstr "Brak sygnału RX" msgid "No client associated" msgstr "Brak powiązanego klienta" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Nie otrzymano danych" @@ -4249,7 +4269,7 @@ msgstr "Szum:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nieprzewidziane błedy CRC (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Bez symboli wieloznacznych" @@ -4287,7 +4307,7 @@ msgstr "Nieobecny" msgid "Not started on boot" msgstr "Nie uruchomiony przy starcie" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Nie wspierane" @@ -4303,7 +4323,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Liczba raportów członkowskich IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Liczba buforowanych wpisów DNS (max wynosi 10000, 0 oznacza brak pamięci " @@ -4357,7 +4377,7 @@ msgstr "Trasa łącza" msgid "On-State Delay" msgstr "Zwłoka połączenia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Nazwa hosta lub adres MAC musu być podany!" @@ -4396,6 +4416,10 @@ msgstr "Otwórz listę..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "OpenFortivpn" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Częstotliwość" @@ -4536,7 +4560,7 @@ msgstr "Interfejs wyjściowy" msgid "Output zone" msgstr "Strefa wyjściowa" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4545,7 +4569,7 @@ msgstr "Strefa wyjściowa" msgid "Override MAC address" msgstr "Nadpisz adres MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4735,6 +4759,7 @@ msgstr "Część strefy %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Hasło" @@ -4790,7 +4815,7 @@ msgstr "Ścieżka do wewnętrznego certyfikatu Klienta" msgid "Path to inner Private Key" msgstr "Ścieżka do wewnętrznego klucza prywatnego" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Wstrzymano" @@ -4832,7 +4857,7 @@ msgstr "Doskonałe tajne przekazywanie" msgid "Perform outgoing packets serialization (optional)." msgstr "Wykonaj serializację wychodzących pakietów (opcjonalnie)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Wykonaj restart" @@ -4840,7 +4865,7 @@ msgstr "Wykonaj restart" msgid "Perform reset" msgstr "Wykonaj reset" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Odmowa zezwolenia" @@ -4932,7 +4957,7 @@ msgstr "" "Przypuszczaj że klient może być martwy po zadanej ilości błedów echa LCP, " "wpisz 0 aby zignorować te błędy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Zapobiegaj nasłuchiwaniu na tych interfejsach." @@ -5116,23 +5141,23 @@ msgstr "Wykresy rzeczywiste" msgid "Reassociation Deadline" msgstr "Termin reasocjacji" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Przypisz ochronę" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Restart urządzenia" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Restartowanie…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Uruchamia ponownie system na twoim urządzeniu" @@ -5152,7 +5177,7 @@ msgstr "Połącz ponownie ten interfejs" msgid "References" msgstr "Referencje" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Odświeżanie" @@ -5212,7 +5237,7 @@ msgstr "Zażądaj adresu IPv6" msgid "Request IPv6-prefix of length" msgstr "Zażądaj długość prefiksu IPv6" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Limit czasu żądania" @@ -5234,7 +5259,7 @@ msgstr "Wymagaj serializacji pakietów przychodzących (opcjonalnie)." msgid "Required" msgstr "Wymagany" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Wymagany dla niektórych dostawców internetu, np. Charter z DOCSIS 3" @@ -5363,7 +5388,7 @@ msgstr "Pliki Resolv i Hosts" msgid "Resolve file" msgstr "Plik Resolve" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Nie znaleziono zasobu" @@ -5410,7 +5435,7 @@ msgstr "Żądanie powrotu nie powiodło się ze statusem <code>%h</code>" msgid "Reverting configuration…" msgstr "Przywracanie konfiguracji…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Katalog główny dla plików udostępnianych przez TFTP" @@ -5608,6 +5633,10 @@ msgstr "" "Wysyłaj żądania echa LCP w określonym przedziale czasowym, efektywne tylko " "wtedy gdy jest ustawiony próg błedu LCP" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "Wyślij nazwę hosta tego urządzenia" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Ustawienia serwera" @@ -5625,7 +5654,7 @@ msgstr "Typ serwisu" msgid "Services" msgstr "Usługi" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Sesja wygasła" @@ -5727,7 +5756,7 @@ msgstr "Sygnał:" msgid "Size" msgstr "Rozmiar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Rozmiar pamięci podręcznej zapytań DNS" @@ -5853,10 +5882,9 @@ msgid "" "on regulatory requirements and wireless usage, the actual transmit power may " "be reduced by the driver." msgstr "" -"Określa maksymalną moc nadawania, z której może korzystać radio " -"bezprzewodowe. W zależności od wymagań regulacyjnych i użycia sieci " -"bezprzewodowej, faktyczna moc transmisji może zostać zmniejszona przez " -"sterownik." +"Określa maksymalną moc nadawania, z której może korzystać radio. W " +"zależności od wymagań regulacyjnych i użycia sieci bezprzewodowej, faktyczna " +"moc transmisji może zostać zmniejszona przez sterownik." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236 msgid "" @@ -6111,7 +6139,7 @@ msgstr "Statyczne trasy" msgid "Static address" msgstr "Stały adres" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6243,7 +6271,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Ustawienia TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Katalog główny serwera TFTP" @@ -6460,7 +6488,7 @@ msgstr "" "portami sieci lokalnej." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Polecenie restartu nie powiodło się z kodem %d" @@ -6536,8 +6564,8 @@ msgstr "" "Przesłany plik obrazu nie zawiera obsługiwanego formatu. Upewnij się, że " "wybrałeś odpowiedni format obrazu dla danej platformy." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6681,7 +6709,7 @@ msgstr "Odstęp czasowy dla wznowienia kluczy GTK" msgid "Timezone" msgstr "Strefa czasowa" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Zaloguj się…" @@ -6800,7 +6828,7 @@ msgstr "Nie można ustalić zewnętrznego adresu IP" msgid "Unable to determine upstream interface" msgstr "Nie można określić interfejsu źródłowego" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Nie można wysłać" @@ -6869,7 +6897,7 @@ msgstr "Nieznana i nieobsługiwana metoda połączenia." msgid "Unknown error (%s)" msgstr "Nieznany błąd (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Nieznany kod błędu" @@ -6893,7 +6921,7 @@ msgstr "Klucz beznazwy" msgid "Unsaved Changes" msgstr "Niezapisane zmiany" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Nieokreślony błąd" @@ -6979,10 +7007,11 @@ msgstr "Użyj dedykowanych serwerów DHCP" msgid "Use DHCP gateway" msgstr "Użyj bramy DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7037,7 +7066,7 @@ msgstr "Użyj jako zewnętrzną nakładkę (/overlay)" msgid "Use as root filesystem (/)" msgstr "Użyj jako systemu plików root (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Użyj flagi rozgłaszania" @@ -7045,7 +7074,7 @@ msgstr "Użyj flagi rozgłaszania" msgid "Use builtin IPv6-management" msgstr "Skorzystaj z wbudowanego zarządzania protokołem IPv6" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7060,9 +7089,10 @@ msgstr "Skorzystaj z wbudowanego zarządzania protokołem IPv6" msgid "Use custom DNS servers" msgstr "Użyj własnych serwerów DNS" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7073,7 +7103,7 @@ msgstr "Użyj własnych serwerów DNS" msgid "Use default gateway" msgstr "Użyj domyślnej bramy" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7084,6 +7114,7 @@ msgstr "Użyj domyślnej bramy" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7094,6 +7125,18 @@ msgstr "Użyj domyślnej bramy" msgid "Use gateway metric" msgstr "Użyj metryki bramy" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "Użyj starszej wersji MAP" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" +"Użyj starszego formatu identyfikatora interfejsu MAP (draft-ietf-softwire-" +"map-00) zamiast RFC7597" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Użyj tabeli trasowania" @@ -7106,7 +7149,7 @@ msgstr "Użyj certyfikatów systemowych" msgid "Use system certificates for inner-tunnel" msgstr "Użyj certyfikatów systemowych dla tunelu wewnętrznego" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7164,6 +7207,7 @@ msgstr "Klucz użytkownika (zakodowany PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nazwa użytkownika" @@ -7193,16 +7237,19 @@ msgid "VPN Local port" msgstr "Port lokalny VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Serwer VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Port serwera VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Hash SHA1 certyfikatu serwera VPN" @@ -7253,7 +7300,7 @@ msgstr "Wartość nie może być pusta" msgid "Vendor" msgstr "Producent" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Klasa producenta do wysłania podczas żądania DHCP" @@ -7300,7 +7347,7 @@ msgstr "" "Kodowanie WPA wymaga zainstalowanych modułów wpa_supplicant (tryb klienta) " "lub hostapd (tryb AP lub ad-hoc)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Oczekiwanie na urządzenie..." @@ -7309,7 +7356,7 @@ msgstr "Oczekiwanie na urządzenie..." msgid "Warning" msgstr "Ostrzeżenie" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Ostrzeżenie: Istnieją niezapisane zmiany, które zostaną utracone po ponownym " @@ -7351,7 +7398,7 @@ msgid "Wireless Adapter" msgstr "Adapter bezprzewodowy" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7471,7 +7518,7 @@ msgstr "Ustawienia ZRam" msgid "ZRam Size" msgstr "Rozmiar ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "dowolny" @@ -7570,8 +7617,8 @@ msgstr "np.: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "np: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7764,9 +7811,9 @@ msgstr "unikalna wartość" msgid "unknown" msgstr "nieznane" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index 40338cff6..697a1f170 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -3,7 +3,7 @@ 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: 2020-09-07 10:27+0000\n" +"PO-Revision-Date: 2020-10-14 08:09+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/luci/" "pt/>\n" @@ -177,12 +177,12 @@ msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" "Porta de consulta do <abbr title=\"Servidor de Nomes de Domínio\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" "Porta do servidor <abbr title=\"Servidor de Nomes de Domínio\">DNS</abbr>" @@ -200,7 +200,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Endereço <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>" @@ -226,7 +226,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Gateway <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "Sufixo (hex) <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" @@ -239,15 +239,15 @@ msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nome do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Endereço <abbr title=\"Controle de Acesso ao Meio\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Identificador Único do DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -255,7 +255,7 @@ msgstr "" "<abbr title=\"Máximo\">Max.</abbr> de concessões<abbr title=\"Protocolo de " "Configuracao Dinamica de Hosts\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -263,7 +263,7 @@ msgstr "" "Tamanho <abbr title=\"Máximo\">max.</abbr> do pacote <abbr title=" "\"Mecanismos de Extensão para Sistemas de Nomes de Domínio\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"máximo\">Max.</abbr> de consultas concorrentes" @@ -279,7 +279,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Já existe um diretório com o mesmo nome." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Um novo login é necessário visto que a sessão de autenticação expirou." @@ -419,7 +419,7 @@ msgstr "Concessões DHCPv6 Ativas" msgid "Active-Backup policy (active-backup, 1)" msgstr "Política de Backup Ativo (backup ativo, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -517,6 +517,10 @@ msgstr "Endereço" msgid "Address to access local relay bridge" msgstr "Endereço para acesso à ponte de retransmissão local" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Endereços" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -618,7 +622,7 @@ msgstr "Permitir taxas antigas 802.11b" msgid "Allow listed only" msgstr "Permitir somente os listados" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Permitir localhost" @@ -643,7 +647,7 @@ msgstr "Permitir a sondagem de características do sistema" msgid "Allow the <em>root</em> user to login with password" msgstr "Permitir que o utilizador <em>root</em> faça login com password" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -969,7 +973,7 @@ msgstr "" "configuração alterados e marcados pelo opkg, ficheiros base essenciais e " "padrões de backup definidos pelo utilizador." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -982,6 +986,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -992,6 +997,7 @@ msgstr "Ligar à interface" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1228,13 +1234,13 @@ msgstr "" "Clique em \"Gravar o bloco mtd\" para descarregar o ficheiro do bloco mtd " "especificado. (NOTA: ESTE RECURSO É PARA PROFISSIONAIS!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Cliente" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "ID de cliente a enviar para pedidos de DHCP" @@ -1275,7 +1281,7 @@ msgstr "A recolher dados..." msgid "Command" msgstr "Comando" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Comando OK" @@ -1347,7 +1353,7 @@ msgstr "A tentativa de ligação falhou" msgid "Connection attempt failed." msgstr "A tentativa de ligação falhou." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Ligação perdida" @@ -1693,7 +1699,7 @@ msgstr "Aparelho não gerido pelo ModemManager." msgid "Device unreachable!" msgstr "Aparelho não alcançável!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "O aparelho está fora de alcance! Ainda à espera do aparelho..." @@ -1756,7 +1762,7 @@ msgstr "Desativado" msgid "Disassociate On Low Acknowledgement" msgstr "Desassociar quando tiver baixa confirmação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Descartar respostas RFC1918 a montante" @@ -1826,6 +1832,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Não encaminhar lookups reversos para as redes locais" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "Não envie um nome de host" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Quer mesmo apagar \"%s\"?" @@ -1846,7 +1856,7 @@ msgstr "Deseja mesmo apagar recursivamente o diretório \"%s\"?" msgid "Domain required" msgstr "Domínio requerido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Lista Branca do Domínio" @@ -2022,7 +2032,7 @@ msgstr "Ativar o cliente NTP" msgid "Enable Single DES" msgstr "Ativar DES Único" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Ativar o servidor TFTP" @@ -2169,7 +2179,7 @@ msgstr "A cada 30 segundos (lento, 0)" msgid "Every second (fast, 1)" msgstr "A cada segundo (rápido, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Excluir interfaces" @@ -2281,7 +2291,7 @@ msgstr "Ficheiro não acessível" msgid "Filename" msgstr "Nome do ficheiro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Nome de ficheiro da imagem de boot a anunciar aos clientes" @@ -2359,7 +2369,7 @@ msgstr "Ficheiro de Firmware" msgid "Firmware Version" msgstr "Versão do Firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Porta fixa de origem para saída dos pedidos DNS" @@ -2727,7 +2737,7 @@ msgid "Host-Uniq tag content" msgstr "Conteúdo da etiqueta Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -3011,7 +3021,7 @@ msgstr "" "Se especificado, monta o aparelho pela etiqueta da partição ao invés de um " "nó de aparelho fixo" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3022,6 +3032,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3032,10 +3043,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Se desmarcado, não é configurada uma rota pré-definida" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3272,7 +3284,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "O ID de VLAN fornecido é inválido! Só IDs únicos são permitidos" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Argumento inválido" @@ -3284,7 +3296,7 @@ msgstr "" "Lista de portadores inválidos. Possivelmente, demasiados portadores foram " "criados. Este protocolo suporta apenas um portador." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Comando inválido" @@ -3437,7 +3449,7 @@ msgstr "Latência" msgid "Leaf" msgstr "Folha" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Tempo de concessão" @@ -3474,13 +3486,13 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Limitar o serviço DNS para subredes das interfaces nas quais está a ser " "servido DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Escutar apenas nestas interfaces, e na loopback." @@ -3552,17 +3564,21 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de ficheiros de chaves SSH para autenticação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Lista de dominios que permitem respostas RFC1918 para" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "Lista de domínios a forçar para um endereço IP." + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" "Lista de servidores <abbr title=\"Domain Name System\">DNS</abbr> que " "fornecem resultados errados para consultas a domínios inexistentes (NX)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Interfaces de Escuta" @@ -3575,7 +3591,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Escutar apenas na interface fornecida ou, se não especificada, em todas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Porta de escuta para entrada de consultas DNS" @@ -3598,6 +3614,10 @@ msgstr "Carregando o conteúdo do diretório…" msgid "Loading view…" msgstr "Carregando visualização…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Endereço IP local" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3626,7 +3646,7 @@ msgstr "Endereço IPv4 Local" msgid "Local IPv6 address" msgstr "Endereço IPv6 Local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Somente Serviço Local" @@ -3814,7 +3834,7 @@ msgstr "" msgid "Manual" msgstr "Manual" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Mestre" @@ -3829,15 +3849,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Intervalo de Escuta máximo permitido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Quantidade máxima permitida de concessões DHCP ativas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Quantidade máxima permitida de consultas DNS permitidas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Tamanho máximo permitido dos pacotes UDP EDNS.0" @@ -3879,7 +3899,7 @@ msgstr "Memória" msgid "Memory usage (%)" msgstr "Uso de memória (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3891,7 +3911,7 @@ msgstr "ID de Mesh" msgid "Mesh Id" msgstr "Id de Mesh" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Método não encontrado" @@ -3991,7 +4011,7 @@ msgstr "O modem está desativado." msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4123,7 +4143,7 @@ msgstr "Rede" msgid "Network Utilities" msgstr "Ferramentas de Rede" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Imagem de arranque via rede" @@ -4184,7 +4204,7 @@ msgstr "Sem sinal RX" msgid "No client associated" msgstr "Nenhum cliente associado" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Nenhuns dados recebidos" @@ -4282,7 +4302,7 @@ msgstr "" "Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</" "abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Sem caracter curinga" @@ -4320,7 +4340,7 @@ msgstr "Não presente" msgid "Not started on boot" msgstr "Não iniciado na inicialização" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Não suportado" @@ -4336,7 +4356,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Quantidade de relatórios associados ao IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Quantidade de entradas DNS em cache (máximo é 10000, 0 desativa o cache)" @@ -4389,7 +4409,7 @@ msgstr "Rota On-Link" msgid "On-State Delay" msgstr "Atraso do On-State" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Um nome de host ou endereço MAC deve ser especificado!" @@ -4428,6 +4448,10 @@ msgstr "Abrir lista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "OpenFortivpn" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Frequência de Operação" @@ -4569,7 +4593,7 @@ msgstr "Interface de Saída" msgid "Output zone" msgstr "Zona de saída" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4578,7 +4602,7 @@ msgstr "Zona de saída" msgid "Override MAC address" msgstr "Sobrescrever o endereço MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4770,6 +4794,7 @@ msgstr "Parte da zona %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Palavra-passe" @@ -4825,7 +4850,7 @@ msgstr "Caminho para o Certificado do Cliente interno" msgid "Path to inner Private Key" msgstr "Caminho para a Chave Privada interna" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Pausado" @@ -4867,7 +4892,7 @@ msgstr "Sigilo Encaminhado Perfeito" msgid "Perform outgoing packets serialization (optional)." msgstr "Realizar a serialização dos pacotes na saída (opcional)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Executar reinicialização" @@ -4875,7 +4900,7 @@ msgstr "Executar reinicialização" msgid "Perform reset" msgstr "Executar reset" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Permissão negada" @@ -4968,7 +4993,7 @@ msgstr "" "Assumir que o parceiro está morto depois de uma data quantidade de falhas de " "echo do LCP. Use 0 para ignorar as falhas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Evite escutar nestas Interfaces." @@ -5150,23 +5175,23 @@ msgstr "Gráficos em Tempo Real" msgid "Reassociation Deadline" msgstr "Limite para Reassociação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Religar protecção" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reiniciar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "A reiniciar…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Reinicia o seu aparelho" @@ -5186,7 +5211,7 @@ msgstr "Reconetar esta interface" msgid "References" msgstr "Referências" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Atualizando" @@ -5246,7 +5271,7 @@ msgstr "Solicita endereço IPv6" msgid "Request IPv6-prefix of length" msgstr "Solicita prefixo IPv6 de tamanho" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Tempo limite do pedido" @@ -5268,7 +5293,7 @@ msgstr "Exigir a serialização dos pacotes na entrada (opcional)." msgid "Required" msgstr "Necessário" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Necessário para certos ISPs, p.ex. Charter with DOCSIS 3" @@ -5398,7 +5423,7 @@ msgstr "Ficheiros Resolv e Hosts" msgid "Resolve file" msgstr "Resolver ficheiro" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Recurso não encontrado" @@ -5446,7 +5471,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "Revertendo configurações…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Diretório raiz para ficheiros disponibilizados pelo TFTP" @@ -5644,6 +5669,10 @@ msgstr "" "Enviar requisições de eco do LCP no dado intervalo em segundos. Somente " "efetivo em conjunto com o limite de falhas" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "Envie o nome do host deste aparelho" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Configurações do Servidor" @@ -5661,7 +5690,7 @@ msgstr "Tipo de Serviço" msgid "Services" msgstr "Serviços" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "A sessão expirou" @@ -5768,7 +5797,7 @@ msgstr "Sinal:" msgid "Size" msgstr "Tamanho" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" @@ -6158,7 +6187,7 @@ msgstr "Rotas Estáticas" msgid "Static address" msgstr "Endereço estático" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6290,7 +6319,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Definições TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Raíz do servidor TFTP" @@ -6509,7 +6538,7 @@ msgstr "" "ligação para a rede acima como a internet ou outras portas de uma rede local." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "O comando reboot falhou com o código %d" @@ -6587,8 +6616,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6731,7 +6760,7 @@ msgstr "Intervalo de tempo para rekeying GTK" msgid "Timezone" msgstr "Fuso Horário" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Para fazer login…" @@ -6850,7 +6879,7 @@ msgstr "Não foi possível determinar o endereço IP externo" msgid "Unable to determine upstream interface" msgstr "Não foi possível determinar a interface com a rede externa" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Não é possível a expedição" @@ -6921,7 +6950,7 @@ msgstr "Método de ligação desconhecido e sem suporte." msgid "Unknown error (%s)" msgstr "Erro desconhecido (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Código de erro desconhecido" @@ -6945,7 +6974,7 @@ msgstr "Chave sem nome" msgid "Unsaved Changes" msgstr "Alterações não Guardadas" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Erro não especificado" @@ -7035,10 +7064,11 @@ msgstr "Usar servidores DHCP anunciados" msgid "Use DHCP gateway" msgstr "Usar a gateway do DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7095,7 +7125,7 @@ msgstr "Use como uma sobreposição externa (/overlay)" msgid "Use as root filesystem (/)" msgstr "Usar como o sistema de ficheiros raiz (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Use a marcação de broadcast" @@ -7103,7 +7133,7 @@ msgstr "Use a marcação de broadcast" msgid "Use builtin IPv6-management" msgstr "Use o gestão do IPv6 embarcado" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7118,9 +7148,10 @@ msgstr "Use o gestão do IPv6 embarcado" msgid "Use custom DNS servers" msgstr "Usar servidores DNS personalizados" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7131,7 +7162,7 @@ msgstr "Usar servidores DNS personalizados" msgid "Use default gateway" msgstr "Usar gateway pre-definida" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7142,6 +7173,7 @@ msgstr "Usar gateway pre-definida" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7152,6 +7184,18 @@ msgstr "Usar gateway pre-definida" msgid "Use gateway metric" msgstr "Use a métrica do roteador" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "Usar MAP legado" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" +"Usar o formato de identificador da interface MAP (draft-ietf-softwire-" +"map-00) em vez do RFC7597" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Usar tabela de roteamento" @@ -7164,7 +7208,7 @@ msgstr "Usar certificados de sistema" msgid "Use system certificates for inner-tunnel" msgstr "Usar certificados de sistema para o túnel interno" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7221,6 +7265,7 @@ msgstr "Chave do utilizador (codificada em formato PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nome do utilizador" @@ -7250,16 +7295,19 @@ msgid "VPN Local port" msgstr "Porta Local da VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Porta do Servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Resumo digital SHA1 do certificado do servidor VPN" @@ -7310,7 +7358,7 @@ msgstr "O valor não pode ser vazio" msgid "Vendor" msgstr "Fabricante" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Classe do fabricante para enviar quando requisitar o DHCP" @@ -7357,16 +7405,16 @@ msgstr "" "A encriptação-WPA necessita do wpa_supplicant (para modo cliente) ou do " "hostapd (para modo AP ou ah-hoc) esteja instalado." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." -msgstr "Esperando pelo aparelho..." +msgstr "À espera do aparelho..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178 msgid "Warning" msgstr "Aviso" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Aviso: Existem definições não gravadas que serão perdidas com o reinicio!" @@ -7407,7 +7455,7 @@ msgid "Wireless Adapter" msgstr "Adaptador Wireless" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7529,7 +7577,7 @@ msgstr "Configurações do ZRam" msgid "ZRam Size" msgstr "Tamanho do ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "qualquer" @@ -7628,8 +7676,8 @@ msgstr "p. ex.: --proxy 10.10.10.10.10" msgid "e.g: dump" msgstr "p.ex.: despejo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7822,9 +7870,9 @@ msgstr "valor único" msgid "unknown" msgstr "desconhecido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po index 5e9d5ab91..165fad380 100644 --- a/modules/luci-base/po/pt_BR/base.po +++ b/modules/luci-base/po/pt_BR/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2020-08-31 03:43+0000\n" +"PO-Revision-Date: 2020-09-29 14:41+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luci/pt_BR/>\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -179,12 +179,12 @@ msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" "Porta de consulta <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" "Porta do servidor <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" @@ -202,7 +202,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Endereço <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>" @@ -228,7 +228,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Roteador <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6/Protocolo Internet Versão " @@ -242,15 +242,15 @@ msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nome do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Endereço <abbr title=\"Controle de Acesso ao Meio\">MAC</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Identificador Único do DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -258,7 +258,7 @@ msgstr "" "Numero máximo de concessões <abbr title=\"Protocolo de Configuração Dinâmica " "de Equipamentos\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -266,7 +266,7 @@ msgstr "" "Tamanho máximo do pacote do <abbr title=\"Extension Mechanisms for Domain " "Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "Número máximo de consultas concorrentes" @@ -282,7 +282,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Um diretório com o mesmo nome já existe." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Uma nova autenticação é necessária já que a sessão expirou." @@ -430,7 +430,7 @@ msgstr "Alocações DHCPv6 ativas" msgid "Active-Backup policy (active-backup, 1)" msgstr "Política de Backup Ativo (backup ativo, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -527,6 +527,10 @@ msgstr "Endereço" msgid "Address to access local relay bridge" msgstr "Endereço para acessar a ponte por retransmissão local" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Endereços" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -629,7 +633,7 @@ msgstr "Permitir taxas legadas do 802.11b" msgid "Allow listed only" msgstr "Permitir somente os listados" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Permitir computador local" @@ -655,7 +659,7 @@ msgstr "Permitir detecção dos recursos do sistema" msgid "Allow the <em>root</em> user to login with password" msgstr "Permite que o usuário <em>root</em> se autentique utilizando senha" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -983,7 +987,7 @@ msgstr "" "de configuração alterados marcados pelo opkg, arquivos base essenciais e " "padrões para a cópia de segurança definidos pelo usuário." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -996,6 +1000,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -1006,6 +1011,7 @@ msgstr "Interface Vinculada" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1244,13 +1250,13 @@ msgstr "" "Clique em \"Salvar o bloco mtd\" para baixar o arquivo do bloco mtd " "especificado. (NOTA: ESTE RECURSO É PARA PROFISSIONAIS!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Cliente" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1292,7 +1298,7 @@ msgstr "Coletando dados..." msgid "Command" msgstr "Comando" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Comando OK" @@ -1364,7 +1370,7 @@ msgstr "A tentativa de conexão falhou" msgid "Connection attempt failed." msgstr "A tentativa de conexão falhou." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Conexão perdida" @@ -1712,7 +1718,7 @@ msgstr "Dispositivo não gerenciado pelo ModemManager." msgid "Device unreachable!" msgstr "Dispositivo não alcançável!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" "O dispositivo está fora de alcance! Ainda aguardando pelo dispositivo..." @@ -1776,7 +1782,7 @@ msgstr "Desabilitado" msgid "Disassociate On Low Acknowledgement" msgstr "Desassociar quando tiver baixa confirmação de recebimento" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" "Descartar respostas de servidores externos para redes privadas (RFC1918)" @@ -1849,6 +1855,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Não encaminhe buscas por endereço reverso das redes local" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "Não envie um nome de host" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Você realmente deseja apagar \"%s\" ?" @@ -1869,7 +1879,7 @@ msgstr "Você realmente deseja apagar recursivamente o diretório \"%s\" ?" msgid "Domain required" msgstr "Requerer domínio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Lista branca de domínios" @@ -1912,7 +1922,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/form.js:2620 msgid "Drag to reorder" -msgstr "Arrastar para reordenar" +msgstr "Arraste para reordenar" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341 msgid "Drop Duplicate Frames" @@ -2048,7 +2058,7 @@ msgstr "Ativar o cliente <abbr title=\"Network Time Protocol\">NTP</abbr>" msgid "Enable Single DES" msgstr "Habilitar DES Simples" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Ativar servidor TFTP" @@ -2194,7 +2204,7 @@ msgstr "A cada 30 segundos (lento, 0)" msgid "Every second (fast, 1)" msgstr "A cada segundo (rápido, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Excluir interfaces" @@ -2308,7 +2318,7 @@ msgstr "Arquivo não associado" msgid "Filename" msgstr "Nome de arquivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Nome do arquivo da imagem de boot anunciada para os clientes" @@ -2386,7 +2396,7 @@ msgstr "Arquivo da Firmware" msgid "Firmware Version" msgstr "Versão do Firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Porta de origem fixa para saída de consultas DNS" @@ -2757,7 +2767,7 @@ msgid "Host-Uniq tag content" msgstr "Conteúdo da etiqueta única do equipamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -3043,7 +3053,7 @@ msgstr "" "Se especificado, monta o dispositivo pela etiqueta da partiçãoo ao invés de " "um nó de dispositivo fixo" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3054,6 +3064,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3064,10 +3075,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Se desmarcado, nenhuma rota padrão será configurada" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3309,7 +3321,7 @@ msgstr "" "O valor informado do ID da VLAN é inválido! Somente valores únicos são " "permitidos" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Argumento inválido" @@ -3321,7 +3333,7 @@ msgstr "" "Lista de portadores inválidos. Possivelmente, portadores foram criados em " "excesso. Este protocolo suporta apenas um portador." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Comando inválido" @@ -3474,7 +3486,7 @@ msgstr "Latência" msgid "Leaf" msgstr "Folha" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Tempo de concessão" @@ -3511,13 +3523,13 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Limite o serviço DNS para subredes das interfaces nas quais estamos servindo " "DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Escute somente nestas interfaces e na interface local (loopback)." @@ -3589,19 +3601,23 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de arquivos de chaves SSH para autenticação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" "Lista dos domínios para os quais será permitido respostas apontando para " "redes privadas (RFC1918)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "Lista dos domínios que serão impostos num endereço IP." + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" "Lista de servidores <abbr title=\"Domain Name System\">DNS</abbr> que " "fornecem resultados errados para consultas a domínios inexistentes (NX)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Interfaces de Escuta" @@ -3614,7 +3630,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Escuta apenas na interface especificada. Se não especificado, escuta em todas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Porta de escuta para a entrada das consultas DNS" @@ -3637,6 +3653,10 @@ msgstr "Carregando conteúdo do diretório…" msgid "Loading view…" msgstr "Carregando visão…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Endereço IP local" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3665,7 +3685,7 @@ msgstr "Endereço IPv4 local" msgid "Local IPv6 address" msgstr "Endereço IPv6 local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Somente Serviço Local" @@ -3853,7 +3873,7 @@ msgstr "" msgid "Manual" msgstr "Manual" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Mestre" @@ -3868,15 +3888,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Intervalo máximo permitido de escuta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Número máximo permitido de alocações DHCP ativas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Número máximo permitido de consultas DNS concorrentes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Tamanho máximo permitido dos pacotes UDP EDNS.0" @@ -3917,7 +3937,7 @@ msgstr "Memória" msgid "Memory usage (%)" msgstr "Uso da memória (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3929,7 +3949,7 @@ msgstr "ID de Mesh" msgid "Mesh Id" msgstr "Identificador da Malha" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Método não encontrado" @@ -4029,7 +4049,7 @@ msgstr "O modem está desativado." msgid "ModemManager" msgstr "ModemManager" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4161,7 +4181,7 @@ msgstr "Rede" msgid "Network Utilities" msgstr "Utilitários de Rede" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Imagem de boot pela rede" @@ -4222,7 +4242,7 @@ msgstr "Sem sinal RX" msgid "No client associated" msgstr "Não há nenhum cliente associado" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Nenhum dado recebido" @@ -4320,7 +4340,7 @@ msgstr "" "Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</" "abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Sem caracter curinga" @@ -4358,7 +4378,7 @@ msgstr "Não presente" msgid "Not started on boot" msgstr "Não iniciado na inicialização" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Sem suporte" @@ -4374,7 +4394,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Quantidade de relatórios associados ao IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 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)" @@ -4426,7 +4446,7 @@ msgstr "Rota em enlace" msgid "On-State Delay" msgstr "Atraso no estado de conexões" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" "É necessário especificar ao menos um nome de equipamento ou endereço MAC!" @@ -4466,6 +4486,10 @@ msgstr "Abrir lista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "OpenFortivpn" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Frequência de Operação" @@ -4607,7 +4631,7 @@ msgstr "Interface de Saída" msgid "Output zone" msgstr "Zona de saída" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4616,7 +4640,7 @@ msgstr "Zona de saída" msgid "Override MAC address" msgstr "Sobrescrever o endereço MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4808,6 +4832,7 @@ msgstr "Parte da zona %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Senha" @@ -4863,7 +4888,7 @@ msgstr "Caminho para o Certificado do Cliente interno" msgid "Path to inner Private Key" msgstr "Caminho para a Chave Privada interna" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Pausado" @@ -4905,7 +4930,7 @@ msgstr "Sigilo Encaminhado Perfeito" msgid "Perform outgoing packets serialization (optional)." msgstr "Realizar a serialização dos pacotes na saída (opcional)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Reiniciar o sistema" @@ -4913,7 +4938,7 @@ msgstr "Reiniciar o sistema" msgid "Perform reset" msgstr "Restaurar as configuração iniciais" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Permissão negada" @@ -5006,7 +5031,7 @@ msgstr "" "Assumir que o parceiro está morto depois de uma data quantidade de falhas de " "echo do LCP. Use 0 para ignorar as falhas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Evite escutar nestas Interfaces." @@ -5189,23 +5214,23 @@ msgstr "Gráficos em Tempo Real" msgid "Reassociation Deadline" msgstr "Limite para Reassociação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Proteção contra \"Rebind\"" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reiniciar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Reiniciando…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Reinicia o sistema operacional do seu dispositivo" @@ -5225,7 +5250,7 @@ msgstr "Reconectar esta interface" msgid "References" msgstr "Referências" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Atualizando" @@ -5285,7 +5310,7 @@ msgstr "Solicita endereço IPv6" msgid "Request IPv6-prefix of length" msgstr "Solicita prefixo IPv6 de tamanho" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "A requisição excedeu o tempo limite" @@ -5307,7 +5332,7 @@ msgstr "Exigir a serialização dos pacotes na entrada (opcional)." msgid "Required" msgstr "Necessário" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" "Obrigatório para alguns provedores de internet, ex. Charter com DOCSIS 3" @@ -5438,7 +5463,7 @@ msgstr "Arquivos Resolv e Hosts" msgid "Resolve file" msgstr "Arquivo Resolv" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Recurso não encontrado" @@ -5486,7 +5511,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "Revertendo configurações…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Diretório raiz para arquivos disponibilizados pelo TFTP" @@ -5684,6 +5709,10 @@ msgstr "" "Enviar requisições de eco do LCP no dado intervalo em segundos. Somente " "efetivo em conjunto com o limite de falhas" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "Envie o nome de host deste dispositivo" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Configurações do Servidor" @@ -5701,7 +5730,7 @@ msgstr "Tipo do Serviço" msgid "Services" msgstr "Serviços" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Sessão expirada" @@ -5761,7 +5790,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80 msgid "Short GI" -msgstr "Intervalo de guarda curto" +msgstr "Intervalo curto de guarda" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085 msgid "Short Preamble" @@ -5808,7 +5837,7 @@ msgstr "Sinal:" msgid "Size" msgstr "Tamanho" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" @@ -6198,7 +6227,7 @@ msgstr "Rotas Estáticas" msgid "Static address" msgstr "Endereço Estático" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6330,7 +6359,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Configurações do TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Raiz do servidor TFTP" @@ -6548,7 +6577,7 @@ msgstr "" "(uplink) e as demais portas são utilizadas para a rede local." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "O comando de reinicialização falhou com o código %d" @@ -6627,8 +6656,8 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que você " "escolheu uma imagem para a sua plataforma." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6772,7 +6801,7 @@ msgstr "Intervalo de tempo para refazer o GTK" msgid "Timezone" msgstr "Fuso Horário" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Para fazer login…" @@ -6892,7 +6921,7 @@ msgstr "Não foi possível determinar o endereço IP externo" msgid "Unable to determine upstream interface" msgstr "Não foi possível determinar a interface com a rede externa" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Não é possível a expedição" @@ -6963,7 +6992,7 @@ msgstr "Método de conexão desconhecido e sem suporte." msgid "Unknown error (%s)" msgstr "Erro desconhecido (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Código de erro desconhecido" @@ -6987,7 +7016,7 @@ msgstr "Chave sem nome" msgid "Unsaved Changes" msgstr "Alterações Não Salvas" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Erro não especificado" @@ -7077,10 +7106,11 @@ msgstr "Use servidores anunciados pelo DHCP" msgid "Use DHCP gateway" msgstr "Use o roteador do DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7137,7 +7167,7 @@ msgstr "Use como uma sobreposição externa (/overlay)" msgid "Use as root filesystem (/)" msgstr "Usar como o sistema de arquivos raiz (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Use a marcação de broadcast" @@ -7145,7 +7175,7 @@ msgstr "Use a marcação de broadcast" msgid "Use builtin IPv6-management" msgstr "Use o gerenciamento do IPv6 embarcado" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7160,9 +7190,10 @@ msgstr "Use o gerenciamento do IPv6 embarcado" msgid "Use custom DNS servers" msgstr "Use servidores DNS personalizados" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7173,7 +7204,7 @@ msgstr "Use servidores DNS personalizados" msgid "Use default gateway" msgstr "Use o roteador padrão" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7184,6 +7215,7 @@ msgstr "Use o roteador padrão" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7194,6 +7226,18 @@ msgstr "Use o roteador padrão" msgid "Use gateway metric" msgstr "Use a métrica do roteador" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "Use o MAP antigo" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" +"Use o formato do identificador da interface MAP (draft-ietf-softwire-map-00) " +"em vez do RFC7597" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Use a tabela de roteamento" @@ -7206,7 +7250,7 @@ msgstr "Utilizar certificados do sistema" msgid "Use system certificates for inner-tunnel" msgstr "Utilizar certificados de sistema para túnel interno" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7263,6 +7307,7 @@ msgstr "Chave do usuário (codificada em formato PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Nome do Usuário" @@ -7292,16 +7337,19 @@ msgid "VPN Local port" msgstr "Porta Local da VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Porta do Servidor VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Resumo digital SHA1 do certificado do servidor VPN" @@ -7352,7 +7400,7 @@ msgstr "O valor não pode ser vazio" msgid "Vendor" msgstr "Fabricante" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Classe do fabricante para enviar quando requisitar o DHCP" @@ -7399,7 +7447,7 @@ msgstr "" "A cifragem WPA requer a instalação do wpa_supplicant (para modo cliente) ou " "do hostapd (para modo AP ou ad-hoc)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Esperando pelo dispositivo..." @@ -7408,7 +7456,7 @@ msgstr "Esperando pelo dispositivo..." msgid "Warning" msgstr "Alerta" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 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!" @@ -7448,7 +7496,7 @@ msgid "Wireless Adapter" msgstr "Dispositivo de Rede sem Fio" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7570,7 +7618,7 @@ msgstr "Configurações ZRam" msgid "ZRam Size" msgstr "Tamanho ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "qualquer" @@ -7669,8 +7717,8 @@ msgstr "por exemplo: --proxy 10.10.10.10.10" msgid "e.g: dump" msgstr "por exemplo: despejo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7864,9 +7912,9 @@ msgstr "valor único" msgid "unknown" msgstr "desconhecido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index 1bd8c31d1..a77d3b16b 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -173,11 +173,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr>port de apelare" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> port server" @@ -193,7 +193,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adresa <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -217,7 +217,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Poarta Acces" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -229,21 +229,21 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configurare" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Nume" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Addresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -251,7 +251,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> marime pachet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">Max.</abbr> interogari simultane" @@ -265,7 +265,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Un director cu acelaşi nume există deja." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "O nouă logare este necesară deoarece sesiunea de autentificare a expirat." @@ -404,7 +404,7 @@ msgstr "Lease-uri DHCPv6 active" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -501,6 +501,10 @@ msgstr "Adresa" msgid "Address to access local relay bridge" msgstr "Adresa de acces punte locala repetor" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -592,7 +596,7 @@ msgstr "Permite rate de transfer legacy 802.11b" msgid "Allow listed only" msgstr "Permite doar cele listate" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Permite localhost" @@ -616,7 +620,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Permite contului <em>root</em> sa se autentifice cu parola" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -928,7 +932,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -939,6 +943,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -949,6 +954,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1168,13 +1174,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1213,7 +1219,7 @@ msgstr "Colectare date..." msgid "Command" msgstr "Comandă" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1286,7 +1292,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Conexiunea s-a pierdut" @@ -1620,7 +1626,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1683,7 +1689,7 @@ msgstr "Dezactivat" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1747,6 +1753,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Sigur doriți să ștergeți \"%s\" ?" @@ -1767,7 +1777,7 @@ msgstr "" msgid "Domain required" msgstr "Domeniul necesar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1930,7 +1940,7 @@ msgstr "Activează client NTP" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Activeaza serverul TFTP" @@ -2071,7 +2081,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Exclude interfeţe" @@ -2180,7 +2190,7 @@ msgstr "Fișierul nu este accesibil" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2252,7 +2262,7 @@ msgstr "Fișier firmware" msgid "Firmware Version" msgstr "Versiunea de firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Portul sursa pentru intrebarile DNS catre exterior" @@ -2612,7 +2622,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2892,7 +2902,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2903,6 +2913,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2913,10 +2924,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3142,7 +3154,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3152,7 +3164,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3306,7 +3318,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3343,11 +3355,11 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limita" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3407,15 +3419,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3427,7 +3443,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3450,6 +3466,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3478,7 +3498,7 @@ msgstr "Adresa IPv4 locala" msgid "Local IPv6 address" msgstr "Adresa IPv6 locala" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3653,7 +3673,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3666,15 +3686,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Numarul maxim de intrebari DNS simultane" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3715,7 +3735,7 @@ msgstr "Memorie" msgid "Memory usage (%)" msgstr "Utilizarea memoriei (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3727,7 +3747,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3825,7 +3845,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3955,7 +3975,7 @@ msgstr "Retea" msgid "Network Utilities" msgstr "Utilitare de retea" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4016,7 +4036,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Nu sunt date recepționate" @@ -4110,7 +4130,7 @@ msgstr "Zgomot:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4148,7 +4168,7 @@ msgstr "Nu este prezent" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4164,7 +4184,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4216,7 +4236,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4253,6 +4273,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Frecvență de operare" @@ -4381,7 +4405,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4390,7 +4414,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4577,6 +4601,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Parola" @@ -4632,7 +4657,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4674,7 +4699,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Restarteaza" @@ -4682,7 +4707,7 @@ msgstr "Restarteaza" msgid "Perform reset" msgstr "Reseteaza" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4772,7 +4797,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4943,23 +4968,23 @@ msgstr "Grafice in timp real" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Rebooteaza" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Rebootare…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Rebooteaza sistemul de operare al dispozitivului tau" @@ -4979,7 +5004,7 @@ msgstr "Reconecteaza aceasta interfata" msgid "References" msgstr "Referinte" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5039,7 +5064,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5061,7 +5086,7 @@ msgstr "" msgid "Required" msgstr "Necesitat" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5184,7 +5209,7 @@ msgstr "Fisierele de rezolvare si hosturi DNS" msgid "Resolve file" msgstr "Fisierul de rezolvare" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Resursa nu a fost găsită" @@ -5231,7 +5256,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5419,6 +5444,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Setarile serverului" @@ -5436,7 +5465,7 @@ msgstr "Tip de serviciu" msgid "Services" msgstr "Servicii" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Sesiunea a expirat" @@ -5536,7 +5565,7 @@ msgstr "Semnal:" msgid "Size" msgstr "Marime" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5861,7 +5890,7 @@ msgstr "Rute statice" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5987,7 +6016,7 @@ msgstr "" msgid "TFTP Settings" msgstr "Setarile TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6173,7 +6202,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6238,8 +6267,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6361,7 +6390,7 @@ msgstr "" msgid "Timezone" msgstr "Fusul orar" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6477,7 +6506,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6546,7 +6575,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6570,7 +6599,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Modificari nesalvate" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6653,10 +6682,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6709,7 +6739,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6717,7 +6747,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6732,9 +6762,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6745,7 +6776,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6756,6 +6787,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6766,6 +6798,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6778,7 +6820,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6825,6 +6867,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Utilizator" @@ -6854,16 +6897,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6912,7 +6958,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6959,7 +7005,7 @@ msgstr "" "Criptarea WPA necesita wpa_supplicant (pentru modul client) sau hostapd " "(pentru modul AP sau ad-hoc) instalate." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6968,7 +7014,7 @@ msgstr "" msgid "Warning" msgstr "Avertizare" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -7005,7 +7051,7 @@ msgid "Wireless Adapter" msgstr "Adaptorul wireless" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7114,7 +7160,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "oricare" @@ -7213,8 +7259,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7404,9 +7450,9 @@ msgstr "" msgid "unknown" msgstr "necunoscut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index 25bf06410..16c585e35 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2020-09-01 18:42+0000\n" -"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n" +"PO-Revision-Date: 2020-10-09 00:10+0000\n" +"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>" "\n" "Language: ru\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" @@ -178,11 +178,11 @@ msgstr "802.11w время ожидания повтора" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Идентификатор Набора Базовых Сервисов\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Система доменных имён\">DNS</abbr> порт запроса" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Система доменных имен\">DNS</abbr> порт сервера" @@ -198,7 +198,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Расширенный идентификатор обслуживания\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Интернет протокол версии 4\">IPv4</abbr>-адрес" @@ -222,7 +222,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Интернет протокол версии 6\">IPv6</abbr>-шлюз" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Интернет протокол версии 6\">IPv6</abbr>-суффикс (hex)" @@ -234,15 +234,15 @@ msgstr "Настройка <abbr title=\"Светодиод\">LED</abbr> инд msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Имя <abbr title=\"Светодиод\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Управление доступом к носителю\">MAC</abbr>-адрес" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Уникальный идентификатор DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -250,7 +250,7 @@ msgstr "" "<abbr title=\"максимальное\">Макс.</abbr> кол-во аренд <abbr title=" "\"Протокол динамической настройки узла\">DHCP</abbr> аренды" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -258,7 +258,7 @@ msgstr "" "<abbr title=\"максимальный\">Макс.</abbr><abbr title=\"Extension Mechanisms " "for Domain Name System\">EDNS0</abbr> размер пакета" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" "<abbr title=\"максимальное\">Макс.</abbr> кол-во одновременных запросов" @@ -275,7 +275,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Директория с таким же именем уже существует." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Время сессии истекло, требуется повторная аутентификация." @@ -416,7 +416,7 @@ msgstr "Активные DHCPv6 аренды" msgid "Active-Backup policy (active-backup, 1)" msgstr "Политика активного резервирования (active-backup, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -514,6 +514,10 @@ msgstr "Адрес" msgid "Address to access local relay bridge" msgstr "Адрес для доступа к локальному мосту-ретранслятору" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Адреса" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -532,7 +536,7 @@ msgstr "Дополнительные настройки" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" -msgstr "Aggregate Transmit Power (ACTATP)" +msgstr "Общая мощность передачи (ACTATP)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258 msgid "Aggregation Selection Logic" @@ -613,7 +617,7 @@ msgstr "Разрешить использование стандарта 802.11b msgid "Allow listed only" msgstr "Разрешить только перечисленные" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Разрешить локальный хост" @@ -640,7 +644,7 @@ msgid "Allow the <em>root</em> user to login with password" msgstr "" "Разрешить пользователю <em>root</em> входить в систему с помощью пароля" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -726,7 +730,7 @@ msgstr "Annex L G.992.3 POTS 1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894 msgid "Annex M (all)" -msgstr "Annex M (all)" +msgstr "Annex M (все)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904 msgid "Annex M G.992.3" @@ -971,7 +975,7 @@ msgstr "" "состоит из измененных config файлов, отмеченных opkg, необходимых базовых " "файлов, а также шаблонов резервного копирования, определенных пользователем." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -984,6 +988,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -994,6 +999,7 @@ msgstr "Открытый интерфейс" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1233,13 +1239,13 @@ msgstr "" "Нажмите \"Сохранить MTD раздел\" для скачивания образа указанного MTD " "раздела (ВНИМАНИЕ: ДАННЫЙ ФУНКЦИОНАЛ ТОЛЬКО ДЛЯ ОПЫТНЫХ ПОЛЬЗОВАТЕЛЕЙ)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Клиент" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "ID клиента при DHCP-запросе" @@ -1280,7 +1286,7 @@ msgstr "Сбор данных..." msgid "Command" msgstr "Команда" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Успешное выполнение" @@ -1351,7 +1357,7 @@ msgstr "Ошибка попытки соединения" msgid "Connection attempt failed." msgstr "Ошибка попытки соединения." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Подключение потеряно" @@ -1518,7 +1524,7 @@ msgstr "Перенаправление запросов DNS" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:37 msgid "DNS-Label / FQDN" -msgstr "DNS-Label / FQDN" +msgstr "DNS-имя / FQDN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228 msgid "DNSSEC" @@ -1696,7 +1702,7 @@ msgstr "Устройство не управляется ModemManager." msgid "Device unreachable!" msgstr "Устройство недоступно!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Устройство недоступно! Ожидание устройства..." @@ -1759,7 +1765,7 @@ msgstr "Отключено" msgid "Disassociate On Low Acknowledgement" msgstr "Не ассоциировать при низком подтверждении" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Отбрасывать ответы внешней сети RFC1918" @@ -1829,6 +1835,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "Не отправлять имя хоста" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Вы действительно хотите удалить «%s»?" @@ -1849,7 +1859,7 @@ msgstr "Вы действительно хотите рекурсивно уда msgid "Domain required" msgstr "Требуется домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Белый список доменов" @@ -1910,7 +1920,7 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 msgid "Dual-Stack Lite (RFC6333)" -msgstr "Dual-Stack Lite (RFC6333)" +msgstr "Двойной Стек, Облегченный (RFC6333)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595 msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" @@ -1957,7 +1967,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842 msgid "Edit this network" -msgstr "Редактировать эту сеть" +msgstr "Изменить эту сеть" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793 msgid "Edit wireless network" @@ -2023,7 +2033,7 @@ msgstr "Включить NTP-клиент" msgid "Enable Single DES" msgstr "Включить Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Включить TFTP-сервер" @@ -2168,7 +2178,7 @@ msgstr "Каждые 30 секунд (slow, 0)" msgid "Every second (fast, 1)" msgstr "Каждую секунду (fast, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Исключить интерфейсы" @@ -2279,7 +2289,7 @@ msgstr "Файл не доступен" msgid "Filename" msgstr "Имя файла" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Имя загрузочного образа, извещаемого клиентам" @@ -2354,7 +2364,7 @@ msgstr "Файл прошивки" msgid "Firmware Version" msgstr "Версия прошивки" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Фиксированный порт для исходящих DNS-запросов" @@ -2715,7 +2725,7 @@ msgid "Host-Uniq tag content" msgstr "Содержимое Host-Uniq тега" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2747,7 +2757,7 @@ msgstr "Динамическая агрегация каналов IEEE 802.3ad #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75 msgid "IKE DH Group" -msgstr "IKE DH Group" +msgstr "IKE DH группа" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83 msgid "IP Addresses" @@ -2999,7 +3009,7 @@ msgstr "" "Если выбрано, монтировать устройство используя название его раздела, а не " "фиксированный файл устройства" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3010,6 +3020,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3020,10 +3031,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Если не выбрано, то маршрут по умолчанию не настраивается" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3262,7 +3274,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "Указан неверный VLAN ID! Доступны только уникальные ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Неверный аргумент" @@ -3274,7 +3286,7 @@ msgstr "" "Недопустимый список каналов (bearer). Возможно, создано слишком много " "каналов. Этот протокол поддерживает один и только один канал." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Неверная команда" @@ -3427,7 +3439,7 @@ msgstr "Задержка" msgid "Leaf" msgstr "Лист" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Время аренды адреса" @@ -3464,11 +3476,11 @@ msgstr "События:" msgid "Limit" msgstr "Предел" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "Ограничение сервиса DNS, для подсетей интерфейса использующего DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "Ограничьте прослушивание этих интерфейсов и замыкание на себя." @@ -3540,15 +3552,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Список файлов ключей SSH для авторизации" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Список доменов, для которых разрешены ответы RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "Список доменов для принудительного преобразования в IP-адрес." + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Список хостов, поставляющих поддельные результаты домена NX" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Интерфейс для входящих соединений" @@ -3562,7 +3578,7 @@ msgstr "" "Принимать подключения только на указанном интерфейсе или, если интерфейс не " "задан, на всех интерфейсах" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Порт для входящих DNS-запросов" @@ -3585,6 +3601,10 @@ msgstr "Загрузка содержимого директории…" msgid "Loading view…" msgstr "Загрузка страницы…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Локальный IP-адрес" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3613,7 +3633,7 @@ msgstr "Локальный IPv4-адрес" msgid "Local IPv6 address" msgstr "Локальный IPv6-адрес" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Только локальный DNS" @@ -3800,7 +3820,7 @@ msgstr "" msgid "Manual" msgstr "Вручную" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Мастер" @@ -3813,15 +3833,15 @@ msgstr "Макс. достижимая скорость передачи дан msgid "Maximum allowed Listen Interval" msgstr "Максимально разрешенное значение интервала прослушивания клиента" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Максимальное количество активных арендованных DHCP-адресов" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Максимально допустимое количество одновременных DNS-запросов" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Максимально допустимый размер UDP пакетов EDNS.0" @@ -3862,7 +3882,7 @@ msgstr "Оперативная память (RAM)" msgid "Memory usage (%)" msgstr "Использование памяти (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3874,7 +3894,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Метод не найден" @@ -3974,7 +3994,7 @@ msgstr "Модем отключен." msgid "ModemManager" msgstr "Менеджер модема" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Монитор" @@ -4106,7 +4126,7 @@ msgstr "Сеть" msgid "Network Utilities" msgstr "Сетевые утилиты" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Образ системы для сетевой загрузки" @@ -4167,7 +4187,7 @@ msgstr "Rx сигнал отсутствует" msgid "No client associated" msgstr "Нет связанных клиентов" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Данные не получены" @@ -4261,7 +4281,7 @@ msgstr "Шум:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Ошибки без предварительного CRC (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Не использовать wildcard" @@ -4299,7 +4319,7 @@ msgstr "Не существует" msgid "Not started on boot" msgstr "Не запускается при загрузке" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Не поддерживается" @@ -4315,7 +4335,7 @@ msgstr "DNS-запрос" msgid "Number of IGMP membership reports" msgstr "Количество отчётов о членстве IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Количество кэшированных DNS записей (максимум — 10000, 0 — отключить " @@ -4369,7 +4389,7 @@ msgstr "On-link маршрут" msgid "On-State Delay" msgstr "Задержка включенного состояния" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Должен быть указан либо MAC-адрес, либо имя хоста!" @@ -4408,6 +4428,10 @@ msgstr "Открыть список..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "OpenFortivpn" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Настройка частоты" @@ -4550,7 +4574,7 @@ msgstr "Исходящий интерфейс" msgid "Output zone" msgstr "Исходящая зона" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4559,7 +4583,7 @@ msgstr "Исходящая зона" msgid "Override MAC address" msgstr "Назначить MAC-адрес" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4748,6 +4772,7 @@ msgstr "Часть зоны %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Пароль" @@ -4803,7 +4828,7 @@ msgstr "Путь к внутренним Client-сертификатам" msgid "Path to inner Private Key" msgstr "Путь к внутреннему Приватному ключу" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Приостановлено" @@ -4845,7 +4870,7 @@ msgstr "Совершенная прямая секретность" msgid "Perform outgoing packets serialization (optional)." msgstr "Выполнять сериализацию исходящих пакетов (опционально)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Выполнить перезагрузку" @@ -4853,7 +4878,7 @@ msgstr "Выполнить перезагрузку" msgid "Perform reset" msgstr "Выполнить сброс" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Доступ запрещён" @@ -4945,7 +4970,7 @@ msgstr "" "Предполагать, что узел недоступен после указанного количества ошибок " "получения эхо-пакета LCP, введите '0' для игнорирования ошибок" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Запретить прослушивание этих интерфейсов." @@ -5130,23 +5155,23 @@ msgstr "Графики в реальном времени" msgid "Reassociation Deadline" msgstr "Срок реассоциации" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Защита от DNS Rebinding" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Перезагрузка" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Перезагрузка…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" "Программная перезагрузка вашего устройства, т.е. выполнить команду 'reboot'" @@ -5167,7 +5192,7 @@ msgstr "Переподключить этот интерфейс" msgid "References" msgstr "Ссылки" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Обновляется" @@ -5227,7 +5252,7 @@ msgstr "Запрос IPv6 адреса" msgid "Request IPv6-prefix of length" msgstr "Запрос IPv6 префикс длины" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Таймаут запроса" @@ -5249,7 +5274,7 @@ msgstr "Требуется сериализация входящих пакет msgid "Required" msgstr "Обязательно" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" "Требуется для некоторых Интернет провайдеров, например использующих DOCSIS 3" @@ -5379,7 +5404,7 @@ msgstr "Файлы resolv и hosts" msgid "Resolve file" msgstr "Файл resolv" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ресурс не найден" @@ -5426,7 +5451,7 @@ msgstr "Ошибка <code>%h</code> отмены конфигурации" msgid "Reverting configuration…" msgstr "Отмена конфигурации…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Корневая директория для файлов сервера, вроде TFTP" @@ -5621,6 +5646,10 @@ msgstr "" "Отправлять эхо-пакеты LCP с указанным интервалом (секунды), эффективно " "только в сочетании с порогом ошибок" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "Отправлять имя хоста этого устройства" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Настройки сервера" @@ -5638,7 +5667,7 @@ msgstr "Тип службы" msgid "Services" msgstr "Службы" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Сессия истекла" @@ -5743,7 +5772,7 @@ msgstr "Сигнал:" msgid "Size" msgstr "Размер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Размер кэша DNS запроса" @@ -6132,7 +6161,7 @@ msgstr "Статические маршруты" msgid "Static address" msgstr "Статический адрес" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6263,7 +6292,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Настройки TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP сервер root" @@ -6476,7 +6505,7 @@ msgstr "" "внутренней — локальной сети." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Команда reboot завершилась с кодом ошибки %d" @@ -6552,8 +6581,8 @@ msgstr "" "Загруженный файл прошивки не поддерживается. Проверьте, что вы загрузили " "подходящую прошивку для чипа вашего устройства." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6694,7 +6723,7 @@ msgstr "Интервал регенерации ключей GTK" msgid "Timezone" msgstr "Часовой пояс" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Аутентификация…" @@ -6814,7 +6843,7 @@ msgstr "Невозможно определить внешний IP-адрес" msgid "Unable to determine upstream interface" msgstr "Невозможно определить основной (upstream) интерфейс" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Невозможно обработать запрос для" @@ -6883,7 +6912,7 @@ msgstr "Неизвестный и неподдерживаемый метод п msgid "Unknown error (%s)" msgstr "Неизвестная ошибка (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Неизвестный код ошибки" @@ -6907,7 +6936,7 @@ msgstr "Ключ без имени" msgid "Unsaved Changes" msgstr "Не принятые изменения" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Неопознанная ошибка" @@ -6994,10 +7023,11 @@ msgstr "Использовать серверы, объявленные чере msgid "Use DHCP gateway" msgstr "Использовать шлюз DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7052,7 +7082,7 @@ msgstr "Использовать как внешний overlay (/overlay)" msgid "Use as root filesystem (/)" msgstr "Использовать как корень (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Использовать широковещательный флаг" @@ -7060,7 +7090,7 @@ msgstr "Использовать широковещательный флаг" msgid "Use builtin IPv6-management" msgstr "Использовать встроенный IPv6-менеджмент" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7075,9 +7105,10 @@ msgstr "Использовать встроенный IPv6-менеджмент" msgid "Use custom DNS servers" msgstr "Использовать собственные DNS сервера" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7088,7 +7119,7 @@ msgstr "Использовать собственные DNS сервера" msgid "Use default gateway" msgstr "Использовать шлюз по умолчанию" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7099,6 +7130,7 @@ msgstr "Использовать шлюз по умолчанию" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7109,6 +7141,18 @@ msgstr "Использовать шлюз по умолчанию" msgid "Use gateway metric" msgstr "Использовать метрику шлюза" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "Использовать устаревший MAP" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" +"Использовать устаревший MAP формат идентификатора интерфейса (draft-ietf-" +"softwire-map-00) вместо RFC7597" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Использовать таблицу маршрутизации" @@ -7122,7 +7166,7 @@ msgid "Use system certificates for inner-tunnel" msgstr "" "Использовать системные сертификаты для внутреннего туннеля (inner-tunnel)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7179,6 +7223,7 @@ msgstr "Ключ пользователя (PEM encoded)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Имя пользователя" @@ -7208,16 +7253,19 @@ msgid "VPN Local port" msgstr "Локальный порт VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Сервер VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Порт VPN сервера" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Сертификат SHA1 hash VPN сервера" @@ -7268,7 +7316,7 @@ msgstr "Значение не должно быть пустым" msgid "Vendor" msgstr "Производитель (Vendor)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" "Класс производителя (Vendor class), который отправлять при DHCP-запросах" @@ -7316,7 +7364,7 @@ msgstr "" "Необходимо установить wpa_supplicant (режим клиента) или hostapd (режим " "точки доступа или ad-hoc) для поддержки шифрования WPA." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Ожидание подключения устройства..." @@ -7325,7 +7373,7 @@ msgstr "Ожидание подключения устройства..." msgid "Warning" msgstr "Внимание" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Внимание: Есть не сохраненные изменения, которые будут потеряны при " @@ -7367,7 +7415,7 @@ msgid "Wireless Adapter" msgstr "Беспроводной адаптер" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7488,7 +7536,7 @@ msgstr "Настройки ZRam" msgid "ZRam Size" msgstr "Размер ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "любой" @@ -7587,8 +7635,8 @@ msgstr "например: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "например: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7780,9 +7828,9 @@ msgstr "уникальное значение" msgid "unknown" msgstr "неизвестный" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index af1cf32f8..cb88d139c 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-08-05 13:29+0000\n" -"Last-Translator: Chaoos <all@chaoos.com>\n" +"PO-Revision-Date: 2020-10-05 18:26+0000\n" +"Last-Translator: kukulo2011 <kukulo2011@windowslive.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/luci/sk/>" "\n" "Language: sk\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -23,7 +23,7 @@ msgstr "%d Bitový" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3689 msgid "%d invalid field(s)" -msgstr "%d neplatných polí" +msgstr "Neplatné polia: %d" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35 msgid "%s is untagged in multiple VLANs!" @@ -77,12 +77,12 @@ msgstr "-- vlastné --" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379 msgid "-- match by label --" -msgstr "" +msgstr "-- zhoda s názvom --" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362 msgid "-- match by uuid --" -msgstr "" +msgstr "-- zhoda podľa uuid --" #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27 #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44 @@ -98,6 +98,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" msgstr "" +"0=nepoužíva RSSI prahovú hodnotu, 1=nemení počiatočné nastavenia ovládača" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" @@ -129,7 +130,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 msgid "4-character hexadecimal ID" -msgstr "" +msgstr "4-hexadecimálna hodnota znaku" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11 @@ -142,80 +143,86 @@ msgstr "5 minút zaťaženia:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471 msgid "6-octet identifier as a hex string - no colons" -msgstr "" +msgstr "6-identifikátor oktetu ako hexadecimálny reťazec - bez dvojbodiek" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431 msgid "802.11r Fast Transition" -msgstr "" +msgstr "802.11r Rýchly Prechod" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 msgid "802.11w Association SA Query maximum timeout" -msgstr "" +msgstr "802.11w Priradenie SA dotazovania maximálny čas platnosti" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626 msgid "802.11w Association SA Query retry timeout" -msgstr "" +msgstr "802.11w Priradenie SA dotazovania - čas vypršania nového dotazovania" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 msgid "802.11w Management Frame Protection" -msgstr "" +msgstr "802.11w Ochrana Riadiaceho Rámca" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 msgid "802.11w maximum timeout" -msgstr "" +msgstr "802.11w maximálny čas vypršania" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626 msgid "802.11w retry timeout" -msgstr "" +msgstr "802.11w časový limit nového pokusu" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" -msgstr "" +msgstr "<abbr title=\"Doménový názvový systém\">DNS</abbr> dotaz na port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" -msgstr "Port <abbr title=\"Domain Name System\">DNS</abbr> servera" +msgstr "Port <abbr title=\"Doménový názvový systém\">DNS</abbr> servera" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "" "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " "order of the resolvfile" msgstr "" +"<abbr title=\"Doménový názvový systém\">DNS</abbr> servery budú dotazované v " +"poradí uvedenom v súbore resolvfile" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" -msgstr "" +msgstr "<abbr title=\"Internetový Protokol Verzia 4\">IPv4</abbr>-Adresa" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway" -msgstr "" +msgstr "<abbr title=\"Internetový Protokol Verzia 4\">IPv4</abbr>-Brána" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask" msgstr "" +"<abbr title=\"Internetový Protokol Verzia 4\">IPv4</abbr>-Sieťová maska" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31 msgid "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network " "(CIDR)" msgstr "" +"<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Adresa alebo sieť " +"(CIDR)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -msgstr "" +msgstr "<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Brána" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" +"<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Prípona (hex)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -225,15 +232,15 @@ msgstr "Konfigurácia <abbr title=\"Light Emitting Diode\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Názov <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Kontrola prístupu k médiu\">MAC</abbr>-adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Jedinečný identifikátor DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -241,7 +248,7 @@ msgstr "" "<abbr title=\"maximalny\">Max. počet</abbr> <abbr title=\"Konfiguračný " "protokol dynamického hostiteľa\">DHCP</abbr> prenájmov" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -249,7 +256,7 @@ msgstr "" "<abbr title=\"maximálna\">Max.</abbr> veľkosť paketu <abbr title=" "\"Mechanizmy rozšírenia pre systém názvov domén\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximálny\">Max.</abbr> počet súbežných dotazov" @@ -265,7 +272,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Adresár s rovnakým názvom už existuje." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "Vyžaduje sa nové prihlásenie, pretože overenie totožnosti relácie vypršalo." @@ -401,7 +408,7 @@ msgstr "Aktívne DHCPv6 prenájmy" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -498,6 +505,10 @@ msgstr "Adresa" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -588,7 +599,7 @@ msgstr "Umožniť zastaralé rýchlosti 802.11b" msgid "Allow listed only" msgstr "Povoliť iba zo zoznamu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -612,7 +623,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -800,7 +811,7 @@ msgstr "Typ overenia totožnosti" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172 msgid "Authoritative" -msgstr "" +msgstr "Autoritatívny" #: modules/luci-base/luasrc/view/sysauth.htm:17 msgid "Authorization Required" @@ -926,7 +937,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -937,6 +948,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -947,6 +959,7 @@ msgstr "Previazať rozhranie" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1126,7 +1139,7 @@ msgstr "Kontroluje sa obraz…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:399 msgid "Choose mtdblock" -msgstr "" +msgstr "Zvoľte mtdblock" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942 @@ -1148,7 +1161,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 msgid "Cipher" -msgstr "" +msgstr "Šifra" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91 msgid "Cisco UDP encapsulation" @@ -1170,13 +1183,13 @@ msgstr "" "Kliknutím na „Uložiť mtdblock“ stiahnete určený súbor mtdblock. (POZNÁMKA: " "TÁTO FUNKCIA JE PRE ODBORNÍKOV!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Klient" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1215,7 +1228,7 @@ msgstr "Zbieram dáta..." msgid "Command" msgstr "Príkaz" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Príkaz vykonaný v poriadku" @@ -1282,7 +1295,7 @@ msgstr "Pokus o pripojenie zlyhal" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Pripojenie stratené" @@ -1332,12 +1345,12 @@ msgstr "Vytvoriť / priradiť zónu brány firewall" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798 msgid "Create interface" -msgstr "" +msgstr "Vytvoriť rozhranie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:730 msgid "Creates a bridge over specified interface(s)" -msgstr "" +msgstr "Vytvorenie mostu medzi určenými rozhraniami" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:170 msgid "Critical" @@ -1382,8 +1395,8 @@ msgid "" "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" "\">LED</abbr>s if possible." msgstr "" -"Ak je to možné, prispôsobte správanie <abbr title=\"Light Emitting Diode" -"\">LED</abbr> diód zariadenia." +"Umožní prispôsobiť správanie <abbr title=\"Light Emitting Diode\">LED</abbr> " +"diód zariadenia, ak je to možné." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353 msgid "DAE-Client" @@ -1414,7 +1427,7 @@ msgstr "Klient DHCP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619 msgid "DHCP-Options" -msgstr "" +msgstr "Voľby DHCP" #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7 @@ -1423,7 +1436,7 @@ msgstr "Klient DHCPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646 msgid "DHCPv6-Mode" -msgstr "" +msgstr "Režim DHCPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631 msgid "DHCPv6-Service" @@ -1576,7 +1589,7 @@ msgstr "Cieľ" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48 msgid "Destination port" -msgstr "" +msgstr "Cieľový port" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165 @@ -1618,7 +1631,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Zariadenie neprístupné!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" "Zariadenie nie je dosiahnuteľné! Pokračuje sa v čakaní na zariadenie..." @@ -1680,7 +1693,7 @@ msgstr "Zakázané" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1707,7 +1720,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330 msgid "Dismiss" -msgstr "Zavrieť" +msgstr "Zahodiť" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895 msgid "Distance Optimization" @@ -1744,6 +1757,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Naozaj chcete odstrániť „%s“?" @@ -1764,7 +1781,7 @@ msgstr "Naozaj chcete rekurzívne odstrániť adresár „%s“?" msgid "Domain required" msgstr "Vyžaduje sa doména" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Biela listina domén" @@ -1929,13 +1946,13 @@ msgstr "Povoliť klienta NTP" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Povoliť server TFTP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184 msgid "Enable VLAN functionality" -msgstr "" +msgstr "Povoliť funkciu VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638 msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE" @@ -2070,9 +2087,9 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" -msgstr "" +msgstr "Vylúčiť rozhrania" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247 msgid "Expand hosts" @@ -2096,7 +2113,7 @@ msgstr "Očakáva sa: %s" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48 msgid "Expecting: non-empty value" -msgstr "" +msgstr "Očakáva sa: nejaká hodnota" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50 msgid "Expires" @@ -2181,9 +2198,9 @@ msgstr "Súbor nie je prístupný" msgid "Filename" msgstr "Názov súboru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" -msgstr "" +msgstr "Názov súboru obrazu zavedenia oznámeného klientom" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314 @@ -2227,7 +2244,7 @@ msgstr "Nájsť a pripojiť sa k sieti" #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9 msgid "Finish" -msgstr "" +msgstr "Dokončiť" #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15 msgid "Firewall" @@ -2253,7 +2270,7 @@ msgstr "Súbor firmvéru" msgid "Firmware Version" msgstr "Verzia firmvéru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2264,7 +2281,7 @@ msgstr "Nahrať obraz..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279 msgid "Flash image?" -msgstr "" +msgstr "Nahrať obraz?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411 msgid "Flash new firmware image" @@ -2272,7 +2289,7 @@ msgstr "Nahrať obraz s novým firmvérom" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:356 msgid "Flash operations" -msgstr "" +msgstr "Operácie nahrávania" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290 @@ -2289,7 +2306,7 @@ msgstr "Vynútiť 40MHz režim" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158 msgid "Force CCMP (AES)" -msgstr "" +msgstr "Vynútiť CCMP (AES)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598 msgid "Force DHCP on this network even if another server is detected." @@ -2297,7 +2314,7 @@ msgstr "Vynútiť server DHCP pre túto sieť, aj keď je rozpoznaný iný serve #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159 msgid "Force TKIP" -msgstr "" +msgstr "Vynútiť TKIP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160 msgid "Force TKIP and CCMP (AES)" @@ -2414,7 +2431,7 @@ msgstr "Vygenerovať nastavenie" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66 msgid "Generate Key" -msgstr "" +msgstr "Generovať kľúč" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460 msgid "Generate PMK locally" @@ -2582,6 +2599,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1066 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" +"Skryť <abbr title=\"Identifikátor nastavenej rozšírenej služby\">ESSID</abbr>" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:264 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:303 @@ -2606,13 +2624,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31 msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network" msgstr "" +"Adresa <abbr title=\"Adresa internetového protokolu\">IP</abbr> hostiteľa " +"alebo sieť" #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102 msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2685,7 +2705,7 @@ msgstr "IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316 msgid "IPv4 Firewall" -msgstr "" +msgstr "Brána Firewall IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 #, fuzzy @@ -2699,11 +2719,11 @@ msgstr "Adresa IPv4" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33 msgid "IPv4 assignment length" -msgstr "" +msgstr "Dĺžka priradenia IPv4" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181 msgid "IPv4 broadcast" -msgstr "" +msgstr "Vysielanie IPv4" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180 msgid "IPv4 gateway" @@ -2712,7 +2732,7 @@ msgstr "Brána IPv4" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168 msgid "IPv4 netmask" -msgstr "" +msgstr "Maska siete IPv4" #: modules/luci-base/htdocs/luci-static/resources/validation.js:291 msgid "IPv4 network in address/netmask notation" @@ -2772,7 +2792,7 @@ msgstr "IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319 msgid "IPv6 Firewall" -msgstr "" +msgstr "Brána Firewall IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203 msgid "IPv6 Neighbours" @@ -2814,7 +2834,7 @@ msgstr "" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" -msgstr "" +msgstr "Iba IPv6" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59 @@ -2893,7 +2913,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2904,6 +2924,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2914,10 +2935,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -2939,7 +2961,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197 msgid "Ignore <code>/etc/hosts</code>" -msgstr "" +msgstr "Ignorovať súbor <code>/etc/hosts</code>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579 msgid "Ignore interface" @@ -2974,7 +2996,7 @@ msgstr "Časový limit nečinnosti" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265 msgid "Inbound:" -msgstr "" +msgstr "Vstupný:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:90 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:95 @@ -3143,7 +3165,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Neplatný parameter" @@ -3153,7 +3175,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Neplatný príkaz" @@ -3306,7 +3328,7 @@ msgstr "Oneskorenie" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Čas prenájmu" @@ -3343,13 +3365,13 @@ msgstr "Legenda:" msgid "Limit" msgstr "Obmedzenie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "Obmedziť službu DNS rozhraniam podsietí, ktorým sa poskytuje DNS." +msgstr "Obmedzenie služby DNS rozhraniam podsietí, ktorým sa poskytuje DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." -msgstr "" +msgstr "Obmedzenie načúvanie na tieto rozhrania a slučku." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" @@ -3373,7 +3395,7 @@ msgstr "" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348 msgid "Link Monitoring" -msgstr "" +msgstr "Monitorovanie linky" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23 msgid "Link On" @@ -3384,6 +3406,8 @@ msgid "" "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward " "requests to" msgstr "" +"Zoznam serverov <abbr title=\"Domain Name System\">DNS</abbr>, ktorým sa " +"majú presmerovať požiadavky" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482 msgid "" @@ -3407,15 +3431,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Načúvacie rozhrania" @@ -3428,7 +3456,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Načúvať iba na zadaných rozhraniach, alebo na všetkých, ak nie sú určené" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3451,6 +3479,10 @@ msgstr "Načítava sa obsah priečinka…" msgid "Loading view…" msgstr "Načítava sa zobrazenie…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "Miestna adresa IP" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3479,7 +3511,7 @@ msgstr "Miestna adresa IPv4" msgid "Local IPv6 address" msgstr "Miestna adresa IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Iba miestna služba" @@ -3581,7 +3613,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:173 msgid "MAC-Address" -msgstr "MAC adresa" +msgstr "Adresa MAC" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011 msgid "MAC-Address Filter" @@ -3654,7 +3686,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3665,17 +3697,17 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1107 msgid "Maximum allowed Listen Interval" -msgstr "" +msgstr "Maximálny povolený interval načúvania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3716,7 +3748,7 @@ msgstr "Pamäť" msgid "Memory usage (%)" msgstr "Využitie pamäte (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3728,7 +3760,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Spôsob sa nenašiel" @@ -3826,7 +3858,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3956,9 +3988,9 @@ msgstr "Sieť" msgid "Network Utilities" msgstr "Sieťové nástroje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" -msgstr "" +msgstr "Obraz sieťového zavedenia" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7 msgid "Network device activity (kernel: netdev)" @@ -3972,7 +4004,7 @@ msgstr "Sieťové zariadenie nie je prítomné" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "Sieťové rozhranie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" @@ -4017,7 +4049,7 @@ msgstr "" msgid "No client associated" msgstr "Nie je priradený žiadny klient" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Neboli prijaté žiadne údaje" @@ -4067,7 +4099,7 @@ msgstr "" #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:279 msgid "No password set!" -msgstr "Heslo nie je nastavené!" +msgstr "Nie je nastavené heslo!" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:130 msgid "No peers defined yet" @@ -4111,7 +4143,7 @@ msgstr "Šum:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4147,9 +4179,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101 msgid "Not started on boot" -msgstr "" +msgstr "Nespustené po zavedení" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Nepodporované" @@ -4165,7 +4197,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4199,7 +4231,7 @@ msgstr "Získať adresu IPv6" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351 msgid "Off" -msgstr "" +msgstr "Vypnuté" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15 msgid "Off-State Delay" @@ -4207,7 +4239,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18 msgid "On" -msgstr "" +msgstr "Zapnuté" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96 msgid "On-Link route" @@ -4217,7 +4249,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4254,6 +4286,10 @@ msgstr "Otvoriť zoznam..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Pracovná frekvencia" @@ -4350,7 +4386,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275 msgid "Outbound:" -msgstr "" +msgstr "Výstupný:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:96 @@ -4382,7 +4418,7 @@ msgstr "Výstupné rozhranie" msgid "Output zone" msgstr "Výstupná zóna" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4391,7 +4427,7 @@ msgstr "Výstupná zóna" msgid "Override MAC address" msgstr "Prepísať MAC adresu" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4578,6 +4614,7 @@ msgstr "Časť zóny %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Heslo" @@ -4633,7 +4670,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Pozastavené" @@ -4649,7 +4686,7 @@ msgstr "Pozastavené" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294 msgid "Peak:" -msgstr "Vrchol:" +msgstr "Špička:" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89 msgid "Peer IP address to assign" @@ -4675,7 +4712,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Vykonať reštart" @@ -4683,7 +4720,7 @@ msgstr "Vykonať reštart" msgid "Perform reset" msgstr "Vykonať obnovenie" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Prístup zamietnutý" @@ -4773,13 +4810,13 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." -msgstr "" +msgstr "Zabránenie načúvaniu na týchto rozhraniach." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Prevents client-to-client communication" -msgstr "" +msgstr "Zabráni komunikácii medzi klientmi" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211 msgid "Primary Slave" @@ -4929,6 +4966,8 @@ msgid "" "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>-Server" msgstr "" +"Prečítanie súboru <code>/etc/ethers</code> na nastavenie servera <abbr title=" +"\"Dynamic Host Configuration Protocol\">DHCP</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:402 msgid "Really switch protocol?" @@ -4942,23 +4981,23 @@ msgstr "Grafy v reálnom čase" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Reštart" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Reštartuje sa…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Vykoná reštart operačného systému vášho zariadenia" @@ -4978,7 +5017,7 @@ msgstr "Opätovne pripojiť toto rozhranie" msgid "References" msgstr "Referencie" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Obnovuje sa" @@ -5038,7 +5077,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5060,7 +5099,7 @@ msgstr "" msgid "Required" msgstr "Vyžadované" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5177,13 +5216,13 @@ msgstr "Obnoviť na predvolené hodnoty" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162 msgid "Resolv and Hosts Files" -msgstr "" +msgstr "Súbory Resolv a Hosts" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188 msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Prostriedok sa nenašiel" @@ -5230,9 +5269,9 @@ msgstr "" msgid "Reverting configuration…" msgstr "Vracia sa späť konfigurácia…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" -msgstr "" +msgstr "Koreňový adresár súborov poskytovaných serverom TFTP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297 msgid "Root preparation" @@ -5248,11 +5287,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73 msgid "Route table" -msgstr "" +msgstr "Tabuľka smerovania" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60 msgid "Route type" -msgstr "" +msgstr "Typ smerovania" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:625 msgid "Router Advertisement-Service" @@ -5361,7 +5400,7 @@ msgstr "Uložiť a použiť" #: modules/luci-base/htdocs/luci-static/resources/form.js:602 msgid "Save error" -msgstr "" +msgstr "Uložiť chybu" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406 msgid "Save mtdblock" @@ -5420,6 +5459,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Nastavenia servera" @@ -5437,7 +5480,7 @@ msgstr "Typ služby" msgid "Services" msgstr "Služby" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Relácia vypršala" @@ -5537,7 +5580,7 @@ msgstr "Signál:" msgid "Size" msgstr "Veľkosť" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5567,7 +5610,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2883 #: modules/luci-compat/luasrc/model/network.lua:1428 msgid "Software VLAN" -msgstr "" +msgstr "Softvérová VLAN" #: modules/luci-compat/luasrc/view/cbi/header.htm:5 msgid "Some fields are invalid, cannot save values!" @@ -5865,7 +5908,7 @@ msgstr "Pevné smerovania" msgid "Static address" msgstr "Pevná adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5991,7 +6034,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Nastavenia TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Koreňový priečinok servera TFTP" @@ -6185,7 +6228,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Príkaz na reštartovanie zlyhal s kódom %d" @@ -6250,8 +6293,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6326,6 +6369,8 @@ msgid "" "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> in the local network" msgstr "" +"Toto je jediný server <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> v miestnej sieti" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -6378,7 +6423,7 @@ msgstr "" msgid "Timezone" msgstr "Časové pásmo" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Na prihlásenie…" @@ -6411,7 +6456,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:96 msgid "Traffic" -msgstr "Premávka" +msgstr "Prenos" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 @@ -6498,7 +6543,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6567,7 +6612,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "Neznáma chyba (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Neznámy kód chyby" @@ -6591,7 +6636,7 @@ msgstr "Kľúč bez názvu" msgid "Unsaved Changes" msgstr "Neuložené zmeny" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Nešpecifikovaná chyba" @@ -6666,7 +6711,7 @@ msgstr "Doba spustenia" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177 msgid "Use <code>/etc/ethers</code>" -msgstr "" +msgstr "Použiť súbor <code>/etc/ethers</code>" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269 msgid "Use DHCP advertised servers" @@ -6676,10 +6721,11 @@ msgstr "Použiť servery inzerované DHCP" msgid "Use DHCP gateway" msgstr "Použiť bránu DHCP" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6732,7 +6778,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6740,7 +6786,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "Použiť zabudovanú správu IPv6" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6755,9 +6801,10 @@ msgstr "Použiť zabudovanú správu IPv6" msgid "Use custom DNS servers" msgstr "Použiť vlastné servery DNS" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6768,7 +6815,7 @@ msgstr "Použiť vlastné servery DNS" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6779,6 +6826,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6789,6 +6837,16 @@ msgstr "" msgid "Use gateway metric" msgstr "Použiť metriku brány" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6801,7 +6859,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6822,7 +6880,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194 msgid "Used" -msgstr "" +msgstr "Využitá" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394 msgid "Used Key Slot" @@ -6848,6 +6906,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Používateľské meno" @@ -6877,16 +6936,19 @@ msgid "VPN Local port" msgstr "Miestny port siete VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Server VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Port servera VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6935,7 +6997,7 @@ msgstr "" msgid "Vendor" msgstr "Dodávateľ" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6980,7 +7042,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Čaká sa na zariadenie..." @@ -6989,7 +7051,7 @@ msgstr "Čaká sa na zariadenie..." msgid "Warning" msgstr "Upozornenie" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Varovanie: Existujú neuložené zmeny, ktoré sa pri reštarte stratia!" @@ -7026,7 +7088,7 @@ msgid "Wireless Adapter" msgstr "Bezdrôtový adaptér" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7139,7 +7201,7 @@ msgstr "Nastavenia ZRam" msgid "ZRam Size" msgstr "Veľkosť ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7214,7 +7276,7 @@ msgstr "dBm" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014 msgid "disable" -msgstr "" +msgstr "zakázaný" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:626 @@ -7238,8 +7300,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7277,11 +7339,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:640 msgid "hybrid mode" -msgstr "" +msgstr "hybridný režim" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36 msgid "if target is a network" -msgstr "" +msgstr "ak je cieľ sieťou" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63 msgid "ignore" @@ -7323,11 +7385,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76 msgid "no link" -msgstr "" +msgstr "bez linky" #: modules/luci-base/htdocs/luci-static/resources/validation.js:59 msgid "non-empty value" -msgstr "" +msgstr "nejaká hodnota" #: modules/luci-base/htdocs/luci-static/resources/form.js:3007 msgid "none" @@ -7345,12 +7407,12 @@ msgstr "" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:245 msgid "off" -msgstr "" +msgstr "vypnuté" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196 #: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:242 msgid "on" -msgstr "" +msgstr "zapnuté" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317 msgid "open network" @@ -7381,7 +7443,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982 msgid "routed" -msgstr "" +msgstr "smerované" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102 @@ -7429,9 +7491,9 @@ msgstr "jedinečná hodnota" msgid "unknown" msgstr "neznámy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" @@ -7546,15 +7608,15 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/validation.js:237 msgid "valid decimal value" -msgstr "" +msgstr "platná decimálna hodnota" #: modules/luci-base/htdocs/luci-static/resources/validation.js:405 msgid "valid hexadecimal WEP key" -msgstr "" +msgstr "platný hexadecimálny WEP kľúč" #: modules/luci-base/htdocs/luci-static/resources/validation.js:393 msgid "valid hexadecimal WPA key" -msgstr "" +msgstr "platný hexadecimálny WPA kľúč" #: modules/luci-base/htdocs/luci-static/resources/validation.js:368 msgid "valid host:port" @@ -7566,37 +7628,37 @@ msgstr "platný hostiteľ:port" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107 msgid "valid hostname" -msgstr "" +msgstr "platný názov hostiteľa" #: modules/luci-base/htdocs/luci-static/resources/validation.js:345 msgid "valid hostname or IP address" -msgstr "" +msgstr "platný názov hostiteľa alebo IP adresa" #: modules/luci-base/htdocs/luci-static/resources/validation.js:229 msgid "valid integer value" -msgstr "" +msgstr "platná celá hodnota" #: modules/luci-base/htdocs/luci-static/resources/validation.js:309 msgid "valid network in address/netmask notation" -msgstr "" +msgstr "platná sieť v anotácii adresa/sieťová maska" #: modules/luci-base/htdocs/luci-static/resources/validation.js:508 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" +msgstr "platné telefónne číslo (0-9, \"*\", \"#\", \"!\" or \".\")" #: modules/luci-base/htdocs/luci-static/resources/validation.js:332 #: modules/luci-base/htdocs/luci-static/resources/validation.js:335 msgid "valid port or port range (port1-port2)" -msgstr "" +msgstr "platný port alebo rozsah portov (port1-port2)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:324 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 msgid "valid port value" -msgstr "" +msgstr "platná hodnota portu" #: modules/luci-base/htdocs/luci-static/resources/validation.js:513 msgid "valid time (HH:MM:SS)" -msgstr "" +msgstr "platný čas (HH:MM:SS)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:435 msgid "value between %d and %d characters" @@ -7608,11 +7670,11 @@ msgstr "hodnota v rozpätí %f a %f" #: modules/luci-base/htdocs/luci-static/resources/validation.js:420 msgid "value greater or equal to %f" -msgstr "" +msgstr "hodnota väčšia alebo rovná %f" #: modules/luci-base/htdocs/luci-static/resources/validation.js:424 msgid "value smaller or equal to %f" -msgstr "" +msgstr "hodnota menšia alebo rovná %f" #: modules/luci-base/htdocs/luci-static/resources/validation.js:429 msgid "value with %d characters" @@ -7632,7 +7694,7 @@ msgstr "slabé zabezpečenie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46 msgid "yes" -msgstr "" +msgstr "áno" #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20 msgid "« Back" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index 185b3b3a9..77d85aae3 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-08-20 15:36+0000\n" -"Last-Translator: smorgasbeerd <viktorwestas@outlook.com>\n" +"PO-Revision-Date: 2020-10-29 08:32+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/luci/sv/>" "\n" "Language: sv\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -134,7 +134,7 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11 msgid "464XLAT (CLAT)" -msgstr "" +msgstr "464XLAT (CLAT)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241 msgid "5 Minute Load:" @@ -172,11 +172,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr>server-port" @@ -190,7 +190,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-adress" @@ -216,7 +216,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-gateway" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -228,27 +228,27 @@ msgstr "<abbr title=\"Lysdiod\">LED</abbr>-konfiguration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -264,7 +264,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "En katalog med samma namn finns redan." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "En ny inloggning krävs då autentiseringssessionen har upphört." @@ -399,7 +399,7 @@ msgstr "Aktiva DHCPv6-kontrakt" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -496,6 +496,10 @@ msgstr "Adress" msgid "Address to access local relay bridge" msgstr "Adress för att komma åt lokal reläbrygga" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -587,7 +591,7 @@ msgstr "" msgid "Allow listed only" msgstr "Tillåt enbart listade" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Tillåt localhost" @@ -613,7 +617,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Tillåt <em>root</em>-användaren att logga in med lösenord" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -924,7 +928,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -935,6 +939,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -945,6 +950,7 @@ msgstr "Bind gränssnitt" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1164,13 +1170,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Klient" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Klient-ID att skicka vid DHCP-förfrågning" @@ -1209,7 +1215,7 @@ msgstr "Samlar in data..." msgid "Command" msgstr "Kommando" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1276,7 +1282,7 @@ msgstr "Anslutningsförsök misslyckades" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Anslutning förlorad" @@ -1607,7 +1613,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Enheten kan inte nås!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1670,7 +1676,7 @@ msgstr "Inaktiverad" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1736,6 +1742,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Vill du verkligen radera \"%s\" ?" @@ -1756,7 +1766,7 @@ msgstr "" msgid "Domain required" msgstr "Domän krävs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Vitlista för domäner" @@ -1796,7 +1806,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/form.js:2620 msgid "Drag to reorder" -msgstr "" +msgstr "Dra för att sortera om" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341 msgid "Drop Duplicate Frames" @@ -1922,7 +1932,7 @@ msgstr "Aktivera NTP-klient" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Aktivera TFTP-server" @@ -2063,7 +2073,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Inkludera inte dessa gränssnitt" @@ -2085,7 +2095,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 msgid "Expecting: %s" -msgstr "" +msgstr "Förväntade: %s" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48 msgid "Expecting: non-empty value" @@ -2172,7 +2182,7 @@ msgstr "Fil ej nåbar" msgid "Filename" msgstr "Filnamn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2244,7 +2254,7 @@ msgstr "Fil för inbyggd programvara" msgid "Firmware Version" msgstr "Version för inre mjukvara" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2603,7 +2613,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2883,7 +2893,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2894,6 +2904,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2904,10 +2915,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -2993,7 +3005,7 @@ msgstr "Info" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101 msgid "Information" -msgstr "" +msgstr "Information" #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25 @@ -3133,7 +3145,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3143,7 +3155,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3294,7 +3306,7 @@ msgstr "Latens" msgid "Leaf" msgstr "Löv" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Kontraktstid" @@ -3331,11 +3343,11 @@ msgstr "" msgid "Limit" msgstr "Begränsa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3395,15 +3407,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista över SSH-nyckelfiler för auth" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3416,7 +3432,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Lyssna endast på det angivna gränssnittet eller, om o-specificerat på alla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Lyssningsportar för ankommande DNS-förfrågningar" @@ -3439,6 +3455,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3467,7 +3487,7 @@ msgstr "Lokal IPv4-adress" msgid "Local IPv6 address" msgstr "Lokal IPv6-adress" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Enbart lokal tjänst" @@ -3642,7 +3662,7 @@ msgstr "" msgid "Manual" msgstr "Manuell" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3655,15 +3675,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3704,7 +3724,7 @@ msgstr "Minne" msgid "Memory usage (%)" msgstr "Minnesanvändning (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3716,7 +3736,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3814,7 +3834,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Övervaka" @@ -3944,7 +3964,7 @@ msgstr "Nätverk" msgid "Network Utilities" msgstr "Nätverksverktyg" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Uppstartsbild för nätverket" @@ -4005,7 +4025,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4099,7 +4119,7 @@ msgstr "Buller:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4137,7 +4157,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4153,7 +4173,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4205,7 +4225,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "En utav värdnamn eller MAC-adress måste anges!" @@ -4242,6 +4262,10 @@ msgstr "Öppna lista..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4370,7 +4394,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4379,7 +4403,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4566,6 +4590,7 @@ msgstr "Del av zon %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Lösenord" @@ -4621,7 +4646,7 @@ msgstr "Genväg till det inre klient-certifikatet" msgid "Path to inner Private Key" msgstr "Genväg till den inre privata nyckeln" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4663,7 +4688,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Utför omstart" @@ -4671,7 +4696,7 @@ msgstr "Utför omstart" msgid "Perform reset" msgstr "Utför återställning" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4761,7 +4786,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Förhindra lyssning på dessa gränssnitt." @@ -4932,23 +4957,23 @@ msgstr "Realtidsgrafer" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Starta om" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Startar om din enhets operativsystem" @@ -4968,7 +4993,7 @@ msgstr "Återanslut det här gränssnittet" msgid "References" msgstr "Referens" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5028,7 +5053,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5050,7 +5075,7 @@ msgstr "" msgid "Required" msgstr "Nödvändig" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5173,7 +5198,7 @@ msgstr "Resolv och Värd-filer" msgid "Resolve file" msgstr "Resolv-fil" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5220,7 +5245,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Root-mappen för filer som skickas via TFTP" @@ -5408,6 +5433,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Server-inställningar" @@ -5425,7 +5454,7 @@ msgstr "Typ av tjänst" msgid "Services" msgstr "Tjänster" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5525,7 +5554,7 @@ msgstr "Signal:" msgid "Size" msgstr "Storlek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5850,7 +5879,7 @@ msgstr "Statiska rutter" msgid "Static address" msgstr "Statiska adresser" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5871,7 +5900,7 @@ msgstr "Status" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:356 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101 msgid "Stop" -msgstr "" +msgstr "Stopp" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770 @@ -5976,7 +6005,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Inställningar för TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Root för TFTP-server" @@ -6162,7 +6191,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6227,8 +6256,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6350,7 +6379,7 @@ msgstr "" msgid "Timezone" msgstr "Tidszon" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6468,7 +6497,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Det går inte att skicka" @@ -6537,7 +6566,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6561,7 +6590,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "Osparade ändringar" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6644,10 +6673,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "Använd DHCP-gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6700,7 +6730,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "Använd som root-filsystem (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6708,7 +6738,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6723,9 +6753,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "Använd anpassade DNS-servrar" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6736,7 +6767,7 @@ msgstr "Använd anpassade DNS-servrar" msgid "Use default gateway" msgstr "Använd standard-gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6747,6 +6778,7 @@ msgstr "Använd standard-gateway" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6757,6 +6789,16 @@ msgstr "Använd standard-gateway" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6769,7 +6811,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6816,6 +6858,7 @@ msgstr "Användarnyckel (PEM-krypterad)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Användarnamn" @@ -6845,16 +6888,19 @@ msgid "VPN Local port" msgstr "Lokal port för VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN-server" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Port för VPN-server" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6903,7 +6949,7 @@ msgstr "" msgid "Vendor" msgstr "Tillverkare" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6948,7 +6994,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Väntar på enheten..." @@ -6957,7 +7003,7 @@ msgstr "Väntar på enheten..." msgid "Warning" msgstr "Varning" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 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!" @@ -6995,7 +7041,7 @@ msgid "Wireless Adapter" msgstr "Trådlös adapter" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7106,7 +7152,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "något" @@ -7205,8 +7251,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7298,7 +7344,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/form.js:3007 msgid "none" -msgstr "ingen" +msgstr "inga" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55 @@ -7396,13 +7442,13 @@ msgstr "" msgid "unknown" msgstr "okänd" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" -msgstr "obegränsat" +msgstr "obegränsad" #: modules/luci-base/htdocs/luci-static/resources/form.js:3372 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 @@ -7415,7 +7461,7 @@ msgstr "obegränsat" #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53 #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38 msgid "unspecified" -msgstr "ospecifierat" +msgstr "ospecificerad" #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71 msgid "unspecified -or- create:" diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index 27deddd56..22425c56b 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -161,11 +161,11 @@ msgstr "" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" @@ -179,7 +179,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -202,7 +202,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" @@ -214,27 +214,27 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "" @@ -248,7 +248,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" @@ -383,7 +383,7 @@ msgstr "" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -480,6 +480,10 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -570,7 +574,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" @@ -594,7 +598,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -905,7 +909,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -916,6 +920,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -926,6 +931,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1142,13 +1148,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1187,7 +1193,7 @@ msgstr "" msgid "Command" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1254,7 +1260,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1585,7 +1591,7 @@ msgstr "" msgid "Device unreachable!" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "" @@ -1646,7 +1652,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1710,6 +1716,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1730,7 +1740,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1893,7 +1903,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2034,7 +2044,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2143,7 +2153,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2215,7 +2225,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2572,7 +2582,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2852,7 +2862,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2863,6 +2873,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2873,10 +2884,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3102,7 +3114,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3112,7 +3124,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3263,7 +3275,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3300,11 +3312,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3364,15 +3376,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3384,7 +3400,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3407,6 +3423,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3435,7 +3455,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3610,7 +3630,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3623,15 +3643,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3672,7 +3692,7 @@ msgstr "" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3684,7 +3704,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3782,7 +3802,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3912,7 +3932,7 @@ msgstr "" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -3973,7 +3993,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4067,7 +4087,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4105,7 +4125,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4121,7 +4141,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4173,7 +4193,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4210,6 +4230,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4338,7 +4362,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4347,7 +4371,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4534,6 +4558,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4589,7 +4614,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4631,7 +4656,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4639,7 +4664,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4729,7 +4754,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4898,23 +4923,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4934,7 +4959,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -4994,7 +5019,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5016,7 +5041,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5139,7 +5164,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5186,7 +5211,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5374,6 +5399,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5391,7 +5420,7 @@ msgstr "" msgid "Services" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5491,7 +5520,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5816,7 +5845,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5942,7 +5971,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6128,7 +6157,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6193,8 +6222,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6314,7 +6343,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6430,7 +6459,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6499,7 +6528,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6523,7 +6552,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6606,10 +6635,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6662,7 +6692,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6670,7 +6700,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6685,9 +6715,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6698,7 +6729,7 @@ msgstr "" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6709,6 +6740,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6719,6 +6751,16 @@ msgstr "" msgid "Use gateway metric" msgstr "" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "" @@ -6731,7 +6773,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6778,6 +6820,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "" @@ -6807,16 +6850,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6865,7 +6911,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6910,7 +6956,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6919,7 +6965,7 @@ msgstr "" msgid "Warning" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" @@ -6956,7 +7002,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7065,7 +7111,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "" @@ -7164,8 +7210,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7355,9 +7401,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index 42903ac9a..94c8a8835 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-08-25 17:04+0000\n" -"Last-Translator: Ataberk Özen <ataberkozen123@gmail.com>\n" +"PO-Revision-Date: 2020-09-29 14:41+0000\n" +"Last-Translator: Mehmet Çetin <excom_zkko@hotmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/luci/tr/>" "\n" "Language: tr\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: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -147,7 +147,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431 msgid "802.11r Fast Transition" -msgstr "" +msgstr "802.11r Hızlı Değişim" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 msgid "802.11w Association SA Query maximum timeout" @@ -163,36 +163,37 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619 msgid "802.11w maximum timeout" -msgstr "" +msgstr "802.11w maksimum zaman aşımı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626 msgid "802.11w retry timeout" -msgstr "" +msgstr "802.11w yeniden deneme zaman aşımı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956 -#, fuzzy msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" -msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> port sorgula" +msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> sorgulama bağlantı noktası" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" -msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> sunucu port" +msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> sunucusu bağlantı noktası" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "" "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " "order of the resolvfile" msgstr "" +"<abbr title=\"Domain Name System\">DNS</abbr> sunucuları resolvfile sırasına " +"göre sorgulanacak" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protokolü Sürüm 4\">IPv4</abbr>-Adres" @@ -217,9 +218,9 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protokolü Sürüm 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" -msgstr "" +msgstr "<abbr title=\"İnternet Protokolü 6\">IPv6</abbr>-Suffix (hex)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -229,15 +230,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Ayarları" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Adı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -245,7 +246,7 @@ msgstr "" "<abbr title=\"maximal\">Maks.</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr> leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -253,7 +254,7 @@ msgstr "" "<abbr title=\"maximal\">Maks.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> paket boyutu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">Maks.</abbr> eşzamanlı sorgu" @@ -262,22 +263,25 @@ msgid "" "<br/>Note: you need to manually restart the cron service if the crontab file " "was empty before editing." msgstr "" +"<br/>Not: Düzenlemeden önce crontab dosyası boş ise cron servisini manuel " +"olarak yeniden başlatmanız gerekir." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2720 msgid "A directory with the same name already exists." -msgstr "" +msgstr "Aynı isim ile bir dizin zaten bulunuyor." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" +"Kimlik doğrulama oturumu sona erdiğinden dolayı yeni bir oturum açma gerekli." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:909 msgid "A43C + J43 + A43" -msgstr "" +msgstr "A43C + J43 + A43" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910 msgid "A43C + J43 + A43 + V43" -msgstr "" +msgstr "A43C + J43 + A43 + V43" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922 msgid "ADSL" @@ -301,23 +305,23 @@ msgstr "ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365 msgid "ARP IP Targets" -msgstr "" +msgstr "ARP IP Hedefleri" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357 msgid "ARP Interval" -msgstr "" +msgstr "ARP Aralığı" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381 msgid "ARP Validation" -msgstr "" +msgstr "ARP Doğrulaması" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373 msgid "ARP mode to consider a slave as being up" -msgstr "" +msgstr "ARP modu bir köle'yi çalışıyormuş gibi kabul edecek" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77 msgid "ARP monitoring is not supported for the selected policy!" -msgstr "" +msgstr "Seçilen poliçede ARP izlemesi desteklenmiyor!" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 msgid "ARP retry threshold" @@ -325,7 +329,7 @@ msgstr "ARP yenileme aralığı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917 msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" +msgstr "ATM (Eşzamansız Aktarım Modu)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938 msgid "ATM Bridges" @@ -334,12 +338,12 @@ msgstr "ATM Köprüleri" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66 msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" +msgstr "ATM Sanal Kanal Tanımlayıcı (VCI)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:971 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70 msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" +msgstr "ATM Sanal Yol Tanımlayıcı (VPI)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938 msgid "" @@ -351,11 +355,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62 msgid "ATM device number" -msgstr "" +msgstr "ATM cihaz numarası" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" -msgstr "" +msgstr "ATU-C Sistem Satıcısı Kimliği" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:543 @@ -392,21 +396,19 @@ msgstr "Aktif Bağlantılar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:92 -#, fuzzy msgid "Active DHCP Leases" -msgstr "Aktif DHCP Kiraları" +msgstr "Aktif DHCP Rezervasyonları" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:94 -#, fuzzy msgid "Active DHCPv6 Leases" -msgstr "Aktif DHCPv6 Kiraları" +msgstr "Aktif DHCPv6 Rezervasyonları" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203 msgid "Active-Backup policy (active-backup, 1)" -msgstr "" +msgstr "Aktif-Yedekleme politikası (active-backup, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -414,11 +416,11 @@ msgstr "Ad-Hoc" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208 msgid "Adaptive load balancing (balance-alb, 6)" -msgstr "" +msgstr "Uyarlanabilir yük dengelemesi (balance-alb, 6)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207 msgid "Adaptive transmit load balancing (balance-tlb, 5)" -msgstr "" +msgstr "Uyarlanabilir iletim yükü dengeleme (balance-tlb, 5)" #: modules/luci-base/htdocs/luci-static/resources/form.js:2167 #: modules/luci-base/htdocs/luci-static/resources/form.js:2170 @@ -437,37 +439,37 @@ msgstr "Ekle" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942 msgid "Add ATM Bridge" -msgstr "" +msgstr "ATM Köprüsü Ekle" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92 msgid "Add IPv4 address…" -msgstr "" +msgstr "IPv4 bağlantı ekle…" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:207 msgid "Add IPv6 address…" -msgstr "" +msgstr "IPv6 bağlantı ekle…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65 msgid "Add LED action" -msgstr "" +msgstr "LED eylemi ekle" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219 msgid "Add VLAN" -msgstr "" +msgstr "VLAN ekle" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15 msgid "Add instance" -msgstr "" +msgstr "Madde ekle" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:152 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:247 msgid "Add key" -msgstr "" +msgstr "Anahtar ekle" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248 msgid "Add local domain suffix to names served from hosts files" -msgstr "" +msgstr "Host dosyalarından sunulan adlara yerel alan soneki ekleyin" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757 @@ -476,7 +478,7 @@ msgstr "Yeni arabirim ekle..." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125 msgid "Add peer" -msgstr "" +msgstr "Eş ekle" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200 msgid "Additional Hosts files" @@ -501,12 +503,16 @@ msgstr "Adres" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151 msgid "Address to access local relay bridge" -msgstr "" +msgstr "Yerel aktarma köprüsüne erişim adresi" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "Adresler" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" -msgstr "" +msgstr "Yönetim" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:324 @@ -521,15 +527,15 @@ msgstr "Gelişmiş Ayarlar" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" -msgstr "" +msgstr "Toplam İletim Gücü (ACTATP)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258 msgid "Aggregation Selection Logic" -msgstr "" +msgstr "Toplama Seçim Mantığı" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Aggregator: All slaves down or has no slaves (stable, 0)" -msgstr "" +msgstr "Toplayıcı: Tüm bağımlılar devrede veya hiç bağımlı yok (stable, 0)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263 msgid "" @@ -557,7 +563,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "All Servers" -msgstr "" +msgstr "Tüm Sunucular" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209 msgid "" @@ -588,27 +594,26 @@ msgid "Allow full UCI access for legacy applications" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892 -#, fuzzy msgid "Allow legacy 802.11b rates" -msgstr "Eski 802.11b oranlarına izin ver" +msgstr "Eski 802.11b hızlarına izin ver" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015 msgid "Allow listed only" msgstr "Yanlızca listelenenlere izin ver" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157 msgid "Allow rebooting the device" -msgstr "" +msgstr "Cihazın yeniden başlamasına izin ver" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -"Uzak ana bilgisayarların yerel SSH'a yönlendirilen portlara bağlanmasına " -"izin ver" +"Uzak ana makinelerin yerel yönlendirilen SSH bağlantı noktalarına " +"bağlanmasına izin ver" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 msgid "Allow root logins with password" @@ -622,7 +627,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -663,56 +668,64 @@ msgid "Annex A + L + M (all)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899 +#, fuzzy msgid "Annex A G.992.1" -msgstr "" +msgstr "Annex A G.992.1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900 +#, fuzzy msgid "Annex A G.992.2" -msgstr "" +msgstr "Annex A G.992.2" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901 +#, fuzzy msgid "Annex A G.992.3" -msgstr "" +msgstr "Annex A G.992.3" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902 +#, fuzzy msgid "Annex A G.992.5" -msgstr "" +msgstr "Annex A G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:892 msgid "Annex B (all)" -msgstr "" +msgstr "Annex B (hepsi)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:895 +#, fuzzy msgid "Annex B G.992.1" -msgstr "" +msgstr "Annex B G.992.1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:896 +#, fuzzy msgid "Annex B G.992.3" -msgstr "" +msgstr "Annex B G.992.3" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897 +#, fuzzy msgid "Annex B G.992.5" -msgstr "" +msgstr "Annex B G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:893 msgid "Annex J (all)" -msgstr "" +msgstr "Annex J (hepsi)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903 +#, fuzzy msgid "Annex L G.992.3 POTS 1" -msgstr "" +msgstr "Annex L G.992.3 POTS 1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894 msgid "Annex M (all)" -msgstr "" +msgstr "Annex M (hepsi)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904 msgid "Annex M G.992.3" -msgstr "" +msgstr "Annex M G.992.3" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905 msgid "Annex M G.992.5" -msgstr "" +msgstr "Annex M G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 msgid "Announce as default router even if no public prefix is available." @@ -760,7 +773,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4215 msgid "Applying configuration changes… %ds" -msgstr "" +msgstr "Yapılandırma değişiklikleri uygulanıyor… %ds" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56 msgid "Architecture" @@ -851,7 +864,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170 msgid "Automount Filesystem" -msgstr "" +msgstr "Dosya Sistemini Otomatik Bağla" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166 msgid "Automount Swap" @@ -923,7 +936,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910 msgid "Beacon Interval" -msgstr "" +msgstr "İşaret Aralığı" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:324 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 @@ -933,7 +946,7 @@ msgid "" "defined backup patterns." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -944,6 +957,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -954,6 +968,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1099,7 +1114,7 @@ msgstr "Değişiklikler" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4311 msgid "Changes have been reverted." -msgstr "" +msgstr "Değişiklikler geri alındı." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46 msgid "Changes the administrator password for accessing the device" @@ -1172,13 +1187,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "İstemci" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "" @@ -1217,7 +1232,7 @@ msgstr "Veri alınıyor..." msgid "Command" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "" @@ -1227,7 +1242,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72 msgid "Comment" -msgstr "" +msgstr "Açıklama" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634 msgid "" @@ -1247,7 +1262,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4028 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426 msgid "Configuration" -msgstr "" +msgstr "Yapılandırma" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4190 msgid "Configuration changes applied." @@ -1284,7 +1299,7 @@ msgstr "" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "" @@ -1615,7 +1630,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Cihaz ulaşılamaz!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Cihaz ulaşılamaz! Hala cihazı bekliyorum..." @@ -1635,7 +1650,7 @@ msgstr "Dizin" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879 msgid "Disable" -msgstr "Pasif" +msgstr "Devre dışı bırak" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579 msgid "" @@ -1678,7 +1693,7 @@ msgstr "Devre dışı" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "" @@ -1705,7 +1720,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330 msgid "Dismiss" -msgstr "Reddet" +msgstr "Kapat" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895 msgid "Distance Optimization" @@ -1742,6 +1757,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "" @@ -1762,7 +1781,7 @@ msgstr "" msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "" @@ -1874,7 +1893,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879 msgid "Enable" -msgstr "" +msgstr "Çalıştır" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462 msgid "" @@ -1925,7 +1944,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "" @@ -2066,7 +2085,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2175,7 +2194,7 @@ msgstr "" msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "" @@ -2247,7 +2266,7 @@ msgstr "" msgid "Firmware Version" msgstr "Firmware Versiyon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "" @@ -2393,7 +2412,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" -msgstr "" +msgstr "Genel Ayarlar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967 @@ -2424,7 +2443,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146 msgid "Global Settings" -msgstr "" +msgstr "Genel Ayarlar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875 msgid "Global network options" @@ -2585,7 +2604,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140 msgid "Host" -msgstr "" +msgstr "Ana bilgisayar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22 msgid "Host entries" @@ -2604,7 +2623,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2759,7 +2778,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84 msgid "IPv6" -msgstr "" +msgstr "IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319 msgid "IPv6 Firewall" @@ -2884,7 +2903,7 @@ msgid "" "device node" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2895,6 +2914,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2905,10 +2925,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3048,7 +3069,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17 msgid "Interface" -msgstr "" +msgstr "Arayüz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62 msgid "Interface %q device auto-migrated from %q to %q." @@ -3091,7 +3112,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079 msgid "Interface name" -msgstr "" +msgstr "Arayüz ismi" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:122 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:272 @@ -3134,7 +3155,7 @@ msgstr "" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3144,7 +3165,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "" @@ -3295,7 +3316,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "" @@ -3332,11 +3353,11 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3396,15 +3417,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "" @@ -3416,7 +3441,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "" @@ -3439,6 +3464,10 @@ msgstr "" msgid "Loading view…" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3467,7 +3496,7 @@ msgstr "" msgid "Local IPv6 address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "" @@ -3642,7 +3671,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3655,15 +3684,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "" @@ -3704,7 +3733,7 @@ msgstr "Bellek" msgid "Memory usage (%)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3716,7 +3745,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3814,7 +3843,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "" @@ -3944,7 +3973,7 @@ msgstr "Ağ" msgid "Network Utilities" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "" @@ -4005,7 +4034,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "" @@ -4029,7 +4058,7 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59 msgid "No information available" -msgstr "" +msgstr "Bilgi bulunmamaktadır" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8 @@ -4099,7 +4128,7 @@ msgstr "" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4137,7 +4166,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "" @@ -4153,7 +4182,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" @@ -4205,7 +4234,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -4242,6 +4271,10 @@ msgstr "" msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "" @@ -4370,7 +4403,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4379,7 +4412,7 @@ msgstr "" msgid "Override MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4566,6 +4599,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "" @@ -4621,7 +4655,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4663,7 +4697,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "" @@ -4671,7 +4705,7 @@ msgstr "" msgid "Perform reset" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "" @@ -4716,7 +4750,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" -msgstr "" +msgstr "Bağlantı noktası" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278 msgid "Port status:" @@ -4761,7 +4795,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "" @@ -4930,23 +4964,23 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Yeniden başlat" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "" @@ -4966,7 +5000,7 @@ msgstr "" msgid "References" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5012,7 +5046,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" -msgstr "" +msgstr "Kaldır" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914 msgid "Replace wireless configuration" @@ -5026,7 +5060,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "" @@ -5048,7 +5082,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "" @@ -5171,7 +5205,7 @@ msgstr "" msgid "Resolve file" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5191,7 +5225,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372 msgid "Restore" -msgstr "Geri Yükleme" +msgstr "Geri yükle" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382 msgid "Restore backup" @@ -5218,7 +5252,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "" @@ -5299,7 +5333,7 @@ msgstr "SSH sunucu adresi" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74 msgid "SSH server port" -msgstr "SSH sunucu portu" +msgstr "SSH sunucusu bağlantı noktası" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58 msgid "SSH username" @@ -5407,6 +5441,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "" @@ -5422,9 +5460,9 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36 msgid "Services" -msgstr "Servisler" +msgstr "Hizmetler" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5524,7 +5562,7 @@ msgstr "Sinyal:" msgid "Size" msgstr "Boyut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "" @@ -5849,7 +5887,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5975,7 +6013,7 @@ msgstr "" msgid "TFTP Settings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "" @@ -6161,7 +6199,7 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "" @@ -6226,8 +6264,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6347,7 +6385,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "" @@ -6463,7 +6501,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "" @@ -6521,7 +6559,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:1983 #: modules/luci-compat/luasrc/model/network.lua:971 msgid "Unknown" -msgstr "" +msgstr "Bilinmiyor" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 msgid "Unknown and unsupported connection method." @@ -6532,7 +6570,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "" @@ -6556,7 +6594,7 @@ msgstr "" msgid "Unsaved Changes" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "" @@ -6584,7 +6622,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3860 msgid "Upload" -msgstr "" +msgstr "Yükleme" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:413 msgid "" @@ -6639,10 +6677,11 @@ msgstr "" msgid "Use DHCP gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6695,7 +6734,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "" @@ -6703,7 +6742,7 @@ msgstr "" msgid "Use builtin IPv6-management" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6718,9 +6757,10 @@ msgstr "" msgid "Use custom DNS servers" msgstr "Özel DNS sunucularını kullan" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6731,7 +6771,7 @@ msgstr "Özel DNS sunucularını kullan" msgid "Use default gateway" msgstr "Varsayılan ağ geçidini kullan" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6742,6 +6782,7 @@ msgstr "Varsayılan ağ geçidini kullan" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6752,6 +6793,16 @@ msgstr "Varsayılan ağ geçidini kullan" msgid "Use gateway metric" msgstr "Ağ geçidi metriğini kullan" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Yönlendirme tablosunu kullan" @@ -6764,7 +6815,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6811,6 +6862,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Kullanıcı adı" @@ -6840,16 +6892,19 @@ msgid "VPN Local port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6898,7 +6953,7 @@ msgstr "" msgid "Vendor" msgstr "Satıcı" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "" @@ -6943,7 +6998,7 @@ msgid "" "and ad-hoc mode) to be installed." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "" @@ -6952,9 +7007,11 @@ msgstr "" msgid "Warning" msgstr "Uyarı" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" +"Uyarı: Yeniden başlatılınca kaybedilecek henüz kaydedilmemiş değişiklikler " +"var!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37 msgid "Weak" @@ -6989,7 +7046,7 @@ msgid "Wireless Adapter" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7100,7 +7157,7 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "herhangi" @@ -7199,8 +7256,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7390,9 +7447,9 @@ msgstr "" msgid "unknown" msgstr "bilinmeyen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index feb951d44..1b852f2e4 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2020-09-04 13:36+0000\n" -"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"PO-Revision-Date: 2020-10-27 21:26+0000\n" +"Last-Translator: Yevhen Chebotarev <gekinadres@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/luci/" "uk/>\n" "Language: uk\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -177,13 +177,13 @@ msgstr "" "<abbr title=\"Basic Service Set Identifier — ідентифікатор основної служби " "послуг\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "" "Порт <abbr title=\"Domain Name System — система доменних імен\">DNS</abbr>-" "запиту" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" "Порт <abbr title=\"Domain Name System — система доменних імен\">DNS</abbr>-" @@ -203,7 +203,7 @@ msgstr "" "<abbr title=\"Extended Service Set Identifier — ідентифікатор розширеної " "служби послуг\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Інтернет-протокол версії 4\">IPv4</abbr>-адреса" @@ -228,7 +228,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-шлюз" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-суфікс (hex)" @@ -241,17 +241,17 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Назва <abbr title=\"Light Emitting Diode — світлодіод\">LED</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" "<abbr title=\"Media Access Control — управління доступом до носія\">MAC</" "abbr>-адреса" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Унікальний ідентифікатор DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -259,7 +259,7 @@ msgstr "" "<abbr title=\"Максимум\">Макс.</abbr> оренд <abbr title=\"Dynamic Host " "Configuration Protocol — протокол динамічної конфігурації вузла\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -268,7 +268,7 @@ msgstr "" "\"Extension Mechanisms for Domain Name System — Механізми розширень для " "доменної системи імен\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"Максимум\">Макс.</abbr> одночасних запитів" @@ -284,7 +284,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "Каталог з такою ж назвою вже існує." -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "" "Оскільки сеанс автентифікації закінчився, потрібен новий вхід у систему." @@ -430,7 +430,7 @@ msgstr "Активні оренди DHCPv6" msgid "Active-Backup policy (active-backup, 1)" msgstr "Політика активного резервного копіювання (active-backup, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -527,6 +527,10 @@ msgstr "Адреса" msgid "Address to access local relay bridge" msgstr "Адреса для доступу до мосту локального ретранслятора" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -541,7 +545,7 @@ msgstr "Адміністрування" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 msgid "Advanced Settings" -msgstr "Додаткові параметри" +msgstr "Розширені налаштування" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" @@ -622,7 +626,7 @@ msgstr "Дозволяти застарілі швидк. 802.11b" msgid "Allow listed only" msgstr "Дозволити тільки зазначені" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Дозволити локальний вузол" @@ -648,7 +652,7 @@ msgstr "Дозволити зондування функцій системи" msgid "Allow the <em>root</em> user to login with password" msgstr "Дозволити користувачеві <em>root</em> вхід до системи з паролем" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "" @@ -975,7 +979,7 @@ msgstr "" "складається із позначених opkg змінених файлів конфігурації, невідокремних " "базових файлів, та файлів за користувацькими шаблонами резервного копіювання." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -988,6 +992,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -998,6 +1003,7 @@ msgstr "Прив'язка інтерфейсу" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1233,13 +1239,13 @@ msgstr "" "Натисніть \"Зберегти mtdblock\", щоб завантажити вказаний файл mtdblock. " "(ПРИМІТКА: ЦЕ ФУНКЦІЯ ДЛЯ ПРОФЕСІОНАЛІВ!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Клієнт" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "Ідентифікатор клієнта для відправки при запиті DHCP" @@ -1280,7 +1286,7 @@ msgstr "Збирання даних..." msgid "Command" msgstr "Команда" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Команду виконано успішно" @@ -1351,7 +1357,7 @@ msgstr "Невдала спроба підключення" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "З'єднання втрачено" @@ -1696,7 +1702,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Пристрій недосяжний!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Пристрій недосяжний! Досі чекаємо на пристрій..." @@ -1759,7 +1765,7 @@ msgstr "Вимкнено" msgid "Disassociate On Low Acknowledgement" msgstr "Роз'єднувати за низького підтвердження" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Відкидати висхідні RFC1918-відповіді" @@ -1832,6 +1838,10 @@ msgstr "" "Не переспрямовувати зворотні <abbr title=\"Domain Name System — система " "доменних імен\">DNS</abbr>-запити для локальних мереж" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Справді видалити \"%s\"?" @@ -1852,7 +1862,7 @@ msgstr "Справді рекурсивно видалити каталог \"%s msgid "Domain required" msgstr "Потрібен домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "\"Білий список\" доменів" @@ -2028,7 +2038,7 @@ msgstr "Увімкнути клієнта NTP" msgid "Enable Single DES" msgstr "Увімкнути Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Увімкнути TFTP-сервер" @@ -2174,7 +2184,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "Виключити інтерфейси" @@ -2283,7 +2293,7 @@ msgstr "Файл недоступний" msgid "Filename" msgstr "Ім'я файлу" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "І'мя завантажувального образу, що оголошується клієнтам" @@ -2357,7 +2367,7 @@ msgstr "Файл мікропрограми" msgid "Firmware Version" msgstr "Версія мікропрограми" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Фіксований порт для вихідних DNS-запитів" @@ -2505,7 +2515,7 @@ msgstr "Метрика шлюзу" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" -msgstr "Загальні параметри" +msgstr "Головні налаштування" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967 @@ -2722,7 +2732,7 @@ msgid "Host-Uniq tag content" msgstr "Зміст тегу Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -3008,7 +3018,7 @@ msgstr "" "Якщо обрано, монтувати пристрій за міткою його розділу замість фіксованого " "вузла пристрою" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -3019,6 +3029,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -3029,10 +3040,11 @@ msgstr "" msgid "If unchecked, no default route is configured" msgstr "Якщо не позначено, типовий маршрут не налаштовано" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3272,7 +3284,7 @@ msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "" "Задано неприпустимий VLAN ID! Доступні тільки унікальні ідентифікатори." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "Неприпустимий аргумент" @@ -3282,7 +3294,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Неприпустима команда" @@ -3435,7 +3447,7 @@ msgstr "Затримка" msgid "Leaf" msgstr "Лист" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Час оренди" @@ -3472,12 +3484,12 @@ msgstr "Легенда:" msgid "Limit" msgstr "Межа" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Обмежувати службу DNS інтерфейсами підмереж, на яких ми обслуговуємо DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" "Обмежитися прослуховуванням цих інтерфейсів і повернутися до початку циклу." @@ -3556,15 +3568,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Список файлів SSH-ключів для авторизації" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Список доменів, для яких дозволено RFC1918-відповіді" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Список доменів, які підтримують результати підробки NX-доменів" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Інтерфейси прослуховування" @@ -3578,7 +3594,7 @@ msgstr "" "Прослуховувати тільки на цьому інтерфейсі, якщо <em>невизначено</em> – на " "всіх" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Порт прослуховування для вхідних DNS-запитів" @@ -3601,6 +3617,10 @@ msgstr "Завантаження вмісту каталогу…" msgid "Loading view…" msgstr "Завантаження подання…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3629,7 +3649,7 @@ msgstr "Локальна адреса IPv4" msgid "Local IPv6 address" msgstr "Локальна адреса IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Тільки локальна служба" @@ -3815,7 +3835,7 @@ msgstr "" msgid "Manual" msgstr "Вручну" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "Master" @@ -3828,15 +3848,15 @@ msgstr "Макс. досяжна швидкість передачі даних msgid "Maximum allowed Listen Interval" msgstr "Максимальний дозволений інтервал прослуховування" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Максимально допустима кількість активних оренд DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Максимально допустима кількість одночасних DNS-запитів" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Максимально допустимий розмір UDP-пакетів EDNS.0" @@ -3877,7 +3897,7 @@ msgstr "Пам'ять" msgid "Memory usage (%)" msgstr "Використання пам'яті, %" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3889,7 +3909,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh Id" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Метод не знайдено" @@ -3987,7 +4007,7 @@ msgstr "" msgid "ModemManager" msgstr "Менеджер модему" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Диспетчер" @@ -4119,7 +4139,7 @@ msgstr "Мережа" msgid "Network Utilities" msgstr "Мережеві утиліти" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Образ для мережевого завантаження" @@ -4180,7 +4200,7 @@ msgstr "Сигналу RX немає" msgid "No client associated" msgstr "Не пов’язано жодного клієнта" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Жодних даних не отримано" @@ -4274,7 +4294,7 @@ msgstr "Шум:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Не запобіжні помилки CRC (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "Без шаблону заміни" @@ -4312,7 +4332,7 @@ msgstr "Не існує" msgid "Not started on boot" msgstr "Не запущено під час завантаження" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Не підтримується" @@ -4328,7 +4348,7 @@ msgstr "DNS-запит" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "Кількість кешованих записів DNS (макс. – 10000, 0 – без кешування)" @@ -4380,7 +4400,7 @@ msgstr "Маршрут On-Link" msgid "On-State Delay" msgstr "Затримка On-State" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Має бути зазначено одне з двох – ім'я вузла або МАС-адреса!" @@ -4417,6 +4437,10 @@ msgstr "Відкрити список..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Робоча частота" @@ -4561,7 +4585,7 @@ msgstr "Вихідний інтерфейс" msgid "Output zone" msgstr "Вихідна зона" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4570,7 +4594,7 @@ msgstr "Вихідна зона" msgid "Override MAC address" msgstr "Перевизначити MAC-адресу" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4762,6 +4786,7 @@ msgstr "Частина зони %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Пароль" @@ -4817,7 +4842,7 @@ msgstr "Шлях до внутрішнього сертифіката клієн msgid "Path to inner Private Key" msgstr "Шлях до внутрішнього закритого ключа" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "Призупинено" @@ -4859,7 +4884,7 @@ msgstr "Цілковита пряма секретність" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Виконати перезавантаження" @@ -4867,7 +4892,7 @@ msgstr "Виконати перезавантаження" msgid "Perform reset" msgstr "Виконати відновлення" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Дозволу не надано" @@ -4959,7 +4984,7 @@ msgstr "" "Вважати вузол недоступним після визначеної кількості невдач отримання ехо-" "пакета LCP, використовуйте 0, щоб ігнорувати невдачі" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Перешкоджати прослуховуванню цих інтерфейсів." @@ -5139,23 +5164,23 @@ msgstr "Графіки у реальному часі" msgid "Reassociation Deadline" msgstr "Кінцевий термін реассоціації" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Захист від переприв'язки" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Перезавантаження" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Перезавантаження…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Перезавантажити операційну систему вашого пристрою" @@ -5175,7 +5200,7 @@ msgstr "Перепідключити цей інтерфейс" msgid "References" msgstr "Посилання" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "Поновлюється" @@ -5235,7 +5260,7 @@ msgstr "Запит IPv6-адреси" msgid "Request IPv6-prefix of length" msgstr "Запит довжини IPv6-префіксу" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Час очікування запиту минув" @@ -5257,7 +5282,7 @@ msgstr "" msgid "Required" msgstr "Вимагається" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Вимагається для деяких провайдерів, наприклад, Charter із DOCSIS 3" @@ -5387,7 +5412,7 @@ msgstr "Файли resolv і hosts" msgid "Resolve file" msgstr "Файл resolv" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ресурс не знайдено" @@ -5434,7 +5459,7 @@ msgstr "Помилка запиту на скасування зі статус msgid "Reverting configuration…" msgstr "Відкат конфігурації…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Кореневий каталог для файлів TFTP" @@ -5629,6 +5654,10 @@ msgstr "" "Надсилати ехо-пакети LCP зі вказаним інтервалом (секунди), ефективно тільки " "в поєднанні з порогом помилок" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Налаштування сервера" @@ -5646,7 +5675,7 @@ msgstr "Тип сервісу" msgid "Services" msgstr "Сервіси" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Час сеансу минув" @@ -5697,8 +5726,8 @@ msgstr "Налаштування DHCP-сервера" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" -"Секунди з великою кількістю помилок (<abbr title=\"Severely Errored Seconds\"" -">SES</abbr>)" +"Секунди з великою кількістю помилок (<abbr title=\"Severely Errored Seconds" +"\">SES</abbr>)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80 @@ -5750,7 +5779,7 @@ msgstr "Сигнал:" msgid "Size" msgstr "Розмір" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Розмір кешу запитів DNS" @@ -6089,7 +6118,7 @@ msgstr "Статичні маршрути" msgid "Static address" msgstr "Статична адреса" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6221,7 +6250,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "Налаштування TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Корінь TFTP-сервера" @@ -6436,7 +6465,7 @@ msgstr "" "мережі." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Команда <em>reboot</em> завершилася невдало з кодом %d" @@ -6514,8 +6543,8 @@ msgstr "" "Відвантажений файл образу не містить підтримуваний формат. Переконайтеся, що " "ви вибираєте універсальний формат образу для вашої платформи." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6659,7 +6688,7 @@ msgstr "Інтервал часу для зміни ключа GTK" msgid "Timezone" msgstr "Часовий пояс" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "До входу…" @@ -6779,7 +6808,7 @@ msgstr "Не вдалося визначити зовнішню ІР-адрес msgid "Unable to determine upstream interface" msgstr "Не вдалося визначити висхідний інтерфейс" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Не вдалося опрацювати запит" @@ -6848,7 +6877,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "Невідома помилка (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Невідомий код помилки" @@ -6872,7 +6901,7 @@ msgstr "Ключ без назви" msgid "Unsaved Changes" msgstr "Незбережені зміни" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Невизначена помилка" @@ -6960,10 +6989,11 @@ msgstr "Використовувати сервери, оголошені DHCP" msgid "Use DHCP gateway" msgstr "Використовувати DHCP-шлюз" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -7016,7 +7046,7 @@ msgstr "Використовувати як зовнішній оверлей (/ msgid "Use as root filesystem (/)" msgstr "Використовувати як кореневу файлову систему (/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Використовувати прапорець широкомовності" @@ -7024,7 +7054,7 @@ msgstr "Використовувати прапорець широкомовно msgid "Use builtin IPv6-management" msgstr "Використовувати вбудоване керування IPv6" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -7039,9 +7069,10 @@ msgstr "Використовувати вбудоване керування IPv msgid "Use custom DNS servers" msgstr "Використовувати особливі DNS-сервери" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -7052,7 +7083,7 @@ msgstr "Використовувати особливі DNS-сервери" msgid "Use default gateway" msgstr "Використовувати типовий шлюз" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -7063,6 +7094,7 @@ msgstr "Використовувати типовий шлюз" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -7073,6 +7105,16 @@ msgstr "Використовувати типовий шлюз" msgid "Use gateway metric" msgstr "Використовувати метрику шлюзу" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Використовувати таблицю маршрутизації" @@ -7085,7 +7127,7 @@ msgstr "Використовувати системні сертифікати" msgid "Use system certificates for inner-tunnel" msgstr "Використовувати системні сертифікати для внутрішнього тунелю" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7142,6 +7184,7 @@ msgstr "Ключ користувача (PEM-кодований)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Ім'я користувача" @@ -7171,16 +7214,19 @@ msgid "VPN Local port" msgstr "Локальний порт VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN-сервер" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Порт VPN-сервера" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "SHA1-геш сертифіката VPN-сервера" @@ -7231,7 +7277,7 @@ msgstr "" msgid "Vendor" msgstr "Постачальник" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Клас постачальника для відправки при запиті DHCP" @@ -7278,7 +7324,7 @@ msgstr "" "WPA-шифрування потребує інсталяції <em>wpa_supplicant</em> (для режиму " "клієнта) або <em>hostapd</em> (для Точки доступу та режиму ad-hoc)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Очікуємо пристрій..." @@ -7287,7 +7333,7 @@ msgstr "Очікуємо пристрій..." msgid "Warning" msgstr "Застереження" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Застереження: Є незбережені зміни, які буде втрачено при перезавантаженні!" @@ -7328,7 +7374,7 @@ msgid "Wireless Adapter" msgstr "Бездротовий адаптер" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7445,7 +7491,7 @@ msgstr "Налаштування ZRam" msgid "ZRam Size" msgstr "Розмір ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "будь-який" @@ -7544,8 +7590,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7739,9 +7785,9 @@ msgstr "унікальне значення" msgid "unknown" msgstr "невідомий" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index 6428f225e..88a55b2c3 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-08-16 06:59+0200\n" -"PO-Revision-Date: 2020-04-03 11:29+0000\n" -"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"PO-Revision-Date: 2020-10-26 20:34+0000\n" +"Last-Translator: 0x2f0713 <namhaiha0308@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/luci/" "vi/>\n" "Language: vi\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -176,11 +176,11 @@ msgstr "thời gian thử lại chuẩn 802.11w" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Dịch vụ căn bản đặt Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Hệ thống phân giải tên miền\">DNS</abbr> query port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "" "<abbr title=\"Hệ thống phân giải tên miền (Domain Name System)\">DNS</abbr> " @@ -198,7 +198,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Tên mạng WiFi (ESSID)\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"giao thức internet phiên bản 4\">IPv4</abbr>-Address" @@ -223,7 +223,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"giao thức internet phiên bản 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"giao thức internet phiên bản 6\">IPv6</abbr>-Suffix (hex)" @@ -236,16 +236,16 @@ msgstr "<abbr title=\"đèn LEDLED\">LED</abbr> Configuration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" "<abbr title=\"Kiểm soát kết nối phương tiện truyền thông\">MAC</abbr>-Address" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Định danh độc nhất cho DHCP\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -253,7 +253,7 @@ msgstr "" "<abbr title=\"Tối đa\">Max.</abbr> <abbr title=\"Giao thức cấu hình máy chủ " "động\">DHCP</abbr> leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -261,7 +261,7 @@ msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Cơ chế mở rộng hệ thống " "phân giải tên miền\">EDNS0</abbr> packet size" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"Tối đa\">Max.</abbr> concurrent queries" @@ -277,7 +277,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "thư mục có tên này đã tồn tại" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "Cần đăng nhận lại vì phiên xác thực cũ đã hết hạn" @@ -419,7 +419,7 @@ msgstr "Khởi động xin id từ DHCPv6" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -516,6 +516,10 @@ msgstr "Địa chỉ" msgid "Address to access local relay bridge" msgstr "Địa chỉ truy cập cầu chuyển tiếp địa phương" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -530,7 +534,7 @@ msgstr "Quản trị" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 msgid "Advanced Settings" -msgstr "Cài đặt nâng cao " +msgstr "Cài đặt nâng cao" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" @@ -606,7 +610,7 @@ msgstr "Cho phép kế thừ tốc độ 802.11b" msgid "Allow listed only" msgstr "Chỉ cho phép danh sách liệt kê" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "Cho phép máy chủ cục bộ" @@ -630,7 +634,7 @@ msgstr "" msgid "Allow the <em>root</em> user to login with password" msgstr "Cho phép người dùng <em>root</em> đăng nhập với mật khẩu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "Cho phép phản hồi ngược trong dải IP 127.0.0.0/8 cho dịch vụ RBL" @@ -953,7 +957,7 @@ msgstr "" "đổi tập tin cấu hình được đánh dấu bởi opkg, tập tin cơ sở thiết yếu và các " "mẫu sao lưu của người dùng đá được xác định" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -966,6 +970,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -976,6 +981,7 @@ msgstr "Liên kết với giao diện" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1196,13 +1202,13 @@ msgstr "" "Nhấp \"chọn khối mtdblock\" để tải xuống tập tin mtdblock. (Chú ý: tính năng " "này chỉ nên dành cho chuyên gia" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "Khách hàng" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "ID máy khách gửi khi yêu cầu DHCP" @@ -1243,7 +1249,7 @@ msgstr "Đang lấy dữ liệu..." msgid "Command" msgstr "Lệnh" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "Lệnh thành công" @@ -1314,7 +1320,7 @@ msgstr "Kết nối thất bại" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "Mất kết nối" @@ -1652,7 +1658,7 @@ msgstr "" msgid "Device unreachable!" msgstr "Thiết bị không thể truy cập! " -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "Thiết bị không thể truy cập! Chờ thiết bị..." @@ -1715,7 +1721,7 @@ msgstr "Vô hiệu hóa" msgid "Disassociate On Low Acknowledgement" msgstr "Hủy liên kết với xác nhận mức thấp" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "Hủy phản hồi ngược RFC1918" @@ -1784,6 +1790,10 @@ msgstr "Không chuyển tiếp yêu cầu mà máy chủ tên công cộng khôn msgid "Do not forward reverse lookups for local networks" msgstr "Không chuyển tiếp tra cứu ngược cho các mạng cục bộ" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "Bạn thật sự muốn xóa \"%s\" ?" @@ -1804,7 +1814,7 @@ msgstr "Bạn thật sự muốn xóa toàn bộ thư mục \"%s\" ?" msgid "Domain required" msgstr "Tên miền yêu cầu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "Danh sách tên miền được chấp nhận" @@ -1978,7 +1988,7 @@ msgstr "Kích hoạt máy chủ NTP" msgid "Enable Single DES" msgstr "Kích hoạt DES đơn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "Kích hoạt máy chủ TFTP" @@ -2120,7 +2130,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "" @@ -2229,7 +2239,7 @@ msgstr "Tệp tin không thể truy cập" msgid "Filename" msgstr "Tên tệp" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "Tên tệp của tập tin ảnh khởi động được thông báo cho máy khách" @@ -2303,7 +2313,7 @@ msgstr "Tập tin phần mềm" msgid "Firmware Version" msgstr "Phiên bản phần mềm" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "Đã sửa cổng nguồn cho các truy vấn DNS" @@ -2665,7 +2675,7 @@ msgid "Host-Uniq tag content" msgstr "Nội dung thẻ Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2947,7 +2957,7 @@ msgid "" msgstr "" "Nếu được chỉ định, gắn thiết bị theo nhãn phân vùng thay vì nốt cố định" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2958,6 +2968,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2969,10 +2980,11 @@ msgid "If unchecked, no default route is configured" msgstr "" "Nếu không được chỉ định, không có tuyến mạng mặc định nào được cấu hình" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3208,7 +3220,7 @@ msgstr "" "Địa chỉ ID Vlan không hợp lệ được cung cấp! Chỉ những ID duy nhất mới được " "phép" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3218,7 +3230,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "Lệnh ko hợp lệ" @@ -3372,7 +3384,7 @@ msgstr "Độ trễ" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "Thời gian được cấp một địa chỉ IP" @@ -3409,13 +3421,13 @@ msgstr "" msgid "Limit" msgstr "Giới hạn " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "" "Giới hạn dịch vụ DNS đối với các giao diện mạng con mà chúng tôi đang phục " "vụ DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "" @@ -3485,15 +3497,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Danh sách tập tin khóa SSH để xác thực" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "Danh sách tên miền chấp nhận phản hồi RFC1918" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "Danh sách các máy chủ cung cấp kết quả tên miền NX không có thật" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "Lắng nghe giao diện mạng" @@ -3505,7 +3521,7 @@ msgstr "Lắng nghe cổng" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Chỉ nghe giao diện mạng đã cho (nếu không xác định sẽ nghe tất cả)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "Cổng để nghe cho các truy vấn DNS gửi đến" @@ -3528,6 +3544,10 @@ msgstr "Đang tải nội dung thư mục..." msgid "Loading view…" msgstr "Tải cảnh..." +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3556,7 +3576,7 @@ msgstr "Địa chỉ IPv4 cục bộ" msgid "Local IPv6 address" msgstr "Địa chỉ IPv6 cục bộ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "Chỉ dùng dịch vụ cục bộ" @@ -3736,7 +3756,7 @@ msgstr "" msgid "Manual" msgstr "Bằng tay" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "" @@ -3749,15 +3769,15 @@ msgstr "Tối đa tốc độ dữ liệu đạt được (ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "Chu kỳ nghe tối đa cho phép" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "Số lượng tối đa máy mượn địa chỉ từ DHCP đang hoạt động" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "Số lượng truy vấn DNS đồng thời tối đa được phép" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "Kích thước tối đa được phép của gói UDP EDNS.0" @@ -3798,7 +3818,7 @@ msgstr "Bộ nhớ" msgid "Memory usage (%)" msgstr "Bộ nhớ sử dụng (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3810,7 +3830,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "Không thể tìm được phương pháp này" @@ -3908,7 +3928,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "Monitor" @@ -4040,7 +4060,7 @@ msgstr "Mạng " msgid "Network Utilities" msgstr "Tiện ích mạng" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "Tập tin ảnh khởi động mạng" @@ -4101,7 +4121,7 @@ msgstr "" msgid "No client associated" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "Không có data nhận được" @@ -4195,7 +4215,7 @@ msgstr "Nhiễu:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Lỗi CRC không tiền phát sinh (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4233,7 +4253,7 @@ msgstr "Không có" msgid "Not started on boot" msgstr "Chưa bắt đầu khi khởi động" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "Không được hỗ trợ" @@ -4249,7 +4269,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" "Số lượng mục DNS được lưu trong bộ nhớ cache (tối đa là 10000, 0 là không " @@ -4303,7 +4323,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "Một trong những tên máy chủ hoặc địa chỉ mac phải được chỉ định" @@ -4340,6 +4360,10 @@ msgstr "Đang mở danh sách ..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "Tần số hoạt động" @@ -4481,7 +4505,7 @@ msgstr "Giao diện đầu ra" msgid "Output zone" msgstr "Vùng đầu ra" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4490,7 +4514,7 @@ msgstr "Vùng đầu ra" msgid "Override MAC address" msgstr "Ghi đè địa chỉ MAC" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4679,6 +4703,7 @@ msgstr "Phần của vùng %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "Mật mã" @@ -4734,7 +4759,7 @@ msgstr "Đường dẫn tới chứng chỉ nội bộ của máy khách" msgid "Path to inner Private Key" msgstr "Đường dẫn tới khoá riêng tư nội bộ" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "" @@ -4776,7 +4801,7 @@ msgstr "Bí mật chuyển tiếp hoàn hảo" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "Tiến hành khởi động lại" @@ -4784,7 +4809,7 @@ msgstr "Tiến hành khởi động lại" msgid "Perform reset" msgstr "Thực hiện khởi động lại" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "Bạn không có quyền làm" @@ -4876,7 +4901,7 @@ msgstr "" "Coi như thiết bị mạng ngang hàng mất kết nối sau số lần kiểm tra lỗi bằng " "phương pháp LCP, sử dụng 0 để bỏ qua" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "Ngăn thực hiện nghe tại giao diện mạng này" @@ -5056,23 +5081,23 @@ msgstr "Biểu đồ thời gian thực" msgid "Reassociation Deadline" msgstr "Hạn chót tái tổ chức" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "Bảo vệ tái kết nối" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "Khởi động lại" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "Đang khởi động lại..." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "Khởi động lại hệ điều hành của công cụ" @@ -5092,7 +5117,7 @@ msgstr "Tái kết nối giao diện mạng này" msgid "References" msgstr "Tham khảo" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "" @@ -5152,7 +5177,7 @@ msgstr "Yêu cầu địa chỉ mạng IPv6" msgid "Request IPv6-prefix of length" msgstr "Yêu cầu tiền tố IPv6 có độ dài" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "Hết thời gian yêu cầu" @@ -5174,7 +5199,7 @@ msgstr "" msgid "Required" msgstr "Bắt buộc" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "Cần thiết cho một số ISP nhất định, ví dụ: Điều lệ với DOCSIS 3" @@ -5306,7 +5331,7 @@ msgstr "Tập tin Resolv và Hosts" msgid "Resolve file" msgstr "Tập tin Resolv" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Không tìm được nguồn" @@ -5353,7 +5378,7 @@ msgstr "Yêu cầu hoàn nguyên không thành công với trạng thái <code>% msgid "Reverting configuration…" msgstr "Đang hoàn nguyên cấu hình .." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "Thư mục gốc cho các tệp được lấy qua TFTP" @@ -5546,6 +5571,10 @@ msgid "" "conjunction with failure threshold" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "Cấu hình máy chủ" @@ -5563,7 +5592,7 @@ msgstr "Kiểu dịch vụ" msgid "Services" msgstr "Dịch vụ " -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "Phiên hết hạn" @@ -5666,7 +5695,7 @@ msgstr "Tín hiệu:" msgid "Size" msgstr "Dung lượng " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "Dung lượng của bộ nhớ tạm truy vấn DNS" @@ -6001,7 +6030,7 @@ msgstr "Định tuyến tĩnh" msgid "Static address" msgstr "Địa chỉ tĩnh" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6133,7 +6162,7 @@ msgstr "" msgid "TFTP Settings" msgstr "Cài đặt TFTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "Máy chủ gốc TFTP" @@ -6338,7 +6367,7 @@ msgstr "" "các cổng khác cho mạng cục bộ." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "Lệnh khởi động lại không thành công với mã lỗi %d" @@ -6416,8 +6445,8 @@ 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-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6555,7 +6584,7 @@ msgstr "Chu kỳ tạo lại mật khẩu mới GTK" msgid "Timezone" msgstr "Múi giờ " -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "Đến phần đăng nhập" @@ -6675,7 +6704,7 @@ msgstr "Không thể xác định địa chỉ IP ngoại" msgid "Unable to determine upstream interface" msgstr "Không thể xác định dòng dữ liệu giao diện mạng" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "Không thể gửi" @@ -6744,7 +6773,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "Lỗi không xác định (%s" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "Mã lỗi không xác định" @@ -6768,7 +6797,7 @@ msgstr "Khóa không tên" msgid "Unsaved Changes" msgstr "Thay đổi không lưu" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "Lỗi không thể xác định" @@ -6855,10 +6884,11 @@ msgstr "Dùng máy chủ quảng bá HDCP" msgid "Use DHCP gateway" msgstr "Dùng DHCP gateway" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6911,7 +6941,7 @@ msgstr "Sử dụng như overlay ngoại (/overlay)" msgid "Use as root filesystem (/)" msgstr "Sử dụng như thư mục hệ thống gốc" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "Sử dụng cờ quảng bá" @@ -6919,7 +6949,7 @@ msgstr "Sử dụng cờ quảng bá" msgid "Use builtin IPv6-management" msgstr "Sử dụng trình quản lý IPv6 đã được tích hợp và hệ thống" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6934,9 +6964,10 @@ msgstr "Sử dụng trình quản lý IPv6 đã được tích hợp và hệ th msgid "Use custom DNS servers" msgstr "Sử dụng máy chủ DNS tự tạo" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6947,7 +6978,7 @@ msgstr "Sử dụng máy chủ DNS tự tạo" msgid "Use default gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6958,6 +6989,7 @@ msgstr "" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6968,6 +7000,16 @@ msgstr "" msgid "Use gateway metric" msgstr "Sử dụng gateway metric" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "Sử dụng bảng định tuyến" @@ -6980,7 +7022,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -7034,6 +7076,7 @@ msgstr "Khóa người dùng (mã hóa PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "Tên người dùng " @@ -7063,16 +7106,19 @@ msgid "VPN Local port" msgstr "Cổng cục bộ VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "Máy chủ VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "Cổng máy chủ VPM" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "Chứng chỉ của máy chủ VPN được băm theo thuật toán SHA1" @@ -7121,7 +7167,7 @@ msgstr "" msgid "Vendor" msgstr "Máy cung cấp" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "Lớp máy cung cấp để gửi khi yêu cầu DHCP" @@ -7168,7 +7214,7 @@ msgstr "" "Mã hóa WPA yêu cầu phải cài đặt wpa_supplicant (đối với chế độ máy khách) " "hoặc hostapd (đối với chế độ AP và ad-hoc)." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "Đợi thiết bị..." @@ -7177,7 +7223,7 @@ msgstr "Đợi thiết bị..." msgid "Warning" msgstr "Cảnh báo" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Cảnh báo: Những thay đổi chưa được lưu sẽ bị xóa khi khởi động lại!" @@ -7217,7 +7263,7 @@ msgid "Wireless Adapter" msgstr "Bộ tương hợp không dây" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7334,7 +7380,7 @@ msgstr "Thiết đặt ZRam" msgid "ZRam Size" msgstr "Kích cỡ ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "Bất kể" @@ -7434,8 +7480,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7627,9 +7673,9 @@ msgstr "Giá trị độc nhất" msgid "unknown" msgstr "Không xác định" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po index d35be0dab..54b8a3133 100644 --- a/modules/luci-base/po/zh_Hans/base.po +++ b/modules/luci-base/po/zh_Hans/base.po @@ -4,15 +4,15 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: izilzty <izilzty@outlook.com>\n" +"PO-Revision-Date: 2020-10-10 13:26+0000\n" +"Last-Translator: Haoyu <1902457591@qq.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luci/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -93,7 +93,6 @@ msgid "-- please select --" msgstr "-- 请选择 --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 -#, fuzzy msgctxt "sstp log level value" msgid "0" msgstr "0" @@ -103,7 +102,6 @@ msgid "0 = not using RSSI threshold, 1 = do not change driver default" msgstr "0 = 不使用 RSSI 阈值,1 = 驱动默认值" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 -#, fuzzy msgctxt "sstp log level value" msgid "1" msgstr "1" @@ -117,7 +115,6 @@ msgid "15 Minute Load:" msgstr "15 分钟负载:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 -#, fuzzy msgctxt "sstp log level value" msgid "2" msgstr "2" @@ -177,11 +174,11 @@ msgstr "802.11w 重试超时" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 查询端口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 服务器端口" @@ -197,7 +194,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr> 地址" @@ -221,7 +218,7 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 网关" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 后缀(十六进制)" @@ -234,15 +231,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 配置" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 名称" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr> 地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -250,7 +247,7 @@ msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> 租约数量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -258,7 +255,7 @@ msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> 数据包大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">最大</abbr>并发查询数" @@ -273,7 +270,7 @@ msgstr "" msgid "A directory with the same name already exists." msgstr "已存在同名的目录。" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "由于身份验证会话已过期,需要重新登录。" @@ -410,7 +407,7 @@ msgstr "已分配的 DHCPv6 租约" msgid "Active-Backup policy (active-backup, 1)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -507,6 +504,10 @@ msgstr "地址" msgid "Address to access local relay bridge" msgstr "接入本地中继桥的地址" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -597,7 +598,7 @@ msgstr "允许传统的 802.11b 速率" msgid "Allow listed only" msgstr "仅允许列表内" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "允许本机" @@ -621,7 +622,7 @@ msgstr "允许系统功能探测" msgid "Allow the <em>root</em> user to login with password" msgstr "允许 <em>root</em> 用户凭密码登录" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "允许 127.0.0.0/8 回环范围内的上行响应,例如:RBL 服务" @@ -937,7 +938,7 @@ msgstr "" "下面是待备份的文件清单。包含了更改的配置文件、必要的基础文件和用户自定义的需" "备份文件。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -948,6 +949,7 @@ msgstr "动态绑定到接口而不是通配符地址(推荐为 linux 默认 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -958,6 +960,7 @@ msgstr "绑定接口" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -1182,13 +1185,13 @@ msgstr "" "单击“保存 mtdblock”以下载指定的 mtdblock 文件。(注意:此功能适用于专业人" "士!)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "客户端 Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "请求 DHCP 时发送的客户端 ID" @@ -1227,7 +1230,7 @@ msgstr "正在收集数据…" msgid "Command" msgstr "命令" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "命令成功" @@ -1297,7 +1300,7 @@ msgstr "尝试连接失败" msgid "Connection attempt failed." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "失去连接" @@ -1634,7 +1637,7 @@ msgstr "" msgid "Device unreachable!" msgstr "无法连接到设备!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "无法连接到设备!仍旧等待设备…" @@ -1697,7 +1700,7 @@ msgstr "已禁用" msgid "Disassociate On Low Acknowledgement" msgstr "在低 Ack 应答时断开连接" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "丢弃 RFC1918 上行响应数据" @@ -1764,6 +1767,10 @@ msgstr "不转发公共域名服务器无法回应的请求" msgid "Do not forward reverse lookups for local networks" msgstr "不转发本地网络的反向查询" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "您真的要删除“%s”吗?" @@ -1784,7 +1791,7 @@ msgstr "您真的要删除目录“%s”吗?" msgid "Domain required" msgstr "忽略空域名解析" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "域名白名单" @@ -1952,7 +1959,7 @@ msgstr "启用 NTP 客户端" msgid "Enable Single DES" msgstr "启用单个 DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "启用 TFTP 服务器" @@ -2093,7 +2100,7 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "排除接口" @@ -2202,7 +2209,7 @@ msgstr "文件无法访问" msgid "Filename" msgstr "文件名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "向客户端通告的启动镜像文件名" @@ -2274,7 +2281,7 @@ msgstr "固件文件" msgid "Firmware Version" msgstr "固件版本" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "指定的 DNS 查询源端口" @@ -2634,7 +2641,7 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq 标签内容" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2914,7 +2921,7 @@ msgid "" "device node" msgstr "如果指定,则通过分区卷标而不是固定的设备文件来挂载设备" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2925,6 +2932,7 @@ msgstr "如果指定,则通过分区卷标而不是固定的设备文件来挂 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2935,10 +2943,11 @@ msgstr "如果指定,则通过分区卷标而不是固定的设备文件来挂 msgid "If unchecked, no default route is configured" msgstr "留空则不配置默认路由" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3171,7 +3180,7 @@ msgstr "无效的 VLAN ID!只有 %d 和 %d 之间的 ID 有效。" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "无效的 VLAN ID!只允许唯一的 ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "无效参数" @@ -3181,7 +3190,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "无效命令" @@ -3332,7 +3341,7 @@ msgstr "延迟" msgid "Leaf" msgstr "叶节点" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "租期" @@ -3369,11 +3378,11 @@ msgstr "图例:" msgid "Limit" msgstr "客户数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "仅在网卡所属的子网中提供 DNS 服务。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "仅监听这些接口和环回接口。" @@ -3441,15 +3450,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "用于认证的 SSH 密钥文件列表" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "允许 RFC1918 响应的域名列表" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "允许虚假空域名响应的服务器列表" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "监听接口" @@ -3461,7 +3474,7 @@ msgstr "监听端口" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "仅监听指定的接口,未指定则监听全部" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "入站 DNS 查询端口" @@ -3484,6 +3497,10 @@ msgstr "正在载入目录内容…" msgid "Loading view…" msgstr "正在载入视图…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3512,7 +3529,7 @@ msgstr "本地 IPv4 地址" msgid "Local IPv6 address" msgstr "本地 IPv6 地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "仅本地服务" @@ -3687,7 +3704,7 @@ msgstr "确保使用以下命令来复制根文件系统:" msgid "Manual" msgstr "手动" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "主" @@ -3700,15 +3717,15 @@ msgstr "最大可达数据速率(ATTNDR)" msgid "Maximum allowed Listen Interval" msgstr "允许的最大监听间隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "允许的最大 DHCP 租用数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "允许的最大并发 DNS 查询数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "允许的最大 EDNS.0 UDP 数据包大小" @@ -3749,7 +3766,7 @@ msgstr "内存" msgid "Memory usage (%)" msgstr "内存使用率(%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "Mesh" @@ -3761,7 +3778,7 @@ msgstr "Mesh ID" msgid "Mesh Id" msgstr "Mesh ID" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "方法未找到" @@ -3859,7 +3876,7 @@ msgstr "" msgid "ModemManager" msgstr "调制解调器管理器" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "监听" @@ -3989,7 +4006,7 @@ msgstr "网络" msgid "Network Utilities" msgstr "网络工具" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "网络启动镜像" @@ -4051,7 +4068,7 @@ msgstr "无接收信号" msgid "No client associated" msgstr "没有关联的客户端" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "没有接收到数据" @@ -4145,7 +4162,7 @@ msgstr "噪声:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "非抢占 CRC 错误(CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "非全部地址" @@ -4183,7 +4200,7 @@ msgstr "不存在" msgid "Not started on boot" msgstr "开机时不启动" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "不支持" @@ -4199,7 +4216,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "缓存的 DNS 条目数量(最大 10000,0 表示不缓存)" @@ -4251,7 +4268,7 @@ msgstr "On-Link 路由" msgid "On-State Delay" msgstr "通电时间" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "请指定主机名或MAC地址!" @@ -4288,6 +4305,10 @@ msgstr "打开列表…" msgid "OpenConnect (CISCO AnyConnect)" msgstr "OpenConnect (CISCO AnyConnect)" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "工作频率" @@ -4422,7 +4443,7 @@ msgstr "网络出口" msgid "Output zone" msgstr "出口区域" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4431,7 +4452,7 @@ msgstr "出口区域" msgid "Override MAC address" msgstr "重设 MAC 地址" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4618,6 +4639,7 @@ msgstr "区域 %q" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "密码" @@ -4673,7 +4695,7 @@ msgstr "内部客户端证书的路径" msgid "Path to inner Private Key" msgstr "内部私钥的路径" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "暂停" @@ -4715,7 +4737,7 @@ msgstr "完全正向保密" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "执行重启" @@ -4723,7 +4745,7 @@ msgstr "执行重启" msgid "Perform reset" msgstr "执行重置" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "没有权限" @@ -4813,7 +4835,7 @@ msgid "" "ignore failures" msgstr "在指定数量的 LCP 响应故障后假定链路已断开,0 为忽略故障" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "不监听这些接口。" @@ -4987,23 +5009,23 @@ msgstr "实时信息" msgid "Reassociation Deadline" msgstr "重关联截止时间" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "重绑定保护" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "重启" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "正在重启…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "重启您设备上的系统" @@ -5023,7 +5045,7 @@ msgstr "重连此接口" msgid "References" msgstr "引用" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "刷新" @@ -5083,7 +5105,7 @@ msgstr "请求 IPv6 地址" msgid "Request IPv6-prefix of length" msgstr "请求指定长度的 IPv6 前缀" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "请求超时" @@ -5105,7 +5127,7 @@ msgstr "" msgid "Required" msgstr "必须" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "某些 ISP 需要,例如:同轴线网络 DOCSIS 3" @@ -5232,7 +5254,7 @@ msgstr "HOSTS 和解析文件" msgid "Resolve file" msgstr "解析文件" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "未找到资源" @@ -5279,7 +5301,7 @@ msgstr "恢复请求失败,状态 <code>%h</code>" msgid "Reverting configuration…" msgstr "正在恢复配置…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "TFTP 服务器的根目录" @@ -5469,6 +5491,10 @@ msgid "" "conjunction with failure threshold" msgstr "定时发送 LCP 响应(秒),仅在结合了故障阈值时有效" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "服务器设置" @@ -5486,7 +5512,7 @@ msgstr "服务类型" msgid "Services" msgstr "服务" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "会话已过期" @@ -5588,7 +5614,7 @@ msgstr "信号:" msgid "Size" msgstr "大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "DNS 查询缓存的大小" @@ -5917,7 +5943,7 @@ msgstr "静态路由" msgid "Static address" msgstr "静态地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -6045,7 +6071,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP 设置" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP 服务器根目录" @@ -6244,7 +6270,7 @@ msgstr "" "网。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "reboot 命令失败,代码 %d" @@ -6315,8 +6341,8 @@ msgid "" "you choose the generic image format for your platform." msgstr "不支持所上传的映像文件格式,请选择适合当前平台的通用映像文件。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6444,7 +6470,7 @@ msgstr "重新加密 GTK 的时间间隔" msgid "Timezone" msgstr "时区" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "去登录…" @@ -6562,7 +6588,7 @@ msgstr "无法确认外部 IP 地址" msgid "Unable to determine upstream interface" msgstr "无法确认上游接口" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "无法调度" @@ -6631,7 +6657,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "未知错误(%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "未知错误代码" @@ -6655,7 +6681,7 @@ msgstr "未命名的密钥" msgid "Unsaved Changes" msgstr "未保存的配置" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "未指定的错误" @@ -6740,10 +6766,11 @@ msgstr "使用 DHCP 通告的服务器" msgid "Use DHCP gateway" msgstr "使用 DHCP 网关" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6796,7 +6823,7 @@ msgstr "作为外部 overlay 使用(/overlay)" msgid "Use as root filesystem (/)" msgstr "作为根文件系统使用(/)" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "使用广播标签" @@ -6804,7 +6831,7 @@ msgstr "使用广播标签" msgid "Use builtin IPv6-management" msgstr "使用内置的 IPv6 管理" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6819,9 +6846,10 @@ msgstr "使用内置的 IPv6 管理" msgid "Use custom DNS servers" msgstr "使用自定义的 DNS 服务器" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6832,7 +6860,7 @@ msgstr "使用自定义的 DNS 服务器" msgid "Use default gateway" msgstr "使用默认网关" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6843,6 +6871,7 @@ msgstr "使用默认网关" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6853,6 +6882,16 @@ msgstr "使用默认网关" msgid "Use gateway metric" msgstr "使用网关跃点" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "使用路由表" @@ -6865,7 +6904,7 @@ msgstr "使用系统证书" msgid "Use system certificates for inner-tunnel" msgstr "为内置隧道使用系统证书" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6918,6 +6957,7 @@ msgstr "用户密钥(PEM)" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "用户名" @@ -6947,16 +6987,19 @@ msgid "VPN Local port" msgstr "VPN 本地端口" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN 服务器" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "VPN 服务器端口" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "VPN 服务器证书的 SHA1 哈希值" @@ -7005,7 +7048,7 @@ msgstr "值不能为空" msgid "Vendor" msgstr "Vendor" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "请求 DHCP 时发送的 Vendor Class 选项" @@ -7052,7 +7095,7 @@ msgstr "" "WPA 加密需要安装 wpa_supplicant(客户端模式)或安装 hostapd(接入点 AP、点对" "点 Ad-Hoc 模式)。" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "等待设备…" @@ -7061,7 +7104,7 @@ msgstr "等待设备…" msgid "Warning" msgstr "警告" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "警告:未保存的更改会在重启时丢失!" @@ -7100,7 +7143,7 @@ msgid "Wireless Adapter" msgstr "无线适配器" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7211,7 +7254,7 @@ msgstr "ZRam 设置" msgid "ZRam Size" msgstr "ZRam 大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "任意" @@ -7310,8 +7353,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7503,9 +7546,9 @@ msgstr "唯一值" msgid "unknown" msgstr "未知" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po index 9c7b04566..910667142 100644 --- a/modules/luci-base/po/zh_Hant/base.po +++ b/modules/luci-base/po/zh_Hant/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-08-16 19:29+0000\n" -"Last-Translator: Hulen <shift0106@gmail.com>\n" +"PO-Revision-Date: 2020-09-23 14:41+0000\n" +"Last-Translator: tommymaple <godoffrog@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luci/zh_Hant/>\n" "Language: zh_Hant\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 msgid "%.1f dB" @@ -54,7 +54,7 @@ msgstr "(未連接界面)" #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48 msgid "-- Additional Field --" -msgstr "-- 更多選項 --" +msgstr "-- 額外欄位 --" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275 #: modules/luci-base/htdocs/luci-static/resources/form.js:3372 @@ -93,7 +93,7 @@ msgstr "-- 請選擇 --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" msgid "0" -msgstr "" +msgstr "0" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" @@ -102,7 +102,7 @@ msgstr "0 = 不使用無線漫遊(RSSI threshold),1 = 不變更裝置預設" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" msgid "1" -msgstr "" +msgstr "1" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 msgid "1 Minute Load:" @@ -115,17 +115,17 @@ msgstr "15分鐘負載:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 msgctxt "sstp log level value" msgid "2" -msgstr "" +msgstr "2" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57 msgctxt "sstp log level value" msgid "3" -msgstr "" +msgstr "3" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58 msgctxt "sstp log level value" msgid "4" -msgstr "" +msgstr "4" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 msgid "4-character hexadecimal ID" @@ -141,8 +141,9 @@ msgid "5 Minute Load:" msgstr "5分鐘負載:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471 +#, fuzzy msgid "6-octet identifier as a hex string - no colons" -msgstr "" +msgstr "6-八進位 識別碼作為十六進位字串 - 無冒號" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431 msgid "802.11r Fast Transition" @@ -172,11 +173,11 @@ msgstr "802.11w 重試逾時時間" msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 查詢通訊埠" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:310 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 伺服器通訊埠" @@ -190,9 +191,9 @@ msgstr "將會按照指定的順序查詢<abbr title=\"Domain Name System\">DNS< msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" -msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-位置" +msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-地址" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway" @@ -201,20 +202,20 @@ msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-閘道" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask" -msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-遮罩" +msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-網路遮罩" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31 msgid "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network " "(CIDR)" msgstr "" -"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-位置或網路(CIDR)" +"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-地址或網路(CIDR)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-閘道" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 尾碼 (十六進位)" @@ -227,15 +228,15 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 名稱" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-位置" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:328 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> leases" @@ -243,7 +244,7 @@ msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> 分配數量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packet size" @@ -251,7 +252,7 @@ msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> 封包大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries" msgstr "<abbr title=\"maximal\">最大</abbr>同時查詢數量" @@ -265,7 +266,7 @@ msgstr "<br/>注意:如果這個檔案在編輯之前是空的,您將需要重 msgid "A directory with the same name already exists." msgstr "已存在相同名稱的目錄。" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2664 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670 msgid "A new login is required since the authentication session expired." msgstr "因為核對作業階段已逾期,需要重新登入。" @@ -303,19 +304,20 @@ msgstr "ARP IP 目標" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357 msgid "ARP Interval" -msgstr "" +msgstr "ARP 間隔" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381 msgid "ARP Validation" -msgstr "" +msgstr "ARP 驗證" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373 +#, fuzzy msgid "ARP mode to consider a slave as being up" -msgstr "" +msgstr "ARP 模式將一個隨從視為已啟動" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77 msgid "ARP monitoring is not supported for the selected policy!" -msgstr "" +msgstr "ARP 監視並不支援目前所選的規則!" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 msgid "ARP retry threshold" @@ -400,9 +402,9 @@ msgstr "已分配的DHCPv6租用" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203 msgid "Active-Backup policy (active-backup, 1)" -msgstr "" +msgstr "啟動-備份規則 (active-backup, 1)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3666 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3684 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23 msgid "Ad-Hoc" @@ -410,11 +412,11 @@ msgstr "Ad-Hoc" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208 msgid "Adaptive load balancing (balance-alb, 6)" -msgstr "" +msgstr "自適應負載平衡 (balance-alb, 6)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207 msgid "Adaptive transmit load balancing (balance-tlb, 5)" -msgstr "" +msgstr "自適應發送負載平衡 (balance-tlb, 5)" #: modules/luci-base/htdocs/luci-static/resources/form.js:2167 #: modules/luci-base/htdocs/luci-static/resources/form.js:2170 @@ -429,27 +431,27 @@ msgstr "" #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:827 msgid "Add" -msgstr "加入" +msgstr "新增" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942 msgid "Add ATM Bridge" -msgstr "加入 ATM 橋接" +msgstr "新增 ATM 橋接" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92 msgid "Add IPv4 address…" -msgstr "加入 IPv4 位址…" +msgstr "新增 IPv4 位址…" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:207 msgid "Add IPv6 address…" -msgstr "加入 IPv6 位址…" +msgstr "新增 IPv6 位址…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65 msgid "Add LED action" -msgstr "加入 LED 動作" +msgstr "新增 LED 動作" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219 msgid "Add VLAN" -msgstr "加入 VLAN" +msgstr "新增 VLAN" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15 msgid "Add instance" @@ -463,7 +465,7 @@ msgstr "加入金鑰" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248 msgid "Add local domain suffix to names served from hosts files" -msgstr "添加本地網域微碼到HOSTS檔案" +msgstr "添加本地網域微碼到 hosts 檔案" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757 @@ -472,11 +474,11 @@ msgstr "新增新界面…" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125 msgid "Add peer" -msgstr "" +msgstr "新增 peer" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200 msgid "Additional Hosts files" -msgstr "額外的HOST檔案" +msgstr "額外的 hosts 檔案" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255 msgid "Additional servers file" @@ -499,6 +501,10 @@ msgstr "位址" msgid "Address to access local relay bridge" msgstr "存取本地中繼橋接位置" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 +msgid "Addresses" +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15 msgid "Administration" @@ -517,25 +523,25 @@ msgstr "進階設定" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" -msgstr "" +msgstr "彙總發送功率(ACTATP)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258 msgid "Aggregation Selection Logic" -msgstr "" +msgstr "彙總邏輯選集" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Aggregator: All slaves down or has no slaves (stable, 0)" -msgstr "" +msgstr "彙總器: 所有隨從接以關閉或沒有隨從 (stable, 0)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263 msgid "" "Aggregator: Chosen by the largest number of ports + slave added/removed or " "state changes (count, 2)" -msgstr "" +msgstr "彙總器:按最大連接埠數選擇 + 從屬新增/刪除或狀態變更(count,2)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262 msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)" -msgstr "" +msgstr "彙總器:隨從 已新增/已移除或狀態更改(頻寬,1)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171 msgid "Alert" @@ -579,7 +585,7 @@ msgstr "僅允許列表外" #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3 msgid "Allow full UCI access for legacy applications" -msgstr "" +msgstr "允許完整的UCI對舊應用程式進行存取" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892 msgid "Allow legacy 802.11b rates" @@ -589,13 +595,13 @@ msgstr "允許舊型 802.11b 頻率" msgid "Allow listed only" msgstr "僅允許列表內" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "Allow localhost" msgstr "允許本機" #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157 msgid "Allow rebooting the device" -msgstr "" +msgstr "允許重新啟動設備" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36 msgid "Allow remote hosts to connect to local SSH forwarded ports" @@ -607,13 +613,13 @@ msgstr "允許root登入" #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3 msgid "Allow system feature probing" -msgstr "" +msgstr "允許系統探測功能" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31 msgid "Allow the <em>root</em> user to login with password" msgstr "允許 <em>root</em> 使用者登入" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 msgid "" "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" msgstr "允許127.0.0.0/8範圍內的上游回應,例如:RBL服務" @@ -627,12 +633,14 @@ msgid "Always announce default router" msgstr "永遠發布預設路由器" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5 +#, fuzzy msgid "Always off (kernel: none)" -msgstr "" +msgstr "始終關閉(內核:無)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6 +#, fuzzy msgid "Always on (kernel: default-on)" -msgstr "" +msgstr "始終開啟 (內核:預設開啟)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907 msgid "" @@ -649,63 +657,63 @@ msgstr "儲存表單時發生錯誤:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Annex" -msgstr "" +msgstr "Annex" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891 msgid "Annex A + L + M (all)" -msgstr "" +msgstr "Annex A + L + M (全部)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899 msgid "Annex A G.992.1" -msgstr "" +msgstr "Annex A G.992.1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900 msgid "Annex A G.992.2" -msgstr "" +msgstr "Annex A G.992.2" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901 msgid "Annex A G.992.3" -msgstr "" +msgstr "Annex A G.992.3" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902 msgid "Annex A G.992.5" -msgstr "" +msgstr "Annex A G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:892 msgid "Annex B (all)" -msgstr "" +msgstr "Annex B (全部)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:895 msgid "Annex B G.992.1" -msgstr "" +msgstr "Annex B G.992.1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:896 msgid "Annex B G.992.3" -msgstr "" +msgstr "Annex B G.992.3" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897 msgid "Annex B G.992.5" -msgstr "" +msgstr "Annex B G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:893 msgid "Annex J (all)" -msgstr "" +msgstr "Annex J (全部)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903 msgid "Annex L G.992.3 POTS 1" -msgstr "" +msgstr "Annex L G.992.3 POTS 1" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894 msgid "Annex M (all)" -msgstr "" +msgstr "Annex M (全部)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904 msgid "Annex M G.992.3" -msgstr "" +msgstr "Annex M G.992.3" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905 msgid "Annex M G.992.5" -msgstr "" +msgstr "Annex M G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 msgid "Announce as default router even if no public prefix is available." @@ -763,13 +771,14 @@ msgstr "架構" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27 msgid "" "Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" +msgstr "分配一部分給定長度的公共IPv6地址前綴於此介面" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31 +#, fuzzy msgid "" "Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" +msgstr "使用十六進位元次要前綴 ID分配部分前綴地址於此介面." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245 @@ -828,7 +837,7 @@ msgstr "自動" #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7 msgid "Automatic Homenet (HNCP)" -msgstr "" +msgstr "自動家庭網 (HNCP)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174 msgid "Automatically check filesystem for errors before mounting" @@ -928,7 +937,7 @@ msgstr "" "下面是待備份的檔案清單。包含了更改的設定檔案、必要的基本檔案和使用者自訂的備" "份檔案。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" @@ -939,6 +948,7 @@ msgstr "動態繫結到介面而不是萬用字元位址 (推薦為 linux 預設 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind interface" @@ -949,6 +959,7 @@ msgstr "綁定介面" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52 msgid "Bind the tunnel to this interface (optional)." @@ -966,7 +977,7 @@ msgstr "忽略NX網域解析" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199 msgid "Bonding Policy" -msgstr "" +msgstr "黏合對策" #: modules/luci-base/htdocs/luci-static/resources/network.js:2877 #: modules/luci-compat/luasrc/model/network.lua:1421 @@ -988,7 +999,7 @@ msgstr "開機自動執行" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205 msgid "Broadcast policy (broadcast, 3)" -msgstr "" +msgstr "廣播對策(廣播,3)" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2810 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3799 @@ -1068,14 +1079,14 @@ msgstr "" msgid "" "Certificate constraint(s) against DNS SAN values (if available)<br />or " "Subject CN (exact match)" -msgstr "" +msgstr "認證約束違反 DNA SAN 參數(如果可用)<br />或主題 CN(完全符合)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580 msgid "" "Certificate constraint(s) against DNS SAN values (if available)<br />or " "Subject CN (suffix match)" -msgstr "" +msgstr "認證約束違反 DNA SAN 參數(如果可用)<br />或主題 CN(前綴符合)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574 @@ -1171,13 +1182,13 @@ msgid "" "FEATURE IS FOR PROFESSIONALS! )" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3665 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3683 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033 msgid "Client" msgstr "用戶端 Client" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47 msgid "Client ID to send when requesting DHCP" msgstr "當要求DHCP時要傳送的用戶識別碼ID" @@ -1216,7 +1227,7 @@ msgstr "收集資料中..." msgid "Command" msgstr "指令" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401 msgid "Command OK" msgstr "指令 OK" @@ -1244,7 +1255,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Compute outgoing checksum (optional)." -msgstr "" +msgstr "計算傳出的校驗和(自選)." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4028 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426 @@ -1284,9 +1295,9 @@ msgstr "連線嘗試失敗" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 msgid "Connection attempt failed." -msgstr "" +msgstr "嘗試連線失敗." -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 msgid "Connection lost" msgstr "失去連線" @@ -1296,11 +1307,11 @@ msgstr "連線數" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377 msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)" -msgstr "" +msgstr "當所有ARP IP 可到達目標時啟用從者(全部,1)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376 msgid "Consider the slave up when any ARP IP target is reachable (any, 0)" -msgstr "" +msgstr "當任何ARP IP 可到達目標時啟用從者(任一,0)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340 @@ -1368,7 +1379,7 @@ msgstr "自訂介面" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:36 msgid "Custom delegated IPv6-prefix" -msgstr "" +msgstr "自定義委派 IPv6-prefix(IPv6-前綴)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382 msgid "" @@ -1378,7 +1389,7 @@ msgstr "自訂檔案 (如憑證和腳本) 可能會殘留在系統中。如要 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6 msgid "Custom flash interval (kernel: timer)" -msgstr "" +msgstr "自訂快閃記憶體間隔 (內核:計時器)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" @@ -1407,7 +1418,7 @@ msgstr "DHCP伺服器" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155 #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50 msgid "DHCP and DNS" -msgstr "DHCP 和 DNS" +msgstr "DHCP / DNS" #: modules/luci-base/htdocs/luci-static/resources/network.js:1982 #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16 @@ -1551,7 +1562,7 @@ msgstr "刪除金鑰" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2769 msgid "Delete request failed: %s" -msgstr "" +msgstr "刪除要求失敗: %s" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:847 msgid "Delete this network" @@ -1581,7 +1592,7 @@ msgstr "目的地" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48 msgid "Destination port" -msgstr "" +msgstr "目的通訊埠" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165 @@ -1604,7 +1615,7 @@ msgstr "裝置" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861 msgid "Device Configuration" -msgstr "設定設備" +msgstr "裝置設定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132 msgid "Device is not active" @@ -1617,13 +1628,13 @@ msgstr "裝置重啟中…" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 msgid "Device not managed by ModemManager." -msgstr "" +msgstr "裝置為被數\"據機管理員(ModemManager)\"所管理." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4163 msgid "Device unreachable!" msgstr "無法連線到設備!" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53 msgid "Device unreachable! Still waiting for device..." msgstr "無法連線到設備! 正在持續等待設備回應..." @@ -1634,7 +1645,7 @@ msgstr "診斷" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:93 msgid "Dial number" -msgstr "" +msgstr "撥號號碼" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 msgid "Directory" @@ -1684,9 +1695,9 @@ msgstr "關閉" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112 msgid "Disassociate On Low Acknowledgement" -msgstr "" +msgstr "低確認(Low Acknowledgement)時取消連線" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses" msgstr "丟棄上游RFC1918 虛擬IP網路的回應" @@ -1699,11 +1710,11 @@ msgstr "中斷連線" #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22 msgid "Disconnection attempt failed" -msgstr "" +msgstr "嘗試中斷線連失敗" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 msgid "Disconnection attempt failed." -msgstr "" +msgstr "嘗試中斷線連失敗." #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2861 @@ -1743,7 +1754,7 @@ msgstr "不快取拒絕的回應,例如.不存在的網域" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "Do not create host route to peer (optional)." -msgstr "" +msgstr "不要建立主機(host)到節點(peer)的路由(任選)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219 msgid "Do not forward requests that cannot be answered by public name servers" @@ -1753,6 +1764,10 @@ msgstr "對不被公用名稱伺服器回應的請求不轉發" msgid "Do not forward reverse lookups for local networks" msgstr "對本地網域不轉發反解析鎖定" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 +msgid "Do not send a hostname" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:2755 msgid "Do you really want to delete \"%s\" ?" msgstr "您確定要刪除「%s」?" @@ -1767,13 +1782,13 @@ msgstr "您確定要清除所有設定?" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2753 msgid "Do you really want to recursively delete the directory \"%s\" ?" -msgstr "" +msgstr "您真的要刪除\"%s\"資料夾下的所有資料 ?" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168 msgid "Domain required" msgstr "網域必要的" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "Domain whitelist" msgstr "網域白名單" @@ -1781,7 +1796,7 @@ msgstr "網域白名單" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67 msgid "Don't Fragment" -msgstr "" +msgstr "不要分段" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169 msgid "" @@ -1797,7 +1812,7 @@ msgstr "下" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402 msgid "Down Delay" -msgstr "" +msgstr "下傳延遲" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366 msgid "Download backup" @@ -1809,7 +1824,7 @@ msgstr "下載 mtdblock" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925 msgid "Downstream SNR offset" -msgstr "" +msgstr "下載串流 SNR 位移" #: modules/luci-base/htdocs/luci-static/resources/form.js:2620 msgid "Drag to reorder" @@ -1817,7 +1832,7 @@ msgstr "拖動來排序" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341 msgid "Drop Duplicate Frames" -msgstr "" +msgstr "丟棄相同多餘的訊框(Frames)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12 msgid "Dropbear Instance" @@ -1834,7 +1849,7 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 msgid "Dual-Stack Lite (RFC6333)" -msgstr "" +msgstr "Dual-Stack Lite (RFC6333)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595 msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" @@ -1852,7 +1867,7 @@ msgstr "用戶端動態發配 DHCP 位址。若停用,僅有靜態位置的用 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67 msgid "EA-bits length" -msgstr "" +msgstr "EA-位元長度" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1491 msgid "EAP-Method" @@ -1872,7 +1887,7 @@ msgstr "編輯" msgid "" "Edit the raw configuration data above to fix any error and hit \"Save\" to " "reload the page." -msgstr "" +msgstr "編輯上面的原始配置數據以修復任何錯誤,然後點擊\"儲存\"以重新載入頁面." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842 msgid "Edit this network" @@ -1910,7 +1925,7 @@ msgstr "啟用 DNS lookups" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292 msgid "Enable Dynamic Shuffling Of Flows" -msgstr "" +msgstr "啟用動態拖曳(Dynamic Shuffling)流程" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60 msgid "Enable HE.net dynamic endpoint update" @@ -1918,7 +1933,7 @@ msgstr "啟用HE.net服務代管動態更新" #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89 msgid "Enable IPv6 negotiation" -msgstr "" +msgstr "啟用 IPv6 協商" #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:93 @@ -1939,9 +1954,9 @@ msgstr "啟用 NTP 同步功能" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96 msgid "Enable Single DES" -msgstr "" +msgstr "啟用單一 DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Enable TFTP server" msgstr "啟用TFTP伺服器" @@ -1977,13 +1992,13 @@ msgstr "啟用所有 CPU 的封包控制。 可能會增加或減少網絡速度 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75 msgid "Enable rx checksum" -msgstr "" +msgstr "啟用 Rx 校驗和" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67 msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" +msgstr "啟用封裝封包的 DF(不分段)標誌." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837 msgid "Enable this network" @@ -1992,7 +2007,7 @@ msgstr "啟用這個網路" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:79 msgid "Enable tx checksum" -msgstr "" +msgstr "啟用 Tx 校驗和" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352 @@ -2016,7 +2031,7 @@ msgstr "在橋接器上啟用802.1d Spanning Tree協定" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59 msgid "Encapsulation limit" -msgstr "" +msgstr "封裝限制" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:973 @@ -2062,7 +2077,7 @@ msgstr "錯誤" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" -msgstr "" +msgstr "錯誤秒數 (ES)" #: modules/luci-base/htdocs/luci-static/resources/network.js:2889 #: modules/luci-compat/luasrc/model/network.lua:1433 @@ -2076,13 +2091,13 @@ msgstr "乙太交換器" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270 msgid "Every 30 seconds (slow, 0)" -msgstr "" +msgstr "每 30 秒(慢速,0)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271 msgid "Every second (fast, 1)" -msgstr "" +msgstr "每一秒(快,1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406 msgid "Exclude interfaces" msgstr "排除介面" @@ -2092,7 +2107,7 @@ msgstr "延伸主機" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:198 msgid "Expecting a hexadecimal assignment hint" -msgstr "" +msgstr "預期十六進位賦值提示" #: modules/luci-base/htdocs/luci-static/resources/validation.js:64 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73 @@ -2104,11 +2119,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 msgid "Expecting: %s" -msgstr "" +msgstr "預期: %s" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48 msgid "Expecting: non-empty value" -msgstr "" +msgstr "預期:非空值" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50 msgid "Expires" @@ -2125,11 +2140,11 @@ msgstr "外部" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482 msgid "External R0 Key Holder List" -msgstr "" +msgstr "外部 R0 金鑰持有者清單" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486 msgid "External R1 Key Holder List" -msgstr "" +msgstr "外部 R1 金鑰持有者清單" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:146 msgid "External system log server" @@ -2145,23 +2160,23 @@ msgstr "外部系統日誌伺服器通訊協定" #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79 msgid "Extra SSH command options" -msgstr "" +msgstr "額外的 SSH 命令選項" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "Extra pppd options" -msgstr "" +msgstr "額外的 pppd 選項" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "Extra sstpc options" -msgstr "" +msgstr "額外的 sstpc 選項" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 msgid "FT over DS" -msgstr "" +msgstr "FT 透過 DS" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1457 msgid "FT over the Air" -msgstr "" +msgstr "FT 透過 空中" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1454 msgid "FT protocol" @@ -2177,7 +2192,7 @@ msgstr "無法在 %ds 秒內確認變更,等待回滾…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37 msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" -msgstr "" +msgstr "執行失敗 \"/etc/init.d/%s %s\" 動作: %s" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673 msgid "File" @@ -2191,7 +2206,7 @@ msgstr "無法存取檔案" msgid "Filename" msgstr "檔名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 msgid "Filename of the boot image advertised to clients" msgstr "開機影像檔通知給用戶端" @@ -2210,20 +2225,21 @@ msgstr "無用過濾器" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388 msgid "Filtering for all slaves, no validation" -msgstr "" +msgstr "篩選所有從屬,無驗證" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389 msgid "Filtering for all slaves, validation only for active slave" -msgstr "" +msgstr "篩選所有從屬,僅驗證有活動的從屬" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390 msgid "Filtering for all slaves, validation only for backup slaves" -msgstr "" +msgstr "篩選所有從屬,僅驗證有備份的從屬" #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23 +#, fuzzy msgid "Finalizing failed" -msgstr "" +msgstr "結案失敗" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150 msgid "" @@ -2257,20 +2273,20 @@ msgstr "防火牆狀況" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932 msgid "Firmware File" -msgstr "防火牆檔案" +msgstr "韌體檔案" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57 msgid "Firmware Version" -msgstr "防火牆版本" +msgstr "韌體版本" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327 msgid "Fixed source port for outbound DNS queries" msgstr "外發DNS請求的固定埠號" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421 msgid "Flash image..." -msgstr "刷入映像檔..." +msgstr "燒入映像檔..." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279 msgid "Flash image?" @@ -2287,7 +2303,7 @@ msgstr "執行更新" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290 msgid "Flashing…" -msgstr "刷機中…" +msgstr "燒入中…" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598 msgid "Force" @@ -2315,7 +2331,7 @@ msgstr "強制使用TKIP+CCMP (AES)加密" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864 msgid "Force link" -msgstr "" +msgstr "強制連結" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255 msgid "Force upgrade" @@ -2327,7 +2343,7 @@ msgstr "強制使用 NAT-T" #: modules/luci-base/luasrc/view/csrftoken.htm:8 msgid "Form token mismatch" -msgstr "" +msgstr "表單權杖(token )不匹配" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164 msgid "Forward DHCP traffic" @@ -2335,7 +2351,7 @@ msgstr "轉發DHCP流量" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" -msgstr "" +msgstr "Forward Error Correction Seconds (FECS)" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161 msgid "Forward broadcast traffic" @@ -2372,19 +2388,19 @@ msgstr "僅用GPRS" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10 msgid "GRE tunnel over IPv4" -msgstr "" +msgstr "GRE 通道透過 IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10 msgid "GRE tunnel over IPv6" -msgstr "" +msgstr "GRE 通道透過 IPv6" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10 msgid "GRETAP tunnel over IPv4" -msgstr "" +msgstr "GRETAP 通道透過 IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10 msgid "GRETAP tunnel over IPv6" -msgstr "" +msgstr "GRETAP 通道透過 IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 msgid "Gateway" @@ -2401,7 +2417,7 @@ msgstr "網關(Gateway)位址錯誤" #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" -msgstr "" +msgstr "網關指標(Gateway metric)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:323 @@ -2424,7 +2440,7 @@ msgstr "生成設定檔" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66 msgid "Generate Key" -msgstr "" +msgstr "生成金鑰" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460 msgid "Generate PMK locally" @@ -2463,7 +2479,7 @@ msgstr "到相應設定頁" #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:33 msgid "Grant access to DHCP configuration" -msgstr "" +msgstr "授予權限執行 DHCP 配置" #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:102 msgid "Grant access to DHCP status display" @@ -2620,7 +2636,7 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29 @@ -2900,7 +2916,7 @@ msgid "" "device node" msgstr "假若指定的話, 掛載設備的分割標籤取代固定的設備節點" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 @@ -2911,6 +2927,7 @@ msgstr "假若指定的話, 掛載設備的分割標籤取代固定的設備節 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -2921,10 +2938,11 @@ msgstr "假若指定的話, 掛載設備的分割標籤取代固定的設備節 msgid "If unchecked, no default route is configured" msgstr "如果沒打勾點選, 將不會設置預設路由" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -3154,7 +3172,7 @@ msgstr "輸入的 VLAN ID 無效!僅有介於 %d 和 %d 的被允許。" msgid "Invalid VLAN ID given! Only unique IDs are allowed" msgstr "輸入的是不正確的VLAN ID!僅允許獨一無二的IDs" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403 msgid "Invalid argument" msgstr "" @@ -3164,7 +3182,7 @@ msgid "" "supports one and only one bearer." msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402 msgid "Invalid command" msgstr "無效的指令" @@ -3235,7 +3253,7 @@ msgstr "密碼" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412 msgid "Key #%d" -msgstr "鑰匙 #%d" +msgstr "鑰匙 #%d" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 @@ -3315,7 +3333,7 @@ msgstr "延遲" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591 msgid "Lease time" msgstr "租賃時間長度" @@ -3352,11 +3370,11 @@ msgstr "圖例:" msgid "Limit" msgstr "限制" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 msgid "Limit DNS service to subnets interfaces on which we are serving DNS." msgstr "僅在網卡所屬的子網路中提供 DNS 服務。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "Limit listening to these interfaces, and loopback." msgstr "僅監聽這些介面和回送 (loopback)。" @@ -3416,15 +3434,19 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308 msgid "List of domains to allow RFC1918 responses for" msgstr "列出允許RFC1918文件虛擬IP回應的網域" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +msgid "List of domains to force to an IP address." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "List of hosts that supply bogus NX domain results" msgstr "列出供應偽裝NX網域成果的主機群" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Listen Interfaces" msgstr "監聽介面" @@ -3436,7 +3458,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "只許在給予的介面上聆聽, 如果未指定, 全都允許" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Listening port for inbound DNS queries" msgstr "進入的DNS請求聆聽埠" @@ -3459,6 +3481,10 @@ msgstr "讀取目錄內容…" msgid "Loading view…" msgstr "載入畫面中…" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77 +msgid "Local IP address" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:12 #: modules/luci-compat/luasrc/model/network.lua:30 msgid "Local IP address is invalid" @@ -3487,7 +3513,7 @@ msgstr "本地IPv4位址" msgid "Local IPv6 address" msgstr "本地IPv6位址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Local Service Only" msgstr "僅限本機服務" @@ -3662,7 +3688,7 @@ msgstr "" msgid "Manual" msgstr "手動" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3664 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3682 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Master" msgstr "主要" @@ -3675,15 +3701,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "允許的最大監聽間隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336 msgid "Maximum allowed number of active DHCP leases" msgstr "允許啟用DHCP釋放的最大數量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "Maximum allowed number of concurrent DNS queries" msgstr "允許同時齊發的DNS請求的最大數量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 msgid "Maximum allowed size of EDNS.0 UDP packets" msgstr "允許EDNS.0 協定的UDP封包最大數量" @@ -3724,7 +3750,7 @@ msgstr "記憶體" msgid "Memory usage (%)" msgstr "記憶體使用 (%)" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3667 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3685 msgid "Mesh" msgstr "" @@ -3736,7 +3762,7 @@ msgstr "" msgid "Mesh Id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404 msgid "Method not found" msgstr "" @@ -3834,7 +3860,7 @@ msgstr "" msgid "ModemManager" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/network.js:3668 +#: modules/luci-base/htdocs/luci-static/resources/network.js:3686 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005 msgid "Monitor" msgstr "監視" @@ -3964,7 +3990,7 @@ msgstr "網路" msgid "Network Utilities" msgstr "網路工具" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Network boot image" msgstr "網路開機映像檔" @@ -4025,7 +4051,7 @@ msgstr "沒有 RX 信號" msgid "No client associated" msgstr "沒有客戶端已連接" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406 msgid "No data received" msgstr "未收到任何資料" @@ -4119,7 +4145,7 @@ msgstr "雜訊比:" msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "Non-wildcard" msgstr "" @@ -4157,7 +4183,7 @@ msgstr "" msgid "Not started on boot" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409 msgid "Not supported" msgstr "不支援" @@ -4173,7 +4199,7 @@ msgstr "DNS偵錯Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "快取DNS項目數量(最大值為10000,輸入0代表不快取)" @@ -4225,7 +4251,7 @@ msgstr "" msgid "On-State Delay" msgstr "點亮狀態間隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 msgid "One of hostname or mac address must be specified!" msgstr "主機名稱或 mac 位址至少要有一個被指定!" @@ -4262,6 +4288,10 @@ msgstr "開啟清單..." msgid "OpenConnect (CISCO AnyConnect)" msgstr "" +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12 +msgid "OpenFortivpn" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882 msgid "Operating frequency" msgstr "操作頻率" @@ -4390,7 +4420,7 @@ msgstr "" msgid "Output zone" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50 @@ -4399,7 +4429,7 @@ msgstr "" msgid "Override MAC address" msgstr "覆蓋MAC位址" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -4586,6 +4616,7 @@ msgstr "區域 %q 的部分" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 msgid "Password" msgstr "密碼" @@ -4641,7 +4672,7 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731 msgid "Paused" msgstr "已暫停" @@ -4683,7 +4714,7 @@ msgstr "" msgid "Perform outgoing packets serialization (optional)." msgstr "" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34 msgid "Perform reboot" msgstr "重新開機" @@ -4691,7 +4722,7 @@ msgstr "重新開機" msgid "Perform reset" msgstr "執行重置" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407 msgid "Permission denied" msgstr "權限不符" @@ -4705,7 +4736,7 @@ msgstr "傳輸率:" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:325 msgid "Physical Settings" -msgstr "實體設定" +msgstr "硬體設定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80 @@ -4781,7 +4812,7 @@ msgid "" "ignore failures" msgstr "假若在給于多次的 LCP 呼叫失敗後終點將死, 使用0忽略失敗" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "Prevent listening on these interfaces." msgstr "不監聽這些介面。" @@ -4955,23 +4986,23 @@ msgstr "即時圖表" msgid "Reassociation Deadline" msgstr "重新關聯期限" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 msgid "Rebind protection" msgstr "重新綁護" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:14 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126 msgid "Reboot" msgstr "重啟" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:40 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:45 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51 msgid "Rebooting…" msgstr "正在重啟…" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:15 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21 msgid "Reboots the operating system of your device" msgstr "重啟您設備的作業系統" @@ -4991,7 +5022,7 @@ msgstr "重新連接這個介面" msgid "References" msgstr "引用" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2719 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725 msgid "Refreshing" msgstr "重新整理中" @@ -5051,7 +5082,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 msgid "Request timeout" msgstr "請求超時" @@ -5073,7 +5104,7 @@ msgstr "" msgid "Required" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" msgstr "對特定的ISP需要,例如.DOCSIS 3 加速有線電視寬頻網路" @@ -5198,7 +5229,7 @@ msgstr "解析和Hosts檔案" msgid "Resolve file" msgstr "解析檔" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -5245,7 +5276,7 @@ msgstr "" msgid "Reverting configuration…" msgstr "正在還原設定值…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Root directory for files served via TFTP" msgstr "透過TFTP存取根目錄檔案" @@ -5342,7 +5373,7 @@ msgstr "SSH-金鑰" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:42 msgid "SSID" -msgstr "基地台服務設定識別碼SSID" +msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" @@ -5411,7 +5442,7 @@ msgid "" "fails. Use only if you are sure that the firmware is correct and meant for " "your device!" msgstr "" -"選擇「強制升級」來刷映像檔,即使檢查未通過。請僅在您確認映像檔正確無誤時使" +"選擇「強制升級」來燒入映像檔,即使檢查未通過。請僅在您確認映像檔正確無誤時使" "用!" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2622 @@ -5435,6 +5466,10 @@ msgid "" "conjunction with failure threshold" msgstr "傳送LCP呼叫請求在這個給予的秒數間隔內, 僅影響關聯到失敗門檻" +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24 +msgid "Send the hostname of this device" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157 msgid "Server Settings" msgstr "伺服器設定值" @@ -5452,7 +5487,7 @@ msgstr "服務型態" msgid "Services" msgstr "服務" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2662 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668 msgid "Session expired" msgstr "" @@ -5552,7 +5587,7 @@ msgstr "信號:" msgid "Size" msgstr "大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Size of DNS query cache" msgstr "DNS請求快取大小" @@ -5842,7 +5877,7 @@ msgstr "啟用優先權順序" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1765 msgid "Start refresh" -msgstr "開始刷新" +msgstr "開始重新整理" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4253 msgid "Starting configuration apply…" @@ -5879,7 +5914,7 @@ msgstr "靜態路由" msgid "Static address" msgstr "靜態位址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -5907,7 +5942,7 @@ msgstr "停止" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770 msgid "Stop refresh" -msgstr "停止刷新" +msgstr "停止重新整理" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 msgid "Strict order" @@ -6007,7 +6042,7 @@ msgstr "TCP:" msgid "TFTP Settings" msgstr "TFTP設定" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:364 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371 msgid "TFTP server root" msgstr "TFTP 伺服器根" @@ -6123,7 +6158,7 @@ msgid "" "\"Proceed\" below to start the flash procedure." msgstr "" "映像檔已上傳。下方是效驗碼和大小,請與原始檔比較確認無誤。<br />按下方「執" -"行」開始刷入程序。" +"行」開始燒錄程序。" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:195 msgid "The following rules are currently active on this system." @@ -6203,7 +6238,7 @@ msgstr "" "埠來連接到下一個大型網路類似Intenet而其它埠則用來本地區網使用." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:36 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42 msgid "The reboot command failed with code %d" msgstr "重啟指令失敗,錯誤碼 %d" @@ -6273,8 +6308,8 @@ msgid "" msgstr "" "以上傳的映像檔不包含支援格式. 請確認您選擇的是針對您的平台採用的通用映像檔." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:528 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89 msgid "There are no active leases" @@ -6376,7 +6411,7 @@ msgstr "這是由通道代理人操作的近端PoP通用位址" msgid "" "This list gives an overview over currently running system processes and " "their status." -msgstr "這清單提供目前正在執行的系統的執行緒和狀態的預覽." +msgstr "這清單提供目前正在執行的系統的執行緒和狀態的總覽." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563 @@ -6403,7 +6438,7 @@ msgstr "重新加密 GTK 的時間間隔" msgid "Timezone" msgstr "時區" -#: modules/luci-base/htdocs/luci-static/resources/luci.js:2672 +#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678 msgid "To login…" msgstr "去登入…" @@ -6521,7 +6556,7 @@ msgstr "無法辨識外部 IP 位址" msgid "Unable to determine upstream interface" msgstr "無法判斷上游介面" -#: modules/luci-base/luasrc/view/error404.htm:10 +#: modules/luci-base/luasrc/view/error404.htm:11 msgid "Unable to dispatch" msgstr "無法發送" @@ -6590,7 +6625,7 @@ msgstr "" msgid "Unknown error (%s)" msgstr "未知的錯誤 (%s)" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412 msgid "Unknown error code" msgstr "未知的錯誤碼" @@ -6614,7 +6649,7 @@ msgstr "未命名的金鑰" msgid "Unsaved Changes" msgstr "尚未存檔的修改" -#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413 +#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410 msgid "Unspecified error" msgstr "未知的錯誤" @@ -6697,10 +6732,11 @@ msgstr "使用 DHCP 通告的伺服器" msgid "Use DHCP gateway" msgstr "使用DHCP的閘道" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90 @@ -6753,7 +6789,7 @@ msgstr "" msgid "Use as root filesystem (/)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 msgid "Use broadcast flag" msgstr "當作廣播旗標" @@ -6761,7 +6797,7 @@ msgstr "當作廣播旗標" msgid "Use builtin IPv6-management" msgstr "使用內建的IPv6管理功能" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42 @@ -6776,9 +6812,10 @@ msgstr "使用內建的IPv6管理功能" msgid "Use custom DNS servers" msgstr "使用自訂的 DNS 伺服器" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87 @@ -6789,7 +6826,7 @@ msgstr "使用自訂的 DNS 伺服器" msgid "Use default gateway" msgstr "使用預設閘道" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48 #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51 @@ -6800,6 +6837,7 @@ msgstr "使用預設閘道" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98 @@ -6810,6 +6848,16 @@ msgstr "使用預設閘道" msgid "Use gateway metric" msgstr "使用閘道公測數" +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "Use legacy MAP" +msgstr "" + +#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96 +msgid "" +"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) " +"instead of RFC7597" +msgstr "" + #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179 msgid "Use routing table" msgstr "使用路由表" @@ -6822,7 +6870,7 @@ msgstr "使用系統憑證" msgid "Use system certificates for inner-tunnel" msgstr "對 inner-tunnel 使用系統憑證" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -6873,6 +6921,7 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 msgid "Username" msgstr "使用者名稱" @@ -6902,16 +6951,19 @@ msgid "VPN Local port" msgstr "本地 VPN 阜" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39 msgid "VPN Server" msgstr "VPN伺服器" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45 msgid "VPN Server port" msgstr "VPN 伺服器阜" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103 +#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60 msgid "VPN Server's certificate SHA1 hash" msgstr "" @@ -6960,7 +7012,7 @@ msgstr "" msgid "Vendor" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52 +#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55 msgid "Vendor Class to send when requesting DHCP" msgstr "當請求DHCP封包時要傳送的製造商類別碼" @@ -7007,7 +7059,7 @@ msgstr "" "WPA-加密需要 wpa_supplican(終端模式)或者hostapd熱點(對AP或者是 ad-hoc模式)已" "被安裝." -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:41 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47 msgid "Waiting for device..." msgstr "正在等待裝置..." @@ -7016,7 +7068,7 @@ msgstr "正在等待裝置..." msgid "Warning" msgstr "警告" -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20 +#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26 msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "警告:未儲存的更改會在重啟時遺失!" @@ -7053,7 +7105,7 @@ msgid "Wireless Adapter" msgstr "無線網卡" #: modules/luci-base/htdocs/luci-static/resources/network.js:2853 -#: modules/luci-base/htdocs/luci-static/resources/network.js:4057 +#: modules/luci-base/htdocs/luci-static/resources/network.js:4083 #: modules/luci-compat/luasrc/model/network.lua:1405 #: modules/luci-compat/luasrc/model/network.lua:1868 msgid "Wireless Network" @@ -7061,7 +7113,7 @@ msgstr "無線網路" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753 msgid "Wireless Overview" -msgstr "無線預覽" +msgstr "無線網路總覽" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922 msgid "Wireless Security" @@ -7164,7 +7216,7 @@ msgstr "ZRam 設定" msgid "ZRam Size" msgstr "ZRam 大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "any" msgstr "任意" @@ -7263,8 +7315,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69 msgid "expired" @@ -7456,9 +7508,9 @@ msgstr "獨特值" msgid "unknown" msgstr "未知" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:515 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67 msgid "unlimited" diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index 1d46ad276..8ac661670 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -219,7 +219,7 @@ local methods = { rv.cabundle = fs.access("/etc/ssl/certs/ca-certificates.crt") rv.relayd = fs.access("/usr/sbin/relayd") - local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep" } + local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep", "wps } if fs.access("/usr/sbin/hostapd") then rv.hostapd = { cli = fs.access("/usr/sbin/hostapd_cli") } |