summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-base')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/fs.js10
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/network.js171
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/protocol/static.js3
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/tools/widgets.js51
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/ui.js7
-rw-r--r--modules/luci-base/luasrc/dispatcher.lua8
-rw-r--r--modules/luci-base/po/ca/base.po35
-rw-r--r--modules/luci-base/po/cs/base.po104
-rw-r--r--modules/luci-base/po/de/base.po330
-rw-r--r--modules/luci-base/po/es/base.po145
-rw-r--r--modules/luci-base/po/hi/base.po6457
-rw-r--r--modules/luci-base/po/ja/base.po15
-rw-r--r--modules/luci-base/po/pl/base.po100
-rw-r--r--modules/luci-base/po/ru/base.po36
-rw-r--r--modules/luci-base/po/sv/base.po71
-rw-r--r--modules/luci-base/po/uk/base.po85
-rw-r--r--modules/luci-base/po/zh-cn/base.po89
-rw-r--r--modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json4
18 files changed, 7114 insertions, 607 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/fs.js b/modules/luci-base/htdocs/luci-static/resources/fs.js
index 6eb0390909..8a96ea87e2 100644
--- a/modules/luci-base/htdocs/luci-static/resources/fs.js
+++ b/modules/luci-base/htdocs/luci-static/resources/fs.js
@@ -50,7 +50,7 @@ callFileRead = rpc.declare({
callFileWrite = rpc.declare({
object: 'file',
method: 'write',
- params: [ 'path', 'data' ]
+ params: [ 'path', 'data', 'mode' ]
});
callFileRemove = rpc.declare({
@@ -177,13 +177,17 @@ var FileSystem = L.Class.extend(/** @lends LuCI.fs.prototype */ {
* The file data to write. If it is null, it will be set to an empty
* string.
*
+ * @param {number} [mode]
+ * The permissions to use on file creation. Default is 420 (0644).
+ *
* @returns {Promise<number>}
* Returns a promise resolving to `0` or rejecting with an error stating
* the failure reason.
*/
- write: function(path, data) {
+ write: function(path, data, mode) {
data = (data != null) ? String(data) : '';
- return callFileWrite(path, data).then(handleRpcReply.bind(this, { '': 0 }));
+ mode = (mode != null) ? mode : 420; // 0644
+ return callFileWrite(path, data, mode).then(handleRpcReply.bind(this, { '': 0 }));
},
/**
diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js
index a71c97c307..5fa6167b27 100644
--- a/modules/luci-base/htdocs/luci-static/resources/network.js
+++ b/modules/luci-base/htdocs/luci-static/resources/network.js
@@ -44,13 +44,13 @@ var iface_patterns_wireless = [
var iface_patterns_virtual = [ ];
-var callLuciNetdevs = rpc.declare({
+var callLuciNetworkDevices = rpc.declare({
object: 'luci',
method: 'getNetworkDevices',
expect: { '': {} }
});
-var callLuciWifidevs = rpc.declare({
+var callLuciWirelessDevices = rpc.declare({
object: 'luci',
method: 'getWirelessDevices',
expect: { '': {} }
@@ -62,11 +62,17 @@ var callLuciIfaddrs = rpc.declare({
expect: { result: [] }
});
-var callLuciBoardjson = rpc.declare({
+var callLuciBoardJSON = rpc.declare({
object: 'luci',
method: 'getBoardJSON'
});
+var callLuciHostHints = rpc.declare({
+ object: 'luci',
+ method: 'getHostHints',
+ expect: { '': {} }
+});
+
var callIwinfoAssoclist = rpc.declare({
object: 'iwinfo',
method: 'assoclist',
@@ -82,7 +88,7 @@ var callIwinfoScan = rpc.declare({
expect: { results: [] }
});
-var callNetworkInterfaceStatus = rpc.declare({
+var callNetworkInterfaceDump = rpc.declare({
object: 'network.interface',
method: 'dump',
expect: { 'interface': [] }
@@ -94,88 +100,19 @@ var callNetworkDeviceStatus = rpc.declare({
expect: { '': {} }
});
-var callGetProtoHandlers = rpc.declare({
+var callNetworkProtoHandlers = rpc.declare({
object: 'network',
method: 'get_proto_handlers',
expect: { '': {} }
});
-var callGetHostHints = rpc.declare({
- object: 'luci',
- method: 'getHostHints',
- expect: { '': {} }
-});
-
var _init = null,
_state = null,
_protocols = {},
_protospecs = {};
-function getInterfaceState(cache) {
- return callNetworkInterfaceStatus().then(function(state) {
- if (!Array.isArray(state))
- throw !1;
- return state;
- }).catch(function() {
- return [];
- });
-}
-
-function getDeviceState(cache) {
- return callNetworkDeviceStatus().then(function(state) {
- if (!L.isObject(state))
- throw !1;
- return state;
- }).catch(function() {
- return {};
- });
-}
-
-function getIfaddrState(cache) {
- return callLuciIfaddrs().then(function(addrs) {
- if (!Array.isArray(addrs))
- throw !1;
- return addrs;
- }).catch(function() {
- return [];
- });
-}
-
-function getNetdevState(cache) {
- return callLuciNetdevs().then(function(state) {
- if (!L.isObject(state))
- throw !1;
- return state;
- }).catch(function() {
- return {};
- });
-}
-
-function getWifidevState(cache) {
- return callLuciWifidevs().then(function(state) {
- if (!L.isObject(state))
- throw !1;
- return state;
- }).catch(function() {
- return {};
- });
-}
-
-function getBoardState(cache) {
- return callLuciBoardjson().then(function(state) {
- if (!L.isObject(state))
- throw !1;
- return state;
- }).catch(function() {
- return {};
- });
-}
-
function getProtocolHandlers(cache) {
- return callGetProtoHandlers().then(function(protos) {
- if (!L.isObject(protos))
- throw !1;
-
+ return callNetworkProtoHandlers().then(function(protos) {
/* Register "none" protocol */
if (!protos.hasOwnProperty('none'))
Object.assign(protos, { none: { no_device: false } });
@@ -199,16 +136,6 @@ function getProtocolHandlers(cache) {
});
}
-function getHostHints(cache) {
- return callGetHostHints().then(function(hosts) {
- if (!L.isObject(hosts))
- throw !1;
- return hosts;
- }).catch(function() {
- return {};
- });
-}
-
function getWifiStateBySid(sid) {
var s = uci.get('wireless', sid);
@@ -433,19 +360,29 @@ function maskToPrefix(mask, v6) {
function initNetworkState(refresh) {
if (_state == null || refresh) {
_init = _init || Promise.all([
- getInterfaceState(), getDeviceState(), getBoardState(),
- getIfaddrState(), getNetdevState(), getWifidevState(),
- getHostHints(), getProtocolHandlers(),
- uci.load('network'), uci.load('wireless'), uci.load('luci')
+ L.resolveDefault(callNetworkInterfaceDump(), []),
+ L.resolveDefault(callNetworkDeviceStatus(), {}),
+ L.resolveDefault(callLuciBoardJSON(), {}),
+ L.resolveDefault(callLuciIfaddrs(), []),
+ L.resolveDefault(callLuciNetworkDevices(), {}),
+ L.resolveDefault(callLuciWirelessDevices(), {}),
+ L.resolveDefault(callLuciHostHints(), {}),
+ getProtocolHandlers(),
+ uci.load(['network', 'wireless', 'luci'])
]).then(function(data) {
- var board = data[2], ifaddrs = data[3], devices = data[4];
+ var netifd_ifaces = data[0],
+ netifd_devs = data[1],
+ board_json = data[2],
+ luci_ifaddrs = data[3],
+ luci_devs = data[4];
+
var s = {
isTunnel: {}, isBridge: {}, isSwitch: {}, isWifi: {},
- ifaces: data[0], devices: data[1], radios: data[5],
- hosts: data[6], netdevs: {}, bridges: {}, switches: {}
+ ifaces: netifd_ifaces, radios: data[5], hosts: data[6],
+ netdevs: {}, bridges: {}, switches: {}
};
- for (var i = 0, a; (a = ifaddrs[i]) != null; i++) {
+ for (var i = 0, a; (a = luci_ifaddrs[i]) != null; i++) {
var name = a.name.replace(/:.+$/, '');
if (isVirtualIfname(name))
@@ -477,8 +414,21 @@ function initNetworkState(refresh) {
}
}
- for (var devname in devices) {
- var dev = devices[devname];
+ /* override getifaddr() stats with netifd device status stats as
+ the former are limited to 32bit counters only */
+ for (var devname in netifd_devs) {
+ if (!s.netdevs.hasOwnProperty(devname))
+ continue;
+
+ if (!L.isObject(netifd_devs[devname]))
+ continue;
+
+ s.netdevs[devname].stats = Object.assign({},
+ s.netdevs[devname].stats, netifd_devs[devname].statistics);
+ }
+
+ for (var devname in luci_devs) {
+ var dev = luci_devs[devname];
if (dev.bridge) {
var b = {
@@ -512,9 +462,9 @@ function initNetworkState(refresh) {
}
}
- if (L.isObject(board.switch)) {
- for (var switchname in board.switch) {
- var layout = board.switch[switchname],
+ if (L.isObject(board_json.switch)) {
+ for (var switchname in board_json.switch) {
+ var layout = board_json.switch[switchname],
netdevs = {},
nports = {},
ports = [],
@@ -576,8 +526,8 @@ function initNetworkState(refresh) {
}
}
- if (L.isObject(board.dsl) && L.isObject(board.dsl.modem)) {
- s.hasDSLModem = board.dsl.modem;
+ if (L.isObject(board_json.dsl) && L.isObject(board_json.dsl.modem)) {
+ s.hasDSLModem = board_json.dsl.modem;
}
_init = null;
@@ -2209,6 +2159,27 @@ Protocol = L.Class.extend(/** @lends LuCI.Network.Protocol.prototype */ {
},
/**
+ * Query the gateway (nexthop) of the IPv6 default route associated with
+ * this logical interface.
+ *
+ * @returns {string}
+ * Returns a string containing the IPv6 nexthop address of the associated
+ * default route or `null` if no default route was found.
+ */
+ getGateway6Addr: function() {
+ var routes = this._ubus('route');
+
+ if (Array.isArray(routes))
+ for (var i = 0; i < routes.length; i++)
+ if (typeof(routes[i]) == 'object' &&
+ routes[i].target == '::' &&
+ routes[i].mask == 0)
+ return routes[i].nexthop;
+
+ return null;
+ },
+
+ /**
* Query the IPv6 DNS servers associated with the logical interface.
*
* @returns {string[]}
diff --git a/modules/luci-base/htdocs/luci-static/resources/protocol/static.js b/modules/luci-base/htdocs/luci-static/resources/protocol/static.js
index 8470e0a20e..9039acd5f3 100644
--- a/modules/luci-base/htdocs/luci-static/resources/protocol/static.js
+++ b/modules/luci-base/htdocs/luci-static/resources/protocol/static.js
@@ -189,6 +189,9 @@ return network.registerProtocol('static', {
o = s.taboption('general', form.Value, 'ip6hint', _('IPv6 assignment hint'), _('Assign prefix parts using this hexadecimal subprefix ID for this interface.'));
o.placeholder = '0';
o.validate = function(section_id, value) {
+ if (value == null || value == '')
+ return true;
+
var n = parseInt(value, 16);
if (!/^(0x)?[0-9a-fA-F]+$/.test(value) || isNaN(n) || n >= 0xffffffff)
diff --git a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
index 1667fa6707..9cc3e26ed2 100644
--- a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
+++ b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
@@ -3,6 +3,19 @@
'require form';
'require network';
'require firewall';
+'require fs';
+
+function getUsers() {
+ return fs.lines('/etc/passwd').then(function(lines) {
+ return lines.map(function(line) { return line.split(/:/)[0] });
+ });
+}
+
+function getGroups() {
+ return fs.lines('/etc/group').then(function(lines) {
+ return lines.map(function(line) { return line.split(/:/)[0] });
+ });
+}
var CBIZoneSelect = form.ListValue.extend({
__name__: 'CBI.ZoneSelect',
@@ -559,10 +572,48 @@ var CBIDeviceSelect = form.ListValue.extend({
},
});
+var CBIUserSelect = form.ListValue.extend({
+ __name__: 'CBI.UserSelect',
+
+ load: function(section_id) {
+ return getUsers().then(L.bind(function(users) {
+ for (var i = 0; i < users.length; i++) {
+ this.value(users[i]);
+ }
+
+ return this.super('load', section_id);
+ }, this));
+ },
+
+ filter: function(section_id, value) {
+ return true;
+ },
+});
+
+var CBIGroupSelect = form.ListValue.extend({
+ __name__: 'CBI.GroupSelect',
+
+ load: function(section_id) {
+ return getGroups().then(L.bind(function(groups) {
+ for (var i = 0; i < groups.length; i++) {
+ this.value(groups[i]);
+ }
+
+ return this.super('load', section_id);
+ }, this));
+ },
+
+ filter: function(section_id, value) {
+ return true;
+ },
+});
+
return L.Class.extend({
ZoneSelect: CBIZoneSelect,
ZoneForwards: CBIZoneForwards,
NetworkSelect: CBINetworkSelect,
DeviceSelect: CBIDeviceSelect,
+ UserSelect: CBIUserSelect,
+ GroupSelect: CBIGroupSelect,
});
diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js
index caae812812..c1389a8fdf 100644
--- a/modules/luci-base/htdocs/luci-static/resources/ui.js
+++ b/modules/luci-base/htdocs/luci-static/resources/ui.js
@@ -2021,6 +2021,9 @@ return L.Class.extend({
document.querySelectorAll('[data-tab]').forEach(function(tab) {
var parent = tab.parentNode;
+ if (L.dom.matches(tab, 'li') && L.dom.matches(parent, 'ul.cbi-tabmenu'))
+ return;
+
if (!parent.hasAttribute('data-tab-group'))
parent.setAttribute('data-tab-group', groups.length);
@@ -2053,6 +2056,9 @@ return L.Class.extend({
groupId = +group.getAttribute('data-tab-group'),
selected = null;
+ if (group.getAttribute('data-initialized') === 'true')
+ return;
+
for (var i = 0, pane; pane = panes[i]; i++) {
var name = pane.getAttribute('data-tab'),
title = pane.getAttribute('data-tab-title'),
@@ -2072,6 +2078,7 @@ return L.Class.extend({
}
group.parentNode.insertBefore(menu, group);
+ group.setAttribute('data-initialized', true);
if (selected === null) {
selected = this.getActiveTabId(panes[0]);
diff --git a/modules/luci-base/luasrc/dispatcher.lua b/modules/luci-base/luasrc/dispatcher.lua
index e8106b741d..f571144566 100644
--- a/modules/luci-base/luasrc/dispatcher.lua
+++ b/modules/luci-base/luasrc/dispatcher.lua
@@ -149,7 +149,11 @@ function httpdispatch(request, prefix)
--context._disable_memtrace()
end
-local function require_post_security(target)
+local function require_post_security(target, args)
+ if type(target) == "table" and target.type == "arcombine" and type(target.targets) == "table" then
+ return require_post_security((type(args) == "table" and #args > 0) and target.targets[2] or target.targets[1], args)
+ end
+
if type(target) == "table" then
if type(target.post) == "table" then
local param_name, required_val, request_val
@@ -470,7 +474,7 @@ function dispatch(request)
return
end
- if c and require_post_security(c.target) then
+ if c and require_post_security(c.target, args) then
if not test_post_security(c) then
return
end
diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po
index 8f15217925..3296021ec5 100644
--- a/modules/luci-base/po/ca/base.po
+++ b/modules/luci-base/po/ca/base.po
@@ -3,19 +3,20 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2014-06-06 11:17+0200\n"
-"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2019-10-21 07:49+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
+"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/luci/ca/>"
+"\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.6\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
-msgstr ""
+msgstr "%.1f dB"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:250
@@ -91,7 +92,7 @@ msgstr ""
#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44
#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23
msgid "-- please select --"
-msgstr ""
+msgstr "-- seleccioneu, si us plau --"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:815
msgid "0 = not using RSSI threshold, 1 = do not change driver default"
@@ -1076,7 +1077,7 @@ msgstr "Tanca la llista..."
#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:201
msgid "Collecting data..."
-msgstr "Aplegant dades..."
+msgstr "S’estan recollint dades…"
#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12
msgid "Command"
@@ -1701,7 +1702,7 @@ msgstr "Emergència"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:755
msgid "Enable"
-msgstr "Habilita"
+msgstr "Activa"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
msgid ""
@@ -1786,7 +1787,7 @@ msgstr "Activa/Desactiva"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:61
msgid "Enabled"
-msgstr "Habilitat"
+msgstr "Activat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
msgid "Enables IGMP snooping on this bridge"
@@ -2177,7 +2178,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
msgid "Global Settings"
-msgstr ""
+msgstr "Configuració global"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
msgid "Global network options"
@@ -2243,7 +2244,7 @@ msgstr ""
#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1967
msgid "Host"
-msgstr "Nom de màquina"
+msgstr "Amfitrió"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:21
msgid "Host entries"
@@ -2268,7 +2269,7 @@ msgstr ""
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:116
msgid "Hostname"
-msgstr "Nom de màquina"
+msgstr "Nom de l’amfitrió"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
msgid "Hostname to send when requesting DHCP"
@@ -2996,7 +2997,7 @@ msgstr "Càrrega mitjana"
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33
msgid "Loading"
-msgstr "Carregant"
+msgstr "S’està carregant"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1796
msgid "Loading directory contents…"
@@ -3458,7 +3459,7 @@ msgstr "Següent"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No"
-msgstr ""
+msgstr "No"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:514
msgid "No DHCP Server configured for this interface"
@@ -5937,7 +5938,7 @@ msgstr ""
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34
msgid "Waiting for command to complete..."
-msgstr "Esperant que s'acabi l'ordre..."
+msgstr "S’està esperant que l’ordre s’acabi…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2496
msgid "Waiting for configuration to get applied… %ds"
@@ -6038,7 +6039,7 @@ msgstr "Escriure el registre del sistema al fitxer"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
msgid ""
diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po
index ed94aa33ec..cf63b9781e 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: 2014-05-31 13:59+0200\n"
-"Last-Translator: koli <lukas.koluch@gmail.com>\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2019-10-19 18:25+0000\n"
+"Last-Translator: Josef Schlehofer <pepe@bloodkings.eu>\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: Pootle 2.0.6\n"
+"X-Generator: Weblate 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
@@ -110,7 +110,7 @@ msgstr ""
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18
msgid "464XLAT (CLAT)"
-msgstr ""
+msgstr "464XLAT (CLAT)"
#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262
msgid "5 Minute Load:"
@@ -122,7 +122,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
msgid "802.11r Fast Transition"
-msgstr ""
+msgstr "802.11r Fast Transition"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
msgid "802.11w Association SA Query maximum timeout"
@@ -214,7 +214,7 @@ msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresa"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
-msgstr ""
+msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:234
msgid ""
@@ -260,7 +260,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
msgid "ADSL"
-msgstr ""
+msgstr "ADSL"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
msgid "ANSI T1.413"
@@ -567,63 +567,63 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:828
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119
msgid "Annex"
-msgstr ""
+msgstr "Annex"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:829
msgid "Annex A + L + M (all)"
-msgstr ""
+msgstr "Annex A + L + M (všechny)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
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:838
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:839
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:840
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:830
msgid "Annex B (all)"
-msgstr ""
+msgstr "Annex B (všechny)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
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:834
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:835
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:831
msgid "Annex J (all)"
-msgstr ""
+msgstr "Annex J (všechno)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:841
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:832
msgid "Annex M (all)"
-msgstr ""
+msgstr "Annex M (všechny)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:842
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:843
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:606
msgid "Announce as default router even if no public prefix is available."
@@ -1854,7 +1854,7 @@ msgstr "Odstraňování..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:164
msgid "Error"
-msgstr "Chyba"
+msgstr "Error"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:129
msgid "Errored seconds (ES)"
@@ -2271,7 +2271,7 @@ msgstr ""
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:116
msgid "Hostname"
-msgstr "Jméno hostitele"
+msgstr "Název počítače"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
msgid "Hostname to send when requesting DHCP"
@@ -2647,12 +2647,12 @@ msgstr "Initskripty"
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98
msgid "Install iputils-traceroute6 for IPv6 traceroute"
-msgstr ""
+msgstr "Nainstalujte balíček iputils-traceroute6 pro IPv6 traceroute"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:220
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120
msgid "Install protocol extensions..."
-msgstr "Instalovat protokolové rozšíření..."
+msgstr "Instalovat protokolové rozšíření…"
#: 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:423
@@ -2685,7 +2685,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3
msgid "Interface is reconnecting..."
-msgstr "Rozhraní se znovu připojuje..."
+msgstr "Rozhraní se znovu připojuje…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
msgid "Interface is shutting down..."
@@ -2777,7 +2777,7 @@ msgstr ""
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:231
#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:291
msgid "JavaScript required!"
-msgstr "Vyžadován JavaScript!"
+msgstr "Je vyžadován JavaScript!"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1694
msgid "Join Network"
@@ -2798,11 +2798,11 @@ msgstr ""
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
msgid "Kernel Log"
-msgstr "Záznam jádra"
+msgstr "Záznam kernelu"
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24
msgid "Kernel Version"
-msgstr "Verze jádra"
+msgstr "Verze kernelu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1249
msgid "Key"
@@ -2862,11 +2862,11 @@ msgstr "Jazyk"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:106
msgid "Language and Style"
-msgstr "Jazyk a styl"
+msgstr "Jazyk a vzhled"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:123
msgid "Latency"
-msgstr ""
+msgstr "Odezva"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
msgid "Leaf"
@@ -2879,7 +2879,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:87
msgid "Leasefile"
-msgstr "Soubor zájpůjček"
+msgstr "Soubor zápůjček"
#: modules/luci-base/luasrc/view/lease_status.htm:74
#: modules/luci-base/luasrc/view/lease_status.htm:95
@@ -2998,7 +2998,7 @@ msgstr "Zátěž"
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27
msgid "Load Average"
-msgstr "Zátěž průměrná"
+msgstr "Průměrná zátěž"
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33
msgid "Loading"
@@ -4322,11 +4322,11 @@ msgstr "Reboot"
#: 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:46
msgid "Rebooting…"
-msgstr ""
+msgstr "Probíhá restartování…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
msgid "Reboots the operating system of your device"
-msgstr "Rebootuje operační systém vašeho zařízení"
+msgstr "Restartuje operační systém vašeho zařízení"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:90
msgid "Receive"
@@ -4370,7 +4370,7 @@ msgstr "Vzdálená IPv4 adresa"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
msgid "Remote IPv4 address or FQDN"
-msgstr ""
+msgstr "Vzdálená IPv4 adresa nebo FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:726
msgid "Remove"
@@ -4394,7 +4394,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
msgid "Required"
-msgstr ""
+msgstr "Vyžadováno"
# Charter je poskytovate
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31
@@ -4534,7 +4534,7 @@ msgstr "Vrátit zpět"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2420
msgid "Revert changes"
-msgstr ""
+msgstr "Vrátit změny"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2569
msgid "Revert request failed with status <code>%h</code>"
@@ -4617,15 +4617,15 @@ msgstr "Přístup přes SSH"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
msgid "SSH server address"
-msgstr ""
+msgstr "Adresa SSH serveru"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
msgid "SSH server port"
-msgstr ""
+msgstr "Port SSH serveru"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
msgid "SSH username"
-msgstr ""
+msgstr "SSH uživatelské jméno"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:263
#: modules/luci-mod-system/luasrc/controller/admin/system.lua:17
@@ -5017,11 +5017,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:135
#: modules/luci-mod-network/luasrc/controller/admin/network.lua:21
msgid "Switch"
-msgstr "Směrovač"
+msgstr "Switch"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:168
msgid "Switch %q"
-msgstr "Směrovač číslo %q"
+msgstr "Switch číslo %q"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:146
msgid ""
@@ -5196,7 +5196,7 @@ msgstr ""
#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38
msgid "The following rules are currently active on this system."
-msgstr "Následující pravidla jsou v nyní na tomto systému aktivní."
+msgstr "Následující pravidla jsou nyní na tomto systému aktivní."
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
msgid "The gateway address must not be a local IP address"
@@ -5249,11 +5249,11 @@ msgid ""
"segments. Often there is by default one Uplink port for a connection to the "
"next greater network like the internet and other ports for a local network."
msgstr ""
-"Síťové porty tohoto zařízení mohou být kombinovány do několika <abbr title="
-"\"Virtualních místních sítí\">VLAN</abbr>ve kterých počítače mohou "
-"komunikovat přímo mezi sebou. <abbr title=\"Virtualní místní sítě \">VLAN</"
-"abbr>se často používají na oddělení různých siťových částí. Většinou je "
-"jeden port pro připojení k vyšší síti (Uplink) jako třeba internet a "
+"Síťové porty tohoto zařízení mohou být kombinovány do několika <abbr title=\""
+"Virtualních místních sítí\">VLAN</abbr> ve kterých počítače mohou "
+"komunikovat přímo mezi sebou. <abbr title=\"Virtuální místní sítě \""
+">VLAN</abbr> se často používají na oddělení různých siťových částí. Většinou "
+"je jeden port pro připojení k vyšší síti (Uplink) jako třeba internet a "
"zbývající porty pro místní síť."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:241
@@ -6002,7 +6002,7 @@ msgstr ""
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:17
#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9
msgid "WireGuard VPN"
-msgstr ""
+msgstr "WireGuard VPN"
#: modules/luci-mod-network/luasrc/controller/admin/network.lua:40
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28
diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po
index 0319cceaa5..f0aede77ad 100644
--- a/modules/luci-base/po/de/base.po
+++ b/modules/luci-base/po/de/base.po
@@ -3,24 +3,25 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 17:57+0200\n"
-"PO-Revision-Date: 2019-09-11 14:00+0200\n"
-"Last-Translator: Jo-Philipp Wich <jo@mein.io>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2019-10-20 13:06+0000\n"
+"Last-Translator: Dirk Brenken <dev@brenken.org>\n"
+"Language-Team: German <https://hosted.weblate.org/projects/openwrt/luci/de/>"
+"\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.2.1\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
-msgstr ""
+msgstr "%.1f dB"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:250
msgid "%d Bit"
-msgstr ""
+msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2171
msgid "%d invalid field(s)"
@@ -113,7 +114,7 @@ msgstr "vierstellige hexadezimale ID"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18
msgid "464XLAT (CLAT)"
-msgstr ""
+msgstr "464XLAT (CLAT)"
#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262
msgid "5 Minute Load:"
@@ -174,12 +175,12 @@ msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373
#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
-msgstr "IPv4-Adresse"
+msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Addresse"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
-msgstr "IPv4-Gateway"
+msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:555
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:35
@@ -259,19 +260,19 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:847
msgid "A43C + J43 + A43"
-msgstr ""
+msgstr "A43C + J43 + A43"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:848
msgid "A43C + J43 + A43 + V43"
-msgstr ""
+msgstr "A43C + J43 + A43 + V43"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
msgid "ADSL"
-msgstr ""
+msgstr "ADSL"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
msgid "ANSI T1.413"
-msgstr ""
+msgstr "ANSI T1.413"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86
@@ -318,7 +319,7 @@ msgstr "ATM Geräteindex"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:136
msgid "ATU-C System Vendor ID"
-msgstr ""
+msgstr "<abbr title=\"Internet Protokoll Version 4\">IPv4</abbr>-Adresse"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:251
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:528
@@ -396,15 +397,15 @@ msgstr "IPv6-Adresse hinzufügen…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:47
msgid "Add LED action"
-msgstr ""
+msgstr "LED-Aktion hinzufügen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:215
msgid "Add VLAN"
-msgstr ""
+msgstr "VLAN hinzufügen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:14
msgid "Add instance"
-msgstr ""
+msgstr "Instanz hinzufügen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:141
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:147
@@ -579,7 +580,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:828
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119
msgid "Annex"
-msgstr ""
+msgstr "Anhang"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:829
msgid "Annex A + L + M (all)"
@@ -587,19 +588,19 @@ msgstr "Annex A, L und M (alle)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
msgid "Annex A G.992.1"
-msgstr ""
+msgstr "Anhang A G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
msgid "Annex A G.992.2"
-msgstr ""
+msgstr "Anhang A G.992.2"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:839
msgid "Annex A G.992.3"
-msgstr ""
+msgstr "Anhang A G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
msgid "Annex A G.992.5"
-msgstr ""
+msgstr "Anhang A G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:830
msgid "Annex B (all)"
@@ -607,15 +608,15 @@ msgstr "Annex B (alle Arten)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
msgid "Annex B G.992.1"
-msgstr ""
+msgstr "Anhang B G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
msgid "Annex B G.992.3"
-msgstr ""
+msgstr "Anhang B G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
msgid "Annex B G.992.5"
-msgstr ""
+msgstr "Anhang B G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
msgid "Annex J (all)"
@@ -623,7 +624,7 @@ msgstr "Annex J (alle Arten)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:841
msgid "Annex L G.992.3 POTS 1"
-msgstr ""
+msgstr "Anhang L G.992.3 POTS 1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
msgid "Annex M (all)"
@@ -631,11 +632,11 @@ msgstr "Annex M (alle Arten)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:842
msgid "Annex M G.992.3"
-msgstr ""
+msgstr "Anhang M G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
msgid "Annex M G.992.5"
-msgstr ""
+msgstr "Anhang M G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:606
msgid "Announce as default router even if no public prefix is available."
@@ -649,7 +650,7 @@ msgstr "Angekündigte Suchdomains"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:610
msgid "Announced DNS servers"
-msgstr "Angekündigte DNS Server"
+msgstr "Angekündigte DNS-Server"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1497
msgid "Anonymous Identity"
@@ -672,7 +673,7 @@ msgstr "Beliebige Zone"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:202
msgid "Apply backup?"
-msgstr ""
+msgstr "Backup anwenden?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2537
msgid "Apply request failed with status <code>%h</code>"
@@ -694,7 +695,7 @@ msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface"
msgstr ""
"Legt die Größe der dieser Schnittstelle zugewiesenen Partitionen der "
-"öffentlichen IPv6-Präfixe fest."
+"öffentlichen IPv6-Präfixe fest"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127
msgid "Assign interfaces..."
@@ -720,6 +721,7 @@ msgstr "Assoziierungen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:178
msgid "Attempt to enable configured mount points for attached devices"
msgstr ""
+"Versuche die konfigurierten Mount-Punkte vorhandener Geräte zu aktivieren"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:101
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
@@ -809,15 +811,15 @@ msgstr "Durchschnitt:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
msgid "B43 + B43C"
-msgstr ""
+msgstr "B43 + B43C"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
msgid "B43 + B43C + V43"
-msgstr ""
+msgstr "B43 + B43C + V43"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
msgid "BR / DMR / AFTR"
-msgstr ""
+msgstr "BR / DMR / AFTR"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:107
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
@@ -887,7 +889,7 @@ msgstr "An Schnittstelle binden"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
msgid "Bind the tunnel to this interface (optional)."
-msgstr "Tunnelendpunkt an diese Schnittstelle binden (optional)"
+msgstr "Tunnelendpunkt an diese Schnittstelle binden (optional)."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:78
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:135
@@ -966,7 +968,7 @@ msgstr "Kategorie"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234
msgid "Chain"
-msgstr "Kette"
+msgstr "Kette (Chain)"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2312
msgid "Changes"
@@ -1000,12 +1002,12 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
msgid "Checking archive…"
-msgstr ""
+msgstr "Archiv wird überprüft…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:276
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:278
msgid "Checking image…"
-msgstr ""
+msgstr "Image wird überprüft…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
msgid "Choose mtdblock"
@@ -1115,7 +1117,7 @@ msgstr "Kommando OK"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:29
msgid "Command failed"
-msgstr ""
+msgstr "Befehl fehlgeschlagen"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
msgid "Comment"
@@ -1184,7 +1186,7 @@ msgstr "Verbindungen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:420
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:51
msgid "Contents have been saved."
-msgstr ""
+msgstr "Inhalte wurden gespeichert."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:619
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
@@ -1262,15 +1264,15 @@ msgstr "Passt das Verhalten der Geräte-LEDs an - wenn dies möglich ist."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1224
msgid "DAE-Client"
-msgstr ""
+msgstr "DAE-Client"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
msgid "DAE-Port"
-msgstr ""
+msgstr "DAE-Port"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
msgid "DAE-Secret"
-msgstr ""
+msgstr "DAE-Geheimnis"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:279
msgid "DHCP Server"
@@ -1323,11 +1325,11 @@ msgstr "DNS-Weiterleitungen"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:37
msgid "DNS-Label / FQDN"
-msgstr ""
+msgstr "DNS-Label / FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
msgid "DNSSEC"
-msgstr ""
+msgstr "DNSSEC"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:140
msgid "DNSSEC check unsigned"
@@ -1344,11 +1346,11 @@ msgstr "DS-Lite AFTR-Adresse"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14
msgid "DSL"
-msgstr ""
+msgstr "DSL"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114
msgid "DSL Status"
-msgstr ""
+msgstr "DSL-Status"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
msgid "DSL line mode"
@@ -1356,7 +1358,7 @@ msgstr "DSL Leitungsmodus"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
msgid "DTIM Interval"
-msgstr ""
+msgstr "DTIM-Intervall"
#: modules/luci-base/luasrc/view/lease_status.htm:94
msgid "DUID"
@@ -1379,7 +1381,7 @@ msgstr "Standard %d"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Default Route"
-msgstr ""
+msgstr "Standard-Route"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
@@ -1431,7 +1433,7 @@ msgstr "Schlüssel löschen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1634
msgid "Delete request failed: %s"
-msgstr ""
+msgstr "Löschauftrag fehlgeschlagen: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:724
msgid "Delete this network"
@@ -1439,7 +1441,7 @@ msgstr "Dieses Netzwerk löschen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
msgid "Delivery Traffic Indication Message Interval"
-msgstr ""
+msgstr "DTIM (Delivery Traffic Indication) Nachrichtenintervall"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:108
msgid "Description"
@@ -1628,7 +1630,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:175
msgid "Do you really want to erase all settings?"
-msgstr ""
+msgstr "Möchten Sie wirklich alle Einstellungen löschen?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1618
msgid "Do you really want to recursively delete the directory \"%s\" ?"
@@ -1682,12 +1684,12 @@ msgid ""
"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
msgstr ""
"Der SSH-Server ermöglicht Shell-Zugriff über das Netzwerk und bietet einen "
-"integrierten SCP-Dienst."
+"integrierten SCP-Dienst"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14
msgid "Dual-Stack Lite (RFC6333)"
-msgstr ""
+msgstr "Dual-Stack Lite (RFC6333)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:547
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
@@ -1703,7 +1705,7 @@ msgid ""
"having static leases will be served."
msgstr ""
"DHCP Adressen dynamisch erzeugen. Wenn dies deaktiviert ist, werden nur "
-"Clients mit konfigurierten statischen Leases bedient"
+"Clients mit konfigurierten statischen Leases bedient."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
msgid "EA-bits length"
@@ -1853,7 +1855,7 @@ msgstr "Aktiviert das Spanning Tree Protokoll auf dieser Netzwerkbrücke"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
msgid "Encapsulation limit"
-msgstr ""
+msgstr "A better translation would be \"Verschachtelungslimit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:853
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
@@ -1926,7 +1928,7 @@ msgstr "Hosts vervollständigen"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:195
msgid "Expecting an hexadecimal assignment hint"
-msgstr ""
+msgstr "Erwarte einen hexadezimalen Zuordnungshinweis"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "Expecting: %s"
@@ -1937,7 +1939,6 @@ msgid "Expires"
msgstr "Verfällt"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:543
-#, fuzzy
msgid ""
"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
msgstr ""
@@ -1986,17 +1987,17 @@ msgstr "FT Protokoll"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:82
msgid "Failed to change the system password."
-msgstr ""
+msgstr "Das Systempasswort konnte nicht geändert werden."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2404
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Konnte nicht innerhalb von %d Sekunden bestätigen, warte auf Zurückrollen "
-"der Änderungen..."
+"der Änderungen…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
-msgstr ""
+msgstr "Fehler beim Ausführen der Aktion \"/etc/init.d/%s %s\": %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1542
msgid "File"
@@ -2012,7 +2013,7 @@ msgstr "Dateiname"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280
msgid "Filename of the boot image advertised to clients"
-msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird."
+msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:215
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:337
@@ -2038,8 +2039,7 @@ msgid ""
"with defaults based on what was detected"
msgstr ""
"Findet alle angeschlossenen Dateisysteme und SWAP-Partitionen und generiert "
-"die Konfiguration mit passenden Standardwerten für alle gefundenen Geräte "
-"neu."
+"die Konfiguration mit passenden Standardwerten für alle gefundenen Geräte neu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:697
msgid "Find and join network"
@@ -2055,7 +2055,7 @@ msgstr "Firewall"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:76
msgid "Firewall Mark"
-msgstr "Firewall-Markierung"
+msgstr "Firewall Mark"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:278
msgid "Firewall Settings"
@@ -2084,7 +2084,7 @@ msgstr "Firmware aktualisieren..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:362
msgid "Flash image?"
-msgstr ""
+msgstr "Image schreiben?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:484
msgid "Flash new firmware image"
@@ -2097,7 +2097,7 @@ msgstr "Flash-Operationen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:371
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:373
msgid "Flashing…"
-msgstr ""
+msgstr "Flashing…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:550
msgid "Force"
@@ -2303,7 +2303,7 @@ msgstr "Leere Chains ausblenden"
#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1967
msgid "Host"
-msgstr ""
+msgstr "Host"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:21
msgid "Host entries"
@@ -2341,7 +2341,7 @@ msgstr "Rechnernamen"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
msgid "Hybrid"
-msgstr ""
+msgstr "Hybrid"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
msgid "IKE DH Group"
@@ -2396,7 +2396,7 @@ msgstr "IPv4 Firewall"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48
msgid "IPv4 Upstream"
-msgstr ""
+msgstr "IPv4-Upstream"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
msgid "IPv4 address"
@@ -2433,7 +2433,7 @@ msgstr "Länge des IPv4-Präfix"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
msgid "IPv4+IPv6"
-msgstr ""
+msgstr "IPv4+IPv6"
#: modules/luci-base/luasrc/view/lease_status.htm:72
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:34
@@ -2443,7 +2443,7 @@ msgstr "IPv4-Adresse"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9
msgid "IPv4-in-IPv4 (RFC2003)"
-msgstr ""
+msgstr "IPv4-in-IPv4 (RFC2003)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24
@@ -2499,7 +2499,7 @@ msgstr "IPv6 ULA-Präfix"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81
msgid "IPv6 Upstream"
-msgstr ""
+msgstr "IPv6-Upstream"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:202
msgid "IPv6 address"
@@ -2692,7 +2692,7 @@ msgstr "Info"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105
msgid "Information"
-msgstr ""
+msgstr "Informationen"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67
@@ -2716,7 +2716,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:220
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120
msgid "Install protocol extensions..."
-msgstr "Installiere Protokoll-Erweiterungen"
+msgstr "Installiere Protokoll-Erweiterungen..."
#: 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:423
@@ -2804,7 +2804,7 @@ msgstr "Ungültige VLAN ID angegeben! Nur IDs zwischen %d und %d sind erlaubt."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:290
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
-msgstr "Ungültige VLAN ID angegeben! Die ID ist muß eindeutig sein!"
+msgstr "Ungültige VLAN-ID angegeben! Nur eindeutige IDs sind zulässig"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:395
msgid "Invalid argument"
@@ -2821,14 +2821,13 @@ msgstr "Ungültiger Hexadezimalwert"
#: modules/luci-base/luasrc/view/sysauth.htm:12
msgid "Invalid username and/or password! Please try again."
msgstr ""
-"Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen. "
+"Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
msgid "Isolate Clients"
msgstr "Clients isolieren"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:314
-#, fuzzy
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
@@ -2857,7 +2856,7 @@ msgstr "Trete Netzwerk %q bei"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:306
msgid "Keep settings and retain the current configuration"
-msgstr ""
+msgstr "Einstellungen beibehalten und die aktuelle Konfiguration sichern"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
@@ -3058,7 +3057,7 @@ msgstr "Aktive Schnittstellen"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
msgid "Listen Port"
-msgstr "Aktive Ports"
+msgstr "Port (lauschen)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:16
msgid "Listen only on the given interface or, if unspecified, on all"
@@ -3132,7 +3131,6 @@ msgid "Local domain"
msgstr "Lokale Domain"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:147
-#, fuzzy
msgid ""
"Local domain specification. Names matching this domain are never forwarded "
"and are resolved from DHCP or hosts files only"
@@ -3189,7 +3187,7 @@ msgstr "Signalverlustsekunden (LOSS)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:533
msgid "Lowest leased address as offset from the network address."
-msgstr "Kleinste vergebene Adresse (Netzwerkadresse + x)"
+msgstr "Kleinste vergebene Adresse (Netzwerkadresse + x)."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:40
@@ -3197,7 +3195,7 @@ msgstr "Kleinste vergebene Adresse (Netzwerkadresse + x)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86
msgid "MAC"
-msgstr ""
+msgstr "MAC"
#: modules/luci-base/luasrc/view/lease_status.htm:73
#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109
@@ -3224,7 +3222,7 @@ msgstr "MAC-Adressliste"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16
msgid "MAP / LW4over6"
-msgstr ""
+msgstr "MAP / LW4over6"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62
@@ -3237,7 +3235,7 @@ msgstr "MB/s"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:301
msgid "MD5"
-msgstr ""
+msgstr "MD5"
#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21
msgid "MHz"
@@ -3268,7 +3266,7 @@ msgstr "Manuell"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3605
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:594
msgid "Master"
-msgstr ""
+msgstr "Master"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:122
msgid "Max. Attainable Data Rate (ATTNDR)"
@@ -3298,7 +3296,7 @@ msgstr "Maximale Zeit die gewartet wird bis das Modem bereit ist (in Sekunden)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:538
msgid "Maximum number of leased addresses."
-msgstr "Maximal zulässige Anzahl von vergeben DHCP-Adressen"
+msgstr "Maximal zulässige Anzahl von vergeben DHCP-Adressen."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:762
msgid "Maximum transmit power"
@@ -3327,11 +3325,11 @@ msgstr "Speichernutzung (%)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3608
msgid "Mesh"
-msgstr ""
+msgstr "Mesh"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
msgid "Mesh ID"
-msgstr ""
+msgstr "Mesh-ID"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:807
msgid "Mesh Id"
@@ -3433,11 +3431,11 @@ msgid ""
"filesystem"
msgstr ""
"Einhängepunkte bestimmen, an welcher Stelle des Dateisystems bestimmte "
-"Laufwerke und Speicher zur Verwendung eingebunden werden."
+"Laufwerke und Speicher zur Verwendung eingebunden werden"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:178
msgid "Mount attached devices"
-msgstr ""
+msgstr "Angeschlossene Geräte einhängen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:186
msgid "Mount filesystems not specifically configured"
@@ -3482,15 +3480,15 @@ msgstr "NAT64-Präfix"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26
msgid "NCM"
-msgstr ""
+msgstr "NCM"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:589
msgid "NDP-Proxy"
-msgstr ""
+msgstr "NDP-Proxy"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
msgid "NT Domain"
-msgstr ""
+msgstr "NT-Domäne"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269
msgid "NTP server candidates"
@@ -3602,7 +3600,7 @@ msgstr "Kein Passwort gesetzt!"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:104
msgid "No peers defined yet"
-msgstr "Noch keine Peers definiert."
+msgstr "Noch keine Peers definiert"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:257
@@ -3611,7 +3609,7 @@ msgstr "Bisher keine SSH-Schlüssel hinterlegt."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83
msgid "No rules in this chain."
-msgstr "Keine Regeln in dieser Kette"
+msgstr "Keine Regeln in dieser Kette."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:53
msgid "No signal"
@@ -3648,7 +3646,7 @@ msgstr "An Schnittstellen binden"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:108
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:130
msgid "None"
-msgstr "keine"
+msgstr "Keine"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
msgid "Normal"
@@ -3692,7 +3690,7 @@ msgstr "DNS-Auflösung"
msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
msgstr ""
"Anzahl der zwischengespeicherten DNS-Einträge. Maximum sind 10000 Einträge, "
-"\"0\" deaktiviert die Zwischenspeicherung."
+"\"0\" deaktiviert die Zwischenspeicherung"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
msgid "Number of parallel threads used for compression"
@@ -3759,7 +3757,7 @@ msgstr "Liste öffnen..."
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:61
#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9
msgid "OpenConnect (CISCO AnyConnect)"
-msgstr ""
+msgstr "OpenConnect (CISCO AnyConnect)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:758
msgid "Operating frequency"
@@ -3970,7 +3968,7 @@ msgstr "PIN-Code abgelehnt"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1373
msgid "PMK R1 Push"
-msgstr ""
+msgstr "PMK R1 Push"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13
@@ -3994,7 +3992,7 @@ msgstr "PPPoE"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9
msgid "PPPoSSH"
-msgstr ""
+msgstr "PPPoSSH"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15
@@ -4110,7 +4108,7 @@ msgstr "Verbindungspartner"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
msgid "Perfect Forward Secrecy"
-msgstr ""
+msgstr "Perfect Forward Secrecy"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
msgid "Perform reboot"
@@ -4139,7 +4137,7 @@ msgstr "Physische Einstellungen"
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79
msgid "Ping"
-msgstr "Ping-Anfrage"
+msgstr "Ping"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17
@@ -4162,7 +4160,7 @@ msgstr "Bitte Benutzernamen und Passwort eingeben."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:16
msgid "Please select the file to upload."
-msgstr ""
+msgstr "Bitte wählen Sie die hochzuladende Datei aus."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45
msgid "Policy"
@@ -4174,7 +4172,7 @@ msgstr "Port"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:133
msgid "Port %s"
-msgstr ""
+msgstr "Port %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:274
msgid "Port status:"
@@ -4223,7 +4221,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:305
msgid "Prevent listening on these interfaces."
-msgstr "Verhindert das Binden an diese Schnittstellen"
+msgstr "Verhindert das Binden an diese Schnittstellen."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
msgid "Prevents client-to-client communication"
@@ -4295,7 +4293,7 @@ msgstr ""
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9
msgid "QMI Cellular"
-msgstr ""
+msgstr "QMI Cellular"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:173
msgid "Quality"
@@ -4372,7 +4370,7 @@ msgstr "Radius-Authentication-Server"
msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
msgstr ""
"Hexadezimal-kodierte Zeichensequenz. Nur angeben wenn der Internetanbieter "
-"einen bestimmten Wert erwartet."
+"einen bestimmten Wert erwartet"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:84
msgid ""
@@ -4387,7 +4385,7 @@ msgid ""
msgstr ""
"Diese Schnittstelle wirklich löschen? Das Löschen kann nicht rückgängig "
"gemacht werden! Der Kontakt zum Gerät könnte verloren gehen wenn die "
-"Verbindung über diese Schnittstelle erfolgt."
+"Verbindung über diese Schnittstelle erfolgt"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:354
msgid "Really switch protocol?"
@@ -4431,11 +4429,11 @@ msgstr "Neu Starten"
#: 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:46
msgid "Rebooting…"
-msgstr ""
+msgstr "Neustart…"
#: 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."
+msgstr "Startet das Betriebssystem des Routers neu"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:90
msgid "Receive"
@@ -4512,12 +4510,12 @@ msgstr ""
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:49
msgid "Required. Base64-encoded private key for this interface."
-msgstr "Benötigt. Base64-kodierter privater Schlüssel für diese Schnittstelle"
+msgstr "Benötigt. Base64-kodierter privater Schlüssel für diese Schnittstelle."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:113
msgid "Required. Base64-encoded public key of peer."
msgstr ""
-"Benötigt. Base64-kodierter öffentlicher Schlüssel für diese Schnittstelle"
+"Benötigt. Base64-kodierter öffentlicher Schlüssel für diese Schnittstelle."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:122
msgid ""
@@ -4555,7 +4553,7 @@ msgid ""
"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)"
msgstr ""
"Benötigt die \"volle\" Variante des wpad oder hostapd Paketes und "
-"Unterstützung vom WLAN-Treiber."
+"Unterstützung vom WLAN-Treiber"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:141
msgid ""
@@ -4563,7 +4561,7 @@ msgid ""
"come from unsigned domains"
msgstr ""
"Setzt DNSSEC-Unterstützung im DNS-Zielserver vorraus; überprüft ob "
-"unsignierte Antworten wirklich von unsignierten Domains kommen."
+"unsignierte Antworten wirklich von unsignierten Domains kommen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1108
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
@@ -4659,11 +4657,11 @@ msgstr "Anforderung zum Verwerfen mit Status <code>%h</code> fehlgeschlagen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2549
msgid "Reverting configuration…"
-msgstr "Verwerfe Konfigurationsänderungen..."
+msgstr "Verwerfe Konfigurationsänderungen…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271
msgid "Root directory for files served via TFTP"
-msgstr "Wurzelverzeichnis für über TFTP ausgelieferte Dateien "
+msgstr "Wurzelverzeichnis für über TFTP ausgelieferte Dateien"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:320
msgid "Root preparation"
@@ -4671,7 +4669,7 @@ msgstr "Wurzelverzeichnis erzeugen"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:126
msgid "Route Allowed IPs"
-msgstr "Erlaubte IP-Addressen routen"
+msgstr "Erlaubte IP-Adressen routen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:72
msgid "Route table"
@@ -4702,7 +4700,7 @@ msgid ""
"can be reached."
msgstr ""
"Netzwerkrouten geben an, über welche Schnittstellen bestimmte Rechner oder "
-"Netzwerke erreicht werden können"
+"Netzwerke erreicht werden können."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240
msgid "Rule"
@@ -4710,7 +4708,7 @@ msgstr "Regel"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:358
msgid "Run a filesystem check before mounting the device"
-msgstr "Vor dem Einhängen Dateisystemprüfung starten "
+msgstr "Vor dem Einhängen Dateisystemprüfung starten"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:358
msgid "Run filesystem check"
@@ -4722,11 +4720,11 @@ msgstr "Laufzeitfehler"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:302
msgid "SHA256"
-msgstr ""
+msgstr "SHA256"
#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77
msgid "SNR"
-msgstr ""
+msgstr "SNR"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:9
#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16
@@ -4759,7 +4757,7 @@ msgstr "SSID"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
msgid "SWAP"
-msgstr ""
+msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1381
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2917
@@ -4787,7 +4785,7 @@ msgstr "Inhalte von mtdblock-Partitionen speichern"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:699
msgid "Scan"
-msgstr "Scan"
+msgstr "Suche"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21
@@ -4867,11 +4865,11 @@ msgid ""
msgstr ""
"Schnittstelleneigenschaften werden unabhängig vom Link gesetzt (ist die "
"Option ausgewählt, so werden die Hotplug-Skripte bei Änderung nicht "
-"aufgerufen)"
+"aufgerufen)."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:594
msgid "Set this interface as master for the dhcpv6 relay."
-msgstr ""
+msgstr "Diese Schnittstelle als DHCPv6-Relay Master festlegen."
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55
@@ -4944,7 +4942,7 @@ msgstr "Größe des DNS-Caches"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:182
msgid "Size of the ZRam device in megabytes"
-msgstr "Größe der ZRAM-Gerätedatei in Megabytes."
+msgstr "Größe der ZRAM-Gerätedatei in Megabytes"
#: modules/luci-base/luasrc/view/cbi/footer.htm:18
#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57
@@ -5029,7 +5027,7 @@ msgstr ""
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
msgid "Specify a TOS (Type of Service)."
-msgstr "Setzt einen spezifischen TOS (Type of Service) Wert"
+msgstr "Setzt einen spezifischen TOS (Type of Service) Wert."
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
msgid ""
@@ -5049,7 +5047,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1831
msgid "Specify the secret encryption key here."
-msgstr "Geben Sie hier den geheimen Netzwerkschlüssel an"
+msgstr "Geben Sie hier den geheimen Netzwerkschlüssel an."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:533
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:74
@@ -5063,7 +5061,7 @@ msgstr "Startpriorität"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2514
msgid "Starting configuration apply…"
-msgstr "Starte Anwendung der Konfigurationsänderungen..."
+msgstr "Starte Anwendung der Konfigurationsänderungen…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
msgid "Starting wireless scan..."
@@ -5265,7 +5263,7 @@ msgstr "Beenden"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:120
msgid "The <em>block mount</em> command failed with code %d"
-msgstr ""
+msgstr "Der Befehl <em>block mount</em> ist mit Code %d fehlgeschlagen"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
msgid ""
@@ -5273,7 +5271,7 @@ msgid ""
"username instead of the user ID!"
msgstr ""
"Die Updateprozedur für HE.net Tunnel-IP-Adrerssen hat sich geändert, statt "
-"der numerischen User-ID muss nun der normale Benutzername angegeben werden."
+"der numerischen User-ID muss nun der normale Benutzername angegeben werden!"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
msgid ""
@@ -5339,7 +5337,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:180
msgid "The firstboot command failed with code %d"
-msgstr ""
+msgstr "Der firstboot-Befehl ist mit Code %d fehlgeschlagen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:298
msgid ""
@@ -5347,6 +5345,10 @@ msgid ""
"compare them with the original file to ensure data integrity. <br /> Click "
"\"Proceed\" below to start the flash procedure."
msgstr ""
+"Das Firmware-Image wurde hochgeladen. Die aufgeführte Prüfsumme und "
+"Dateigröße mit der ursprünglichen Datei vergleichen um die Datenintegrität "
+"zu gewährleisten.<br />Auf \"Fortfahren\" klicken um den Schreibvorgang zu "
+"starten."
#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38
msgid "The following rules are currently active on this system."
@@ -5418,11 +5420,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:241
msgid "The reboot command failed with code %d"
-msgstr ""
+msgstr "Der Neustartbefehl ist mit dem Code %d fehlgeschlagen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:230
msgid "The restore command failed with code %d"
-msgstr ""
+msgstr "Der Wiederherstellungsbefehl ist mit dem Code %d fehlgeschlagen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1150
msgid "The selected %s mode is incompatible with %s encryption"
@@ -5444,7 +5446,6 @@ msgstr ""
"Systems durchgeführt."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
-#, fuzzy
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 "
@@ -5461,6 +5462,9 @@ msgid ""
"The system is rebooting now. If the restored configuration changed the "
"current LAN IP address, you might need to reconnect manually."
msgstr ""
+"Das System wird gerade neu gestartet. Wenn die wiederhergestellte "
+"Konfiguration die aktuelle LAN-IP-Adresse geändert hat, müssen Sie sich "
+"möglicherweise manuell neu verbinden."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:80
msgid "The system password has been successfully changed."
@@ -5468,7 +5472,7 @@ msgstr "Das Systempasswort wurde erfolgreich geändert."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
msgid "The sysupgrade command failed with code %d"
-msgstr ""
+msgstr "Der Befehl sysupgrade ist mit dem Code %d fehlgeschlagen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:203
msgid ""
@@ -5476,14 +5480,20 @@ msgid ""
"listed below. Press \"Continue\" to restore the backup and reboot, or "
"\"Cancel\" to abort the operation."
msgstr ""
+"Das hochgeladene Backup-Archiv scheint gültig zu sein und enthält die unten "
+"aufgeführten Dateien. Auf \"Weiter\" drücken um das Backup "
+"wiederherzustellen und neu zu starten, oder \"Abbrechen\", um den Vorgang "
+"abzubrechen."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:198
msgid "The uploaded backup archive is not readable"
-msgstr ""
+msgstr "Das hochgeladene Backup-Archiv ist nicht lesbar"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:327
msgid "The uploaded firmware does not allow keeping current configuration."
msgstr ""
+"Die hochgeladene Firmware erlaubt es nicht, die aktuelle Konfiguration "
+"beizubehalten."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
msgid ""
@@ -5500,7 +5510,7 @@ msgstr "Es gibt keine aktiven Leases"
#: modules/luci-base/luasrc/view/lease_status.htm:29
#: modules/luci-base/luasrc/view/lease_status.htm:61
msgid "There are no active leases."
-msgstr "Es gibt z.Z. keine aktiven Leases."
+msgstr "Es gibt keine aktiven Leases."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "There are no changes to apply"
@@ -5560,7 +5570,7 @@ msgid ""
msgstr ""
"Dies ist entweder der \"Update Key\" der für diesen Tunnel eingerichtet "
"wurde oder das normale Account-Passwort wenn kein separater Schlüssel "
-"gesetzt wurde."
+"gesetzt wurde"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
msgid ""
@@ -5586,14 +5596,14 @@ msgstr "Dies ist der einzige DHCP im lokalen Netz"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
msgid "This is the plain username for logging into the account"
-msgstr "Das ist der normale Login-Name für den Account."
+msgstr "Das ist der normale Login-Name für den Account"
#: 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 ""
"Dies ist das vom Tunnel-Broker geroutete öffentliche Präfix zur Verwendung "
-"durch nachgelagerte Clients."
+"durch nachgelagerte Clients"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:24
msgid "This is the system crontab in which scheduled tasks can be defined."
@@ -5770,7 +5780,7 @@ msgstr "Client-ID konnte nicht bezogen werden"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:244
msgid "Unable to obtain mount information"
-msgstr ""
+msgstr "Die Mountinformationen können nicht ermittelt werden"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61
@@ -5786,7 +5796,7 @@ msgstr "Der Name des entfernten Hosts konnte nicht aufgelöst werden"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:422
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:53
msgid "Unable to save contents: %s"
-msgstr ""
+msgstr "Inhalt kann nicht gespeichert werden: %s"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:132
msgid "Unavailable Seconds (UAS)"
@@ -5794,7 +5804,7 @@ msgstr "Nicht verfügbare Sekunden (UAS)"
#: modules/luci-base/htdocs/luci-static/resources/fs.js:100
msgid "Unexpected reply data format"
-msgstr ""
+msgstr "Unerwartetes Antwortdatenformat"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1984
#: modules/luci-base/luasrc/model/network.lua:970
@@ -5855,12 +5865,14 @@ msgstr "Hoch"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:88
msgid "Upload"
-msgstr ""
+msgstr "Hochladen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:486
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware."
msgstr ""
+"Ein \"sysupgrade\" kompatibles Image hochladen um die laufende Firmware zu "
+"ersetzen."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:221
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:252
@@ -5884,7 +5896,7 @@ msgstr "Upload-Anfrage fehlgeschlagen: %s"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:15
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:53
msgid "Uploading file…"
-msgstr ""
+msgstr "Datei wird hochgeladen…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:614
msgid ""
@@ -5909,7 +5921,7 @@ msgstr "Verwende /etc/ethers"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:264
msgid "Use DHCP advertised servers"
-msgstr ""
+msgstr "DHCP beworbene Server verwenden"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
@@ -6040,6 +6052,8 @@ msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
+"Wird für zwei verschiedene Zwecke verwendet: RADIUS NAS ID und 802.11r R0KH-"
+"ID. Nicht erforderlich mit normalem WPA(2)-PSK."
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
msgid "User certificate (PEM encoded)"
@@ -6061,7 +6075,7 @@ msgstr "VC-Mux"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:861
msgid "VDSL"
-msgstr ""
+msgstr "VDSL"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:169
msgid "VLANs on %q"
@@ -6069,7 +6083,7 @@ msgstr "VLANs auf %q"
#: modules/luci-base/luasrc/controller/admin/index.lua:55
msgid "VPN"
-msgstr ""
+msgstr "VPN"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
msgid "VPN Local address"
@@ -6108,7 +6122,7 @@ msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279
msgid "Verifying the uploaded image file."
-msgstr ""
+msgstr "Überprüfen der hochgeladenen Firmware-Datei."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76
@@ -6154,7 +6168,7 @@ msgstr "Der Befehl wird ausgeführt..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2496
msgid "Waiting for configuration to get applied… %ds"
-msgstr "Warte auf das Anwenden der Konfiguration… %d Sek."
+msgstr "Warte auf das Anwenden der Konfiguration… %ds"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
msgid "Waiting for device..."
@@ -6193,7 +6207,7 @@ msgstr "Breite"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:17
#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9
msgid "WireGuard VPN"
-msgstr ""
+msgstr "WireGuard VPN"
#: modules/luci-mod-network/luasrc/controller/admin/network.lua:40
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28
@@ -6469,7 +6483,7 @@ msgstr "Lokale DNS-Datei"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
msgid "medium security"
-msgstr ""
+msgstr "mittlere Sicherheit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1361
msgid "minutes"
@@ -6517,7 +6531,7 @@ msgstr "ein"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
msgid "open network"
-msgstr ""
+msgstr "Offenes Netzwerk"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:56
#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46
@@ -6570,7 +6584,7 @@ msgstr "zustandslos + zustandsorientiert"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
msgid "strong security"
-msgstr ""
+msgstr "hohe Sicherheit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:346
msgid "tagged"
@@ -6778,7 +6792,7 @@ msgstr "Wert mit maximal %d Zeichen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
msgid "weak security"
-msgstr ""
+msgstr "geringe Sicherheit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:39
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34
diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po
index ccef1183c0..ecbe66a5bf 100644
--- a/modules/luci-base/po/es/base.po
+++ b/modules/luci-base/po/es/base.po
@@ -3,15 +3,16 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2019-09-25 12:05-0300\n"
+"PO-Revision-Date: 2019-10-22 08:49+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
+"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>"
+"\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.2.3\n"
-"Language-Team: \n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
@@ -202,7 +203,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
-msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
+msgstr "Sufijo (hex)<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:40
#: modules/luci-mod-system/luasrc/controller/admin/system.lua:29
@@ -1106,7 +1107,7 @@ msgstr "Cerrar lista..."
#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:201
msgid "Collecting data..."
-msgstr "Recolectando datos..."
+msgstr "Recolectando datos…"
#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12
msgid "Command"
@@ -1437,7 +1438,7 @@ msgstr "Eliminar clave"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1634
msgid "Delete request failed: %s"
-msgstr ""
+msgstr "Error al eliminar la solicitud: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:724
msgid "Delete this network"
@@ -1524,27 +1525,27 @@ msgstr "Directorio"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:755
msgid "Disable"
-msgstr "Deshabilitar"
+msgstr "Desactivar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:531
msgid ""
"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
"this interface."
msgstr ""
-"Deshabilitar <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
+"Desactivar <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
"para esta interfaz."
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "Disable Encryption"
-msgstr "Deshabilitar encriptación"
+msgstr "Desactivar encriptación"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:974
msgid "Disable Inactivity Polling"
-msgstr "Deshabilitar el sondeo de inactividad"
+msgstr "Desactivar sondeo de inactividad"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:714
msgid "Disable this network"
-msgstr "Deshabilitar esta red"
+msgstr "Desactivar esta red"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1535
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:61
@@ -1556,7 +1557,7 @@ msgstr "Deshabilitar esta red"
#: 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 "Deshabilitado"
+msgstr "Desactivado"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
msgid "Disassociate On Low Acknowledgement"
@@ -1707,8 +1708,8 @@ msgid ""
"Dynamically allocate DHCP addresses for clients. If disabled, only clients "
"having static leases will be served."
msgstr ""
-"Reparte direcciones DHCP dinámicamente a los clientes. Si se deshabilita, "
-"sólo se dará a clientes con direcciones estáticas."
+"Reparte direcciones DHCP dinámicamente a los clientes. Si se desactiva, sólo "
+"se dará a clientes con direcciones estáticas."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
msgid "EA-bits length"
@@ -1751,27 +1752,27 @@ msgstr "Emergencia"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:755
msgid "Enable"
-msgstr "Habilitar"
+msgstr "Activar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
"snooping"
msgstr ""
-"Habilitar <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
+"Activar <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
"Snooping"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:412
msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
-msgstr "Habilitar <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
+msgstr "Activar <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
msgid "Enable HE.net dynamic endpoint update"
-msgstr "Habilitar actualización dinámica de punto final HE.net"
+msgstr "Activar actualización dinámica de punto final HE.net"
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
msgid "Enable IPv6 negotiation"
-msgstr "Habilitar negociación IPv6"
+msgstr "Activar negociación 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
@@ -1780,82 +1781,82 @@ msgstr "Habilitar negociación IPv6"
#: 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 "Habilitar negociación IPv6 en el enlace PPP"
+msgstr "Activar negociación IPv6 en el enlace PPP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:188
msgid "Enable Jumbo Frame passthrough"
-msgstr "Habilitar paso de tramas jumbo"
+msgstr "Activar paso de tramas jumbo"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:235
msgid "Enable NTP client"
-msgstr "Habilitar cliente NTP"
+msgstr "Activar cliente NTP"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
msgid "Enable Single DES"
-msgstr "Habilitar solo DES"
+msgstr "Activar sólo DES"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
msgid "Enable TFTP server"
-msgstr "Habilitar servidor TFTP"
+msgstr "Activar servidor TFTP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:180
msgid "Enable VLAN functionality"
-msgstr "Habilitar funcionalidad VLAN"
+msgstr "Activar funcionalidad VLAN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596
msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
-msgstr "Habilitar botón WPS, requiere WPA(2)-PSK/WPA3-SAE"
+msgstr "Activar botón WPS, requiere WPA(2)-PSK/WPA3-SAE"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
msgid "Enable key reinstallation (KRACK) countermeasures"
-msgstr "Habilitar las medidas correctivas de reinstalación de claves (KRACK)"
+msgstr "Activar las medidas correctivas de reinstalación de claves (KRACK)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:183
msgid "Enable learning and aging"
-msgstr "Habilitar aprendizaje y envejecimiento"
+msgstr "Activar aprendizaje y envejecimiento"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
msgid "Enable mirroring of incoming packets"
-msgstr "Habilitar la duplicación de paquetes entrantes"
+msgstr "Activar la duplicación de paquetes entrantes"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:195
msgid "Enable mirroring of outgoing packets"
-msgstr "Habilitar la duplicación de paquetes salientes"
+msgstr "Activar la duplicación de paquetes salientes"
#: 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 ""
-"Habilita el indicador DF (No fragmentar) de los paquetes de encapsulación."
+"Activar el indicador DF (No fragmentar) de los paquetes de encapsulación."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:714
msgid "Enable this network"
-msgstr "Habilitar esta red"
+msgstr "Activar esta red"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:73
msgid "Enable/Disable"
-msgstr "Habilitar/Deshabilitar"
+msgstr "Activar/Desactivar"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:266
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:61
msgid "Enabled"
-msgstr "Habilitado"
+msgstr "Activar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
msgid "Enables IGMP snooping on this bridge"
-msgstr "Habilita el protocolo IGMP Snooping en este puente"
+msgstr "Activa el protocolo IGMP Snooping en este puente"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
msgid ""
"Enables fast roaming among access points that belong to the same Mobility "
"Domain"
msgstr ""
-"Habilita la itinerancia rápida entre los APs que pertenecen al mismo dominio "
+"Activa la itinerancia rápida entre los APs que pertenecen al mismo dominio "
"de movilidad"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:412
msgid "Enables the Spanning Tree Protocol on this bridge"
-msgstr "Habilita el protocolo Spanning Tree en este puente"
+msgstr "Activa el protocolo Spanning Tree en este puente"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
msgid "Encapsulation limit"
@@ -2089,7 +2090,7 @@ msgstr "Grabar imagen..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:362
msgid "Flash image?"
-msgstr "¿Instalar imagen en flash?"
+msgstr "¿Grabar imagen en flash?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:484
msgid "Flash new firmware image"
@@ -2331,7 +2332,7 @@ msgstr "Contenido de la etiqueta Host-Uniq"
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:116
msgid "Hostname"
-msgstr "Nombre del host"
+msgstr "Nombre de anfitrión"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
msgid "Hostname to send when requesting DHCP"
@@ -2577,11 +2578,11 @@ msgstr "Identidad"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
msgid "If checked, 1DES is enabled"
-msgstr "Si está comprobado, 1DES está habilitado"
+msgstr "Si está comprobado, 1DES está activado"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "If checked, encryption is disabled"
-msgstr "Si está marcado, el encriptado estará deshabilitado"
+msgstr "Si está marcado, la encriptación estará desactivada"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:277
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:383
@@ -2858,7 +2859,7 @@ msgstr "Conectarse a: %q"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:306
msgid "Keep settings and retain the current configuration"
-msgstr ""
+msgstr "Mantener los ajustes y conservar la configuración actual"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
@@ -3329,7 +3330,7 @@ msgstr "Malla"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
msgid "Mesh ID"
-msgstr ""
+msgstr "ID de malla"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:807
msgid "Mesh Id"
@@ -3834,8 +3835,8 @@ msgid ""
"Recommended value if this device is behind a NAT is 25."
msgstr ""
"Opcional. Segundos entre los mensajes de mantener conectado. El valor "
-"predeterminado es 0 (deshabilitado). El valor recomendado si este "
-"dispositivo está detrás de un NAT es 25."
+"predeterminado es 0 (desactivado). El valor recomendado es 25 si su "
+"dispositivo está detrás de un NAT."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
msgid "Optional. UDP port used for outgoing and incoming packets."
@@ -4482,7 +4483,7 @@ msgstr "Dirección IPv4 remota o FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:726
msgid "Remove"
-msgstr "Remover"
+msgstr "Desinstalar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
msgid "Replace wireless configuration"
@@ -4592,7 +4593,7 @@ msgstr "Requiere wpa-supplicant con soporte SAE"
#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66
#: modules/luci-base/luasrc/view/sysauth.htm:39
msgid "Reset"
-msgstr "Reiniciar"
+msgstr "Restablecer"
#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62
msgid "Reset Counters"
@@ -4809,7 +4810,7 @@ msgid ""
"fails. Use only if you are sure that the firmware is correct and meant for "
"your device!"
msgstr ""
-"Seleccione \"Forzar actualización\" para flashear la imagen incluso si falla "
+"Seleccione \"Forzar actualización\" para grabar la imagen incluso si falla "
"la verificación del formato de la imagen. ¡Úselo solo si está seguro de que "
"el firmware es correcto y está diseñado para su dispositivo!"
@@ -5342,7 +5343,7 @@ msgid ""
"compare them with the original file to ensure data integrity. <br /> Click "
"\"Proceed\" below to start the flash procedure."
msgstr ""
-"Se ha instalado la imagen en flash. A continuación se muestra la suma de "
+"Se ha subido la imagen a grabar. A continuación se muestra la suma de "
"comprobación y el tamaño del archivo, compárelos con el archivo original "
"para garantizar la integridad de los datos. <br /> Haga clic en \"Continuar"
"\" a continuación para iniciar el procedimiento de instalación."
@@ -5481,7 +5482,7 @@ msgstr "El archivo de copia de seguridad cargado no es legible"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:327
msgid "The uploaded firmware does not allow keeping current configuration."
-msgstr ""
+msgstr "El firmware cargado no permite mantener la configuración actual."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
msgid ""
@@ -5498,7 +5499,7 @@ msgstr "No hay direcciones activas"
#: modules/luci-base/luasrc/view/lease_status.htm:29
#: modules/luci-base/luasrc/view/lease_status.htm:61
msgid "There are no active leases."
-msgstr "Sin conexiones activas."
+msgstr "No hay ninguna concesión activa."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "There are no changes to apply"
@@ -5512,8 +5513,8 @@ msgid ""
"There is no password set on this router. Please configure a root password to "
"protect the web interface and enable SSH."
msgstr ""
-"No hay contraseñas en este router. Por favor, configure una contraseña para "
-"proteger la interfaz web y habilitar SSH."
+"No hay contraseñas en este dispositivo. Por favor, configure una contraseña "
+"para proteger la interfaz web y activar SSH."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
msgid "This IPv4 address of the relay"
@@ -5787,7 +5788,7 @@ msgstr "Segundos no disponibles (UAS)"
#: modules/luci-base/htdocs/luci-static/resources/fs.js:100
msgid "Unexpected reply data format"
-msgstr ""
+msgstr "Formato de datos de respuesta inesperado"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1984
#: modules/luci-base/luasrc/model/network.lua:970
@@ -5854,6 +5855,8 @@ msgstr "Subir"
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware."
msgstr ""
+"Cargue aquí una imagen compatible con sysupgrade para reemplazar el firmware "
+"en ejecución."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:221
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:252
@@ -5902,7 +5905,7 @@ msgstr "Usar <code>/etc/ethers</code>"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:264
msgid "Use DHCP advertised servers"
-msgstr ""
+msgstr "Usar servidores anunciados por DHCP"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
@@ -6033,6 +6036,8 @@ msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
+"Se utiliza para dos propósitos diferentes: RADIUS NAS ID y 802.11r R0KH-ID. "
+"No es necesario con WPA(2)-PSK normal."
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
msgid "User certificate (PEM encoded)"
@@ -6115,11 +6120,11 @@ msgstr "WDS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
msgid "WEP Open System"
-msgstr "sistema abierto WEP"
+msgstr "WEP (sistema abierto)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
msgid "WEP Shared Key"
-msgstr "clave compartida WEP"
+msgstr "WEP (clave compartida)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1831
msgid "WEP passphrase"
@@ -6143,7 +6148,7 @@ msgstr ""
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34
msgid "Waiting for command to complete..."
-msgstr "Esperando a que termine el comando..."
+msgstr "Esperando a que se complete el comando..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2496
msgid "Waiting for configuration to get applied… %ds"
@@ -6173,8 +6178,8 @@ msgid ""
"key options."
msgstr ""
"Cuando se utiliza un PSK, el PMK se puede generar automáticamente. Cuando "
-"está habilitada, las siguientes opciones de teclas R0/R1 no se aplican. "
-"Deshabilite esto para usar las opciones de teclas R0 y R1."
+"está activada, las siguientes opciones de teclas R0/R1 no se aplican. "
+"Desactive esto para usar las opciones de teclas R0 y R1."
#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:384
@@ -6220,7 +6225,7 @@ msgstr "Migración de configuración WiFi"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:140
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:179
msgid "Wireless is disabled"
-msgstr "Red WiFi deshabilitada"
+msgstr "Red WiFi desactivada"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:102
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:140
@@ -6230,11 +6235,11 @@ msgstr "Red WiFi no asociada"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753
msgid "Wireless network is disabled"
-msgstr "Red WiFi deshabilitada"
+msgstr "Red WiFi desactivada"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753
msgid "Wireless network is enabled"
-msgstr "Red WiFi habilitada"
+msgstr "Red WiFi activada"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
msgid "Write received DNS requests to syslog"
@@ -6263,10 +6268,10 @@ msgid ""
"after a device reboot.<br /><strong>Warning: If you disable essential init "
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-"Puede habilitar o deshabilitar los scripts de inicio instalados aquí. Los "
+"Puede activar o desactivar los scripts de inicio instalados aquí. Los "
"cambios se aplicarán después de que se reinicie el dispositivo.<br /> "
-"<strong>Advertencia: Si deshabilitas los scripts de inicio esenciales como "
-"\"red\", ¡Tu dispositivo podría volverse inaccesible!</strong>"
+"<strong>Advertencia: Si desactivas los scripts de inicio esenciales como \""
+"network\", ¡Tu dispositivo podría volverse inaccesible!</strong>"
#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
@@ -6275,7 +6280,7 @@ msgstr ""
msgid ""
"You must enable JavaScript in your browser or LuCI will not work properly."
msgstr ""
-"Debe habilitar JavaScript en su navegador o LuCI no funcionará correctamente."
+"Debe activar JavaScript en su navegador o LuCI no funcionará correctamente."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
msgid "ZRam Compression Algorithm"
@@ -6360,7 +6365,7 @@ msgstr "dBm"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:890
msgid "disable"
-msgstr "Deshabilitar"
+msgstr "Desactivar"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:578
@@ -6368,7 +6373,7 @@ msgstr "Deshabilitar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:590
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
msgid "disabled"
-msgstr "Deshabilitado"
+msgstr "Desactivado"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:434
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:468
diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po
new file mode 100644
index 0000000000..70a2efa512
--- /dev/null
+++ b/modules/luci-base/po/hi/base.po
@@ -0,0 +1,6457 @@
+msgid ""
+msgstr ""
+"Language: hi\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
+msgid "%.1f dB"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:250
+msgid "%d Bit"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2171
+msgid "%d invalid field(s)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:31
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169
+msgid "(%d minute window, %d second interval)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:105
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:111
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:244
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:268
+#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38
+#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91
+msgid "(empty)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:337
+#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23
+#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58
+msgid "(no interfaces attached)"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48
+msgid "-- Additional Field --"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1651
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1783
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:315
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:415
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1179
+#: modules/luci-base/luasrc/view/cbi/header.htm:5
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
+msgid "-- Please choose --"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:416
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1180
+#: modules/luci-base/luasrc/view/cbi/header.htm:6
+msgid "-- custom --"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:402
+msgid "-- match by label --"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:279
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:385
+msgid "-- match by uuid --"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27
+#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44
+#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23
+msgid "-- please select --"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:815
+msgid "0 = not using RSSI threshold, 1 = do not change driver default"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252
+msgid "1 Minute Load:"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272
+msgid "15 Minute Load:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
+msgid "4-character hexadecimal ID"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18
+msgid "464XLAT (CLAT)"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262
+msgid "5 Minute Load:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
+msgid "6-octet identifier as a hex string - no colons"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
+msgid "802.11r Fast Transition"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
+msgid "802.11w Association SA Query maximum timeout"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1575
+msgid "802.11w Association SA Query retry timeout"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1534
+msgid "802.11w Management Frame Protection"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
+msgid "802.11w maximum timeout"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1575
+msgid "802.11w retry timeout"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:832
+msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:225
+msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:216
+msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:167
+msgid ""
+"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
+"order of the resolvfile"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:821
+msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:555
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:35
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:30
+msgid ""
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
+"(CIDR)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
+msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
+msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:40
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:29
+msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:51
+msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:329
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46
+msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
+msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:234
+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:243
+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:252
+msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:25
+msgid ""
+"<br/>Note: you need to manually restart the cron service if the crontab file "
+"was empty before editing."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1586
+msgid "A directory with the same name already exists."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:1589
+msgid "A new login is required since the authentication session expired."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:847
+msgid "A43C + J43 + A43"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:848
+msgid "A43C + J43 + A43 + V43"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
+msgid "ADSL"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
+msgid "ANSI T1.413"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94
+#: 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 ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
+msgid "ARP retry threshold"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:855
+msgid "ATM (Asynchronous Transfer Mode)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:876
+msgid "ATM Bridges"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:908
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
+msgid "ATM Virtual Channel Identifier (VCI)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:909
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
+msgid "ATM Virtual Path Identifier (VPI)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:876
+msgid ""
+"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
+"Linux network interfaces which can be used in conjunction with DHCP or PPP "
+"to dial into the provider network."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
+msgid "ATM device number"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:136
+msgid "ATU-C System Vendor ID"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:251
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:528
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:532
+msgid "Absent Interface"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
+msgid "Access Concentrator"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:803
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:908
+msgid "Access Point"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:438
+msgid "Actions"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69
+msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97
+msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346
+#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15
+msgid "Active Connections"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:68
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:30
+msgid "Active DHCP Leases"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:89
+msgid "Active DHCPv6 Leases"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3607
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:805
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
+msgid "Ad-Hoc"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:902
+#: modules/luci-base/htdocs/luci-static/resources/form.js:904
+#: modules/luci-base/htdocs/luci-static/resources/form.js:917
+#: modules/luci-base/htdocs/luci-static/resources/form.js:918
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1541
+#: modules/luci-base/luasrc/view/cbi/nsection.htm:25
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197
+#: modules/luci-base/luasrc/view/cbi/tsection.htm:39
+#: modules/luci-base/luasrc/view/cbi/tsection.htm:47
+#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:704
+msgid "Add"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:880
+msgid "Add ATM Bridge"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
+msgid "Add IPv4 address…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:204
+msgid "Add IPv6 address…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:47
+msgid "Add LED action"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:215
+msgid "Add VLAN"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:14
+msgid "Add instance"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:141
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:147
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:236
+msgid "Add key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
+msgid "Add local domain suffix to names served from hosts files"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:263
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:709
+msgid "Add new interface..."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:99
+msgid "Add peer"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:105
+msgid "Additional Hosts files"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
+msgid "Additional servers file"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:91
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:92
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:93
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:94
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:95
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:96
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:98
+msgid "Address"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
+msgid "Address to access local relay bridge"
+msgstr ""
+
+#: modules/luci-base/luasrc/controller/admin/index.lua:29
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:12
+msgid "Administration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:70
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:276
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:505
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:743
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:800
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:127
+msgid "Aggregate Transmit Power(ACTATP)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
+msgid "Alert"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2814
+#: modules/luci-base/luasrc/model/network.lua:1416
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:54
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78
+msgid "Alias Interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:138
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66
+msgid "Alias of \"%s\""
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:170
+msgid "All Servers"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:114
+msgid ""
+"Allocate IP addresses sequentially, starting from the lowest available "
+"address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:113
+msgid "Allocate IP sequentially"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:24
+msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
+msgid "Allow AP mode to disconnect STAs based on low ACK condition"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892
+msgid "Allow all except listed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:768
+msgid "Allow legacy 802.11b rates"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
+msgid "Allow listed only"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:199
+msgid "Allow localhost"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:35
+msgid "Allow remote hosts to connect to local SSH forwarded ports"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:30
+msgid "Allow root logins with password"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:30
+msgid "Allow the <em>root</em> user to login with password"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
+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:122
+msgid "Allowed IPs"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:606
+msgid "Always announce default router"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:783
+msgid ""
+"Always use 40MHz channels even if the secondary channel overlaps. Using this "
+"option does not comply with IEEE 802.11n-2009!"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:828
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119
+msgid "Annex"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:829
+msgid "Annex A + L + M (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
+msgid "Annex A G.992.1"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
+msgid "Annex A G.992.2"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:839
+msgid "Annex A G.992.3"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
+msgid "Annex A G.992.5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:830
+msgid "Annex B (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
+msgid "Annex B G.992.1"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
+msgid "Annex B G.992.3"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
+msgid "Annex B G.992.5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
+msgid "Annex J (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:841
+msgid "Annex L G.992.3 POTS 1"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
+msgid "Annex M (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:842
+msgid "Annex M G.992.3"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
+msgid "Annex M G.992.5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:606
+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:611
+msgid "Announced DNS domains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:610
+msgid "Announced DNS servers"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1497
+msgid "Anonymous Identity"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:186
+msgid "Anonymous Mount"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:182
+msgid "Anonymous Swap"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:71
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:160
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:181
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60
+msgid "Any zone"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:202
+msgid "Apply backup?"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2537
+msgid "Apply request failed with status <code>%h</code>"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
+msgid "Apply unchecked"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19
+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-mod-network/htdocs/luci-static/resources/view/network/network.js:127
+msgid "Assign interfaces..."
+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:1975
+#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22
+msgid "Associated Stations"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:178
+msgid "Associations"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:178
+msgid "Attempt to enable configured mount points for attached devices"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:101
+#: 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:1422
+msgid "Authentication"
+msgstr ""
+
+#: 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:78
+msgid "Authoritative"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:17
+msgid "Authorization Required"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:162
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:163
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:193
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:194
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:204
+#: 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 ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
+#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7
+msgid "Automatic Homenet (HNCP)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:198
+msgid "Automatically check filesystem for errors before mounting"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
+msgid "Automatically mount filesystems on hotplug"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:190
+msgid "Automatically mount swap on hotplug"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
+msgid "Automount Filesystem"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:190
+msgid "Automount Swap"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
+msgid "Available"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362
+msgid "Average:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
+msgid "B43 + B43C"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
+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:107
+#: 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:1623
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:176
+msgid "BSSID"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/footer.htm:14
+#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48
+msgid "Back to Overview"
+msgstr ""
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
+msgid "Back to configuration"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
+msgid "Backup"
+msgstr ""
+
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:32
+msgid "Backup / Flash Firmware"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:403
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
+msgid "Backup file list"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51
+msgid "Bad address specified!"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:369
+msgid "Band"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:786
+msgid "Beacon Interval"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
+#: 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:294
+msgid ""
+"Bind dynamically to interfaces rather than wildcard address (recommended as "
+"linux default)"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
+msgid "Bind interface"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
+msgid "Bind the tunnel to this interface (optional)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:78
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:135
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:187
+msgid "Bitrate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
+msgid "Bogus NX Domain Override"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2820
+#: modules/luci-base/luasrc/model/network.lua:1420
+msgid "Bridge"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:368
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
+msgid "Bridge interfaces"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916
+msgid "Bridge unit number"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:364
+msgid "Bring up on boot"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1674
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:31
+msgid "Browse…"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18
+msgid "Buffered"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:134
+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/luasrc/model/cbi/admin_status/processes.lua:13
+msgid "CPU usage (%)"
+msgstr ""
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
+#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53
+msgid "Call failed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1766
+#: modules/luci-base/luasrc/view/cbi/delegator.htm:14
+#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1847
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:40
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:211
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:355
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
+msgid "Cancel"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
+msgid "Category"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234
+msgid "Chain"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2312
+msgid "Changes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2560
+msgid "Changes have been reverted."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:43
+msgid "Changes the administrator password for accessing the device"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:131
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:377
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1621
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:186
+msgid "Channel"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:198
+msgid "Check filesystems before mount"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
+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:193
+msgid "Checking archive…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:276
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:278
+msgid "Checking image…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
+msgid "Choose mtdblock"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
+msgid ""
+"Choose the firewall zone you want to assign to this interface. Select "
+"<em>unspecified</em> to remove the interface from the associated zone or "
+"fill out the <em>create</em> field to define a new zone and attach the "
+"interface to it."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:835
+msgid ""
+"Choose the network(s) you want to attach to this wireless interface or fill "
+"out the <em>create</em> field to define a new network."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1024
+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:441
+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:467
+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:3606
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:804
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:909
+msgid "Client"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:49
+#: 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:143
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149
+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-base/luasrc/view/lease_status.htm:77
+#: modules/luci-base/luasrc/view/lease_status.htm:98
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1973
+#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398
+#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11
+#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17
+#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:201
+msgid "Collecting data..."
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12
+msgid "Command"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:393
+msgid "Command OK"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:29
+msgid "Command failed"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
+msgid "Comment"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
+msgid ""
+"Complicates key reinstallation attacks on the client side by disabling "
+"retransmission of EAPOL-Key frames that are used to install keys. This "
+"workaround might cause interoperability issues and reduced robustness of key "
+"negotiation especially in environments with heavy traffic load."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2312
+#: modules/luci-base/luasrc/controller/admin/uci.lua:11
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:499
+msgid "Configuration"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63
+msgid "Configuration failed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2471
+msgid "Configuration has been applied."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2410
+msgid "Configuration has been rolled back!"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
+msgid "Confirm disconnect"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:50
+msgid "Confirmation"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:39
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:72
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105
+msgid "Connected"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:7
+#: modules/luci-base/luasrc/model/network.lua:27
+msgid "Connection attempt failed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
+msgid "Connection lost"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32
+msgid "Connections"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:14
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:420
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:51
+msgid "Contents have been saved."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:619
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:347
+msgid "Continue"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2446
+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:136
+msgid "Country"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:765
+msgid "Country Code"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
+msgid "Create / Assign firewall-zone"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:739
+msgid "Create interface"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:165
+msgid "Critical"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:169
+msgid "Cron Log Level"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:448
+msgid "Current power"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:552
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:554
+#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51
+#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53
+#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82
+#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83
+msgid "Custom Interface"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/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:460
+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/leds.js:41
+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:1224
+msgid "DAE-Client"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
+msgid "DAE-Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
+msgid "DAE-Secret"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:279
+msgid "DHCP Server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:62
+msgid "DHCP and DNS"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
+#: modules/luci-base/luasrc/model/network.lua:968
+msgid "DHCP client"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
+msgid "DHCP-Options"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7
+msgid "DHCPv6 client"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
+msgid "DHCPv6-Mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:583
+msgid "DHCPv6-Service"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:66
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:68
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:70
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104
+msgid "DNS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:184
+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:136
+msgid "DNSSEC"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:140
+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:825
+#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14
+msgid "DSL"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114
+msgid "DSL Status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
+msgid "DSL line mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
+msgid "DTIM Interval"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:94
+msgid "DUID"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:121
+msgid "Data Rate"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:160
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
+msgid "Debug"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1208
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
+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:146
+msgid "Default gateway"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
+msgid "Default is stateless + stateful"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:54
+msgid "Default state"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:553
+msgid "Define a name for this network."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
+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:966
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1215
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1218
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1526
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1735
+#: modules/luci-base/luasrc/view/cbi/nsection.htm:11
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162
+#: modules/luci-base/luasrc/view/cbi/tsection.htm:16
+msgid "Delete"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:175
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:181
+msgid "Delete key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1634
+msgid "Delete request failed: %s"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:724
+msgid "Delete this network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
+msgid "Delivery Traffic Indication Message Interval"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:108
+msgid "Description"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1731
+msgid "Deselect"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:215
+msgid "Design"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392
+msgid "Destination"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:46
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:151
+msgid "Destination zone"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:54
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:177
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:38
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:73
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:72
+#: 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:303
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:415
+msgid "Device"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:738
+msgid "Device Configuration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:81
+msgid "Device is not active"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:168
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:514
+msgid "Device is restarting…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2445
+msgid "Device unreachable!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:48
+msgid "Device unreachable! Still waiting for device..."
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:78
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61
+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:1535
+msgid "Directory"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:755
+msgid "Disable"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:531
+msgid ""
+"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
+"this interface."
+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:974
+msgid "Disable Inactivity Polling"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:714
+msgid "Disable this network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1535
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:61
+#: 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:988
+msgid "Disassociate On Low Acknowledgement"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:193
+msgid "Discard upstream RFC1918 responses"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:966
+msgid "Disconnect"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64
+msgid "Disconnection attempt failed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1377
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1972
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2329
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2416
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1637
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
+msgid "Dismiss"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:771
+msgid "Distance Optimization"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:771
+msgid "Distance to farthest network member in meters."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
+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:159
+msgid "Do not cache negative replies, e.g. for not existing domains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:124
+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:119
+msgid "Do not forward reverse lookups for local networks"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1620
+msgid "Do you really want to delete \"%s\" ?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176
+msgid "Do you really want to delete the following SSH key?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:175
+msgid "Do you really want to erase all settings?"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1618
+msgid "Do you really want to recursively delete the directory \"%s\" ?"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:74
+msgid "Domain required"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:206
+msgid "Domain whitelist"
+msgstr ""
+
+#: 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:75
+msgid ""
+"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
+"<abbr title=\"Domain Name System\">DNS</abbr>-Name"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152
+msgid "Down"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444
+msgid "Download backup"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:477
+msgid "Download mtdblock"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:863
+msgid "Downstream SNR offset"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1174
+msgid "Drag to reorder"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:11
+msgid "Dropbear Instance"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:9
+msgid ""
+"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
+"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14
+msgid "Dual-Stack Lite (RFC6333)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:547
+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:547
+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:1387
+msgid "EAP-Method"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1193
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1196
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1452
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:291
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:721
+msgid "Edit"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/error.htm:13
+msgid ""
+"Edit the raw configuration data above to fix any error and hit \"Save\" to "
+"reload the page."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:719
+msgid "Edit this network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:670
+msgid "Edit wireless network"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
+msgid "Emergency"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:755
+msgid "Enable"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
+msgid ""
+"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
+"snooping"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:412
+msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
+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:188
+msgid "Enable Jumbo Frame passthrough"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:235
+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:267
+msgid "Enable TFTP server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:180
+msgid "Enable VLAN functionality"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596
+msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
+msgid "Enable key reinstallation (KRACK) countermeasures"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:183
+msgid "Enable learning and aging"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
+msgid "Enable mirroring of incoming packets"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:195
+msgid "Enable mirroring of outgoing packets"
+msgstr ""
+
+#: 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:714
+msgid "Enable this network"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:73
+msgid "Enable/Disable"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:266
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:61
+msgid "Enabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
+msgid "Enables IGMP snooping on this bridge"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
+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:412
+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:853
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
+msgid "Encapsulation mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:108
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:130
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1624
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:177
+msgid "Encryption"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:128
+msgid "Endpoint Host"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:132
+msgid "Endpoint Port"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/dropdown.htm:16
+msgid "Enter custom value"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/dropdown.htm:16
+msgid "Enter custom values"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:182
+msgid "Erasing..."
+msgstr ""
+
+#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:164
+msgid "Error"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:129
+msgid "Errored seconds (ES)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2832
+#: modules/luci-base/luasrc/model/network.lua:1432
+msgid "Ethernet Adapter"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2823
+#: modules/luci-base/luasrc/model/network.lua:1422
+msgid "Ethernet Switch"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:304
+msgid "Exclude interfaces"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:154
+msgid "Expand hosts"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:195
+msgid "Expecting an hexadecimal assignment hint"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
+msgid "Expecting: %s"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:71
+msgid "Expires"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:543
+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:1378
+msgid "External R0 Key Holder List"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
+msgid "External R1 Key Holder List"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141
+msgid "External system log server"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:146
+msgid "External system log server port"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:151
+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 ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1352
+msgid "FT over DS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
+msgid "FT over the Air"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1350
+msgid "FT protocol"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:82
+msgid "Failed to change the system password."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2404
+msgid "Failed to confirm apply within %ds, waiting for rollback…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
+msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1542
+msgid "File"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1495
+msgid "File not accessible"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1675
+msgid "Filename"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280
+msgid "Filename of the boot image advertised to clients"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:215
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:337
+msgid "Filesystem"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:118
+msgid "Filter private"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:123
+msgid "Filter useless"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65
+msgid "Finalizing failed"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
+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:697
+msgid "Find and join network"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/delegator.htm:9
+msgid "Finish"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10
+msgid "Firewall"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:76
+msgid "Firewall Mark"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:278
+msgid "Firewall Settings"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44
+msgid "Firewall Status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
+msgid "Firmware File"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20
+msgid "Firmware Version"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:226
+msgid "Fixed source port for outbound DNS queries"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:494
+msgid "Flash image..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:362
+msgid "Flash image?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:484
+msgid "Flash new firmware image"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:435
+msgid "Flash operations"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:371
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:373
+msgid "Flashing…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:550
+msgid "Force"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:783
+msgid "Force 40MHz mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
+msgid "Force CCMP (AES)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:550
+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:1033
+msgid "Force TKIP"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1034
+msgid "Force TKIP and CCMP (AES)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
+msgid "Force link"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
+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/index.js:128
+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:810
+msgid "Forward mesh peer traffic"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918
+msgid "Forwarding mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:775
+msgid "Fragmentation Threshold"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28
+msgid "Free"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:89
+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:77
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:131
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:186
+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 ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:65
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99
+msgid "Gateway"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:35
+msgid "Gateway Ports"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:9
+#: modules/luci-base/luasrc/model/network.lua:29
+msgid "Gateway address is invalid"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:67
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:275
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:23
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:263
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:103
+msgid "General Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:742
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:797
+msgid "General Setup"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
+msgid "Generate Config"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
+msgid "Generate PMK locally"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:446
+msgid "Generate archive"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:74
+msgid "Given password confirmation did not match, password not changed!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
+msgid "Global Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
+msgid "Global network options"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:176
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:241
+#: 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:1117
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1619
+#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58
+msgid "Go to relevant configuration page"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/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/luasrc/model/cbi/admin_status/processes.lua:16
+msgid "Hang Up"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:133
+msgid "Header Error Code Errors (HEC)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:95
+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:942
+msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61
+msgid "Hide empty chains"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:92
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1967
+msgid "Host"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:21
+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:30
+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-base/luasrc/view/lease_status.htm:71
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:26
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:116
+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:19
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:67
+msgid "Hostnames"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
+msgid "Hybrid"
+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:59
+msgid "IP Addresses"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:80
+msgid "IP Protocol"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:30
+msgid "IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:8
+#: modules/luci-base/luasrc/model/network.lua:28
+msgid "IP address in invalid"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:11
+#: modules/luci-base/luasrc/model/network.lua:31
+msgid "IP address is missing"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:78
+#: 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:80
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
+msgid "IPv4"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49
+msgid "IPv4 Firewall"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48
+msgid "IPv4 Upstream"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
+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
+msgid "IPv4 netmask"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:286
+msgid "IPv4 network in address/netmask notation"
+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-base/luasrc/view/lease_status.htm:72
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:34
+msgid "IPv4-Address"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
+#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9
+msgid "IPv4-in-IPv4 (RFC2003)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
+#: 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
+#: 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/network.js:94
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
+msgid "IPv6"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52
+msgid "IPv6 Firewall"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128
+msgid "IPv6 Neighbours"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
+msgid "IPv6 Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
+msgid "IPv6 ULA-Prefix"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81
+msgid "IPv6 Upstream"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:202
+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:207
+msgid "IPv6 gateway"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:291
+msgid "IPv6 network in address/netmask notation"
+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:211
+#: 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:215
+msgid "IPv6 suffix"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:93
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132
+msgid "IPv6-Address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104
+msgid "IPv6-PD"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13
+msgid "IPv6-in-IPv4 (RFC4213)"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17
+msgid "IPv6-over-IPv4 (6rd)"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15
+msgid "IPv6-over-IPv4 (6to4)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
+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-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:277
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:383
+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:290
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:399
+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:34
+#: 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:146
+#: 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
+msgid "If unchecked, no default route is configured"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
+#: 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-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
+msgid "If unchecked, the advertised DNS server addresses are ignored"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
+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:102
+msgid "Ignore <code>/etc/hosts</code>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:531
+msgid "Ignore interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:91
+msgid "Ignore resolve file"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:492
+msgid "Image"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59
+msgid "In"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:13
+msgid ""
+"In order to prevent unauthorized access to the system, your request has been "
+"blocked. Click \"Continue »\" below to return to the previous page."
+msgstr ""
+
+#: protocols/luci-proto-3g/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/luasrc/view/admin_status/bandwidth.htm:287
+msgid "Inbound:"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:161
+msgid "Info"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105
+msgid "Information"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67
+msgid "Initialization failure"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:72
+msgid "Initscript"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:107
+msgid "Initscripts"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98
+msgid "Install iputils-traceroute6 for IPv6 traceroute"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:220
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120
+msgid "Install protocol extensions..."
+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:423
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:687
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:26
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:16
+msgid "Interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:58
+msgid "Interface %q device auto-migrated from %q to %q."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
+msgid "Interface Configuration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:100
+msgid "Interface has %d pending changes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:57
+msgid "Interface is marked for deletion"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3
+msgid "Interface is reconnecting..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
+msgid "Interface is shutting down..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:205
+msgid "Interface is starting..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:208
+msgid "Interface is stopping..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
+msgid "Interface name"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:115
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:224
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131
+msgid "Interface not present or not connected yet."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:260
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:287
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:54
+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 ""
+
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192
+#: modules/luci-base/luasrc/view/cbi/tsection.htm:42
+msgid "Invalid"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:10
+msgid "Invalid Base64 key string"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:281
+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:290
+msgid "Invalid VLAN ID given! Only unique IDs are allowed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:395
+msgid "Invalid argument"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:394
+msgid "Invalid command"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
+msgid "Invalid hexadecimal value"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:12
+msgid "Invalid username and/or password! Please try again."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
+msgid "Isolate Clients"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:314
+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:183
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:221
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:231
+#: 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:1694
+msgid "Join Network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
+msgid "Join Network: Wireless Scan"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1841
+msgid "Joining Network: %q"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:306
+msgid "Keep settings and retain the current configuration"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
+#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
+msgid "Kernel Log"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24
+msgid "Kernel Version"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1249
+msgid "Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1277
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1278
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1279
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1292
+msgid "Key #%d"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28
+msgid "Kill"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
+#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21
+msgid "L2TP"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
+msgid "L2TP Server"
+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-network/htdocs/luci-static/resources/view/network/interfaces.js:912
+msgid "LLC"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:290
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:399
+msgid "Label"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:204
+msgid "Language"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:106
+msgid "Language and Style"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:123
+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:393
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:543
+msgid "Lease time"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:87
+msgid "Leasefile"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:74
+#: modules/luci-base/luasrc/view/lease_status.htm:95
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
+msgid "Leasetime remaining"
+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:2314
+msgid "Legend:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:538
+msgid "Limit"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:288
+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:300
+msgid "Limit listening to these interfaces, and loopback."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:124
+msgid "Line Attenuation (LATN)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117
+msgid "Line Mode"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116
+msgid "Line State"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118
+msgid "Line Uptime"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:88
+msgid "Link On"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
+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:1378
+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:1382
+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:207
+msgid "List of domains to allow RFC1918 responses for"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:174
+msgid "List of hosts that supply bogus NX domain results"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:299
+msgid "Listen Interfaces"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
+msgid "Listen Port"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:16
+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:217
+msgid "Listening port for inbound DNS queries"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:202
+msgid "Load"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27
+msgid "Load Average"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33
+msgid "Loading"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1796
+msgid "Loading directory contents…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2693
+#: modules/luci-base/luasrc/view/view.htm:4
+msgid "Loading view…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:10
+#: modules/luci-base/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-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
+msgid "Local IPv4 address"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
+msgid "Local IPv6 address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:287
+msgid "Local Service Only"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
+msgid "Local Startup"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:112
+msgid "Local Time"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:150
+msgid "Local domain"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:147
+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:151
+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:146
+msgid "Local server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
+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:128
+msgid "Localise queries"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:159
+msgid "Log output level"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
+msgid "Log queries"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
+msgid "Logging"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:38
+msgid "Login"
+msgstr ""
+
+#: modules/luci-base/luasrc/controller/admin/index.lua:103
+msgid "Logout"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:131
+msgid "Loss of Signal Seconds (LOSS)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:533
+msgid "Lowest leased address as offset from the network address."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:40
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:75
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86
+msgid "MAC"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:73
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133
+msgid "MAC-Address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:887
+msgid "MAC-Address Filter"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
+msgid "MAC-Filter"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
+msgid "MAC-List"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16
+msgid "MAP / LW4over6"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62
+msgid "MAP rule is invalid"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70
+msgid "MB/s"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:301
+msgid "MD5"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21
+msgid "MHz"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:53
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:71
+msgid "MTU"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:325
+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:3605
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:594
+msgid "Master"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:122
+msgid "Max. Attainable Data Rate (ATTNDR)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
+msgid "Maximum allowed Listen Interval"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
+msgid "Maximum allowed number of active DHCP leases"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:253
+msgid "Maximum allowed number of concurrent DNS queries"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
+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:538
+msgid "Maximum number of leased addresses."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:762
+msgid "Maximum transmit power"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:78
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:135
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:187
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284
+msgid "Mbit/s"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:32
+msgid "Medium"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13
+msgid "Memory"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14
+msgid "Memory usage (%)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3608
+msgid "Mesh"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
+msgid "Mesh ID"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:807
+msgid "Mesh Id"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:396
+msgid "Method not found"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
+msgid "Metric"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
+msgid "Mirror monitor port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:197
+msgid "Mirror source port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
+msgid "Mobility Domain"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:106
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:127
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:361
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:802
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1622
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:175
+msgid "Mode"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18
+msgid "Model"
+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-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-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66
+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 ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3609
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:881
+msgid "Monitor"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28
+msgid "More Characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1060
+msgid "More…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:216
+msgid "Mount Point"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:168
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:251
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24
+msgid "Mount Points"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:252
+msgid "Mount Points - Mount Entry"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:363
+msgid "Mount Points - Swap Entry"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:251
+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:178
+msgid "Mount attached devices"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:186
+msgid "Mount filesystems not specifically configured"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:354
+msgid "Mount options"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
+msgid "Mount point"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:182
+msgid "Mount swap not specifically configured"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:246
+msgid "Mounted file systems"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152
+msgid "Move down"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151
+msgid "Move up"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
+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 ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26
+msgid "NCM"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:589
+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:269
+msgid "NTP server candidates"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1097
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27
+#: 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:662
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:49
+msgid "Name"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
+msgid "Name of the new network"
+msgstr ""
+
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:198
+msgid "Navigation"
+msgstr ""
+
+#: modules/luci-base/luasrc/controller/admin/index.lua:69
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:835
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1965
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389
+#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101
+msgid "Network"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64
+msgid "Network Utilities"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279
+msgid "Network boot image"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:13
+#: modules/luci-base/luasrc/model/network.lua:33
+msgid "Network device is not present"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126
+msgid "Network without interfaces."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
+msgid "New interface name…"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/delegator.htm:11
+msgid "Next »"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
+#: 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:514
+msgid "No DHCP Server configured for this interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1163
+msgid "No Encryption"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
+msgid "No NAT-T"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:398
+msgid "No data received"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1741
+msgid "No entries in this directory"
+msgstr ""
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
+msgid "No files found"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:551
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:191
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180
+msgid "No information available"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63
+msgid "No matching prefix delegation"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:158
+msgid "No negative cache"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:173
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:211
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:238
+#: 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:104
+msgid "No peers defined yet"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:257
+msgid "No public keys present yet."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83
+msgid "No rules in this chain."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:53
+msgid "No signal"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:145
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
+msgid "No zone assigned"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:50
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:134
+msgid "Noise"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:126
+msgid "Noise Margin (SNR)"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340
+msgid "Noise:"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:134
+msgid "Non Pre-emtive CRC errors (CRC_P)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
+msgid "Non-wildcard"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:108
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:130
+msgid "None"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
+msgid "Normal"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error404.htm:8
+msgid "Not Found"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87
+msgid "Not connected"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:38
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:73
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:113
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:232
+msgid "Not present"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105
+msgid "Not started on boot"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
+msgid "Not supported"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
+msgid "Notice"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104
+msgid "Nslookup"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
+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:194
+msgid "Number of parallel threads used for compression"
+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/leds.js:68
+msgid "Off-State Delay"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
+msgid "On-Link route"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:64
+msgid "On-State Delay"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382
+msgid "One of hostname or mac address must be specified!"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:462
+msgid "One of the following: %s"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17
+#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22
+msgid "One or more fields contain invalid values!"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/map.htm:31
+msgid "One or more invalid/required values on tab"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19
+#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24
+msgid "One or more required fields have no value!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:516
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
+msgid "Open list..."
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:61
+#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9
+msgid "OpenConnect (CISCO AnyConnect)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:758
+msgid "Operating frequency"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
+msgid "Option changed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2323
+msgid "Option removed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1536
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
+msgid "Optional"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:76
+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:215
+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:117
+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:126
+msgid "Optional. Create routes for Allowed IPs for this peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:108
+msgid "Optional. Description of peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:128
+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:71
+msgid "Optional. Maximum Transmission Unit of tunnel interface."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:132
+msgid "Optional. Port of peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:136
+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:54
+msgid "Optional. UDP port used for outgoing and incoming packets."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63
+msgid "Options"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374
+msgid "Other:"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60
+msgid "Out"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297
+msgid "Outbound:"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
+msgid "Output Interface"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:46
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:151
+msgid "Output zone"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:54
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:219
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50
+msgid "Override MAC address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:58
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:223
+#: 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-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:154
+#: 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
+msgid "Override MTU"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
+msgid "Override TOS"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
+msgid "Override TTL"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
+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:555
+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/luasrc/controller/admin/status.lua:8
+msgid "Overview"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1587
+msgid "Overwrite existing file \"%s\" ?"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11
+msgid "Owner"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98
+#: 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
+msgid "PAP/CHAP password"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
+#: 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
+msgid "PAP/CHAP username"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10
+msgid "PID"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
+#: 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:19
+#: modules/luci-base/luasrc/model/network.lua:39
+msgid "PIN code rejected"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1373
+msgid "PMK R1 Push"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
+#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13
+msgid "PPP"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
+msgid "PPPoA Encapsulation"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
+#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19
+msgid "PPPoATM"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
+#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17
+msgid "PPPoE"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
+#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9
+msgid "PPPoSSH"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
+#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15
+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:856
+msgid "PTM/EFM (Packet Transfer Mode)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45
+msgid "Packets"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:145
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
+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:1515
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:104
+#: 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:24
+msgid "Password authentication"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
+msgid "Password of Private Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
+msgid "Password of inner Private Key"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:30
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:32
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:34
+msgid "Password strength"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:107
+msgid "Password2"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:230
+msgid "Paste or drag SSH key file…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1403
+msgid "Path to Client-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
+msgid "Path to Private Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1454
+msgid "Path to inner CA-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
+msgid "Path to inner Client-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
+msgid "Path to inner Private Key"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365
+msgid "Peak:"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
+msgid "Peer IP address to assign"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:12
+#: modules/luci-base/luasrc/model/network.lua:32
+msgid "Peer address is missing"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:89
+msgid "Peers"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
+msgid "Perfect Forward Secrecy"
+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:456
+msgid "Perform reset"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:399
+msgid "Permission denied"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:136
+msgid "Persistent Keep Alive"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359
+msgid "Phy Rate:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:277
+msgid "Physical Settings"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79
+msgid "Ping"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:41
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:42
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:76
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:77
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176
+msgid "Pkts."
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:19
+msgid "Please enter your username and password."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:16
+msgid "Please select the file to upload."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45
+msgid "Policy"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
+msgid "Port"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:133
+msgid "Port %s"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:274
+msgid "Port status:"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:488
+msgid "Potential negation of: %s"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:137
+msgid "Power Management Mode"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:135
+msgid "Pre-emtive 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/index.js:88
+msgid "Prefix Delegated"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:117
+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:305
+msgid "Prevent listening on these interfaces."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
+msgid "Prevents client-to-client communication"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:49
+msgid "Private Key"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5
+msgid "Processes"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120
+msgid "Profile"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58
+msgid "Prot."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:72
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:349
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390
+msgid "Protocol"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:260
+msgid "Provide NTP server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:702
+msgid "Provide new network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:880
+msgid "Pseudo Ad-Hoc (ahdemo)"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:113
+msgid "Public Key"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:264
+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:211
+msgid "Public prefix routed to this device for distribution to clients."
+msgstr ""
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
+#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9
+msgid "QMI Cellular"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:173
+msgid "Quality"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:171
+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:1361
+msgid "R0 Key Lifetime"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
+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:815
+msgid "RSSI threshold for joining"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:779
+msgid "RTS/CTS Threshold"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:41
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:76
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87
+msgid "RX"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112
+msgid "RX Rate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
+msgid "RX Rate / TX Rate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1208
+msgid "Radius-Accounting-Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
+msgid "Radius-Accounting-Secret"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1200
+msgid "Radius-Accounting-Server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
+msgid "Radius-Authentication-Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1192
+msgid "Radius-Authentication-Secret"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1176
+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:84
+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/network.js:8
+msgid ""
+"Really delete this interface? The deletion cannot be undone! You might lose "
+"access to this device if you are connected via this interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:354
+msgid "Really switch protocol?"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341
+msgid "Realtime Connections"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19
+msgid "Realtime Graphs"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244
+msgid "Realtime Load"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273
+msgid "Realtime Traffic"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316
+msgid "Realtime Wireless"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
+msgid "Reassociation Deadline"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
+msgid "Rebind protection"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34
+msgid "Reboot"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:245
+#: 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:46
+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/leds.js:90
+msgid "Receive"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:59
+msgid "Recommended. IP addresses of the WireGuard interface."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
+msgid "Reconnect this interface"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48
+msgid "References"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
+#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153
+msgid "Relay"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
+#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157
+msgid "Relay Bridge"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
+msgid "Relay between networks"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
+#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12
+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
+msgid "Remote IPv4 address"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
+msgid "Remote IPv4 address or FQDN"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:726
+msgid "Remove"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
+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:400
+msgid "Request timeout"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
+msgid "Required"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31
+msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:49
+msgid "Required. Base64-encoded private key for this interface."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:113
+msgid "Required. Base64-encoded public key of peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:122
+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:1096
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1097
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1098
+msgid "Requires hostapd"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
+msgid "Requires hostapd with EAP support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1103
+msgid "Requires hostapd with OWE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1099
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1100
+msgid "Requires hostapd with SAE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1534
+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:141
+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:1108
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1110
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1120
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1121
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1122
+msgid "Requires wpa-supplicant"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1113
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
+msgid "Requires wpa-supplicant with EAP support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1115
+msgid "Requires wpa-supplicant with OWE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1111
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1125
+msgid "Requires wpa-supplicant with SAE support"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2921
+#: modules/luci-base/luasrc/view/cbi/delegator.htm:17
+#: modules/luci-base/luasrc/view/cbi/footer.htm:30
+#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66
+#: modules/luci-base/luasrc/view/sysauth.htm:39
+msgid "Reset"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62
+msgid "Reset Counters"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
+msgid "Reset to defaults"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:68
+msgid "Resolv and Hosts Files"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:94
+msgid "Resolve file"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:397
+msgid "Resource not found"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:302
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:694
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:75
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:97
+msgid "Restart"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63
+msgid "Restart Firewall"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:692
+msgid "Restart radio interface"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:450
+msgid "Restore"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:460
+msgid "Restore backup"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:120
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:121
+msgid "Reveal/hide password"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337
+msgid "Revert"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2420
+msgid "Revert changes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2569
+msgid "Revert request failed with status <code>%h</code>"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2549
+msgid "Reverting configuration…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271
+msgid "Root directory for files served via TFTP"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:320
+msgid "Root preparation"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:126
+msgid "Route Allowed IPs"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:72
+msgid "Route table"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:59
+msgid "Route type"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:577
+msgid "Router Advertisement-Service"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:43
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:13
+msgid "Router Password"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:14
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37
+msgid "Routes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:14
+msgid ""
+"Routes specify over which interface and gateway a certain host or network "
+"can be reached."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240
+msgid "Rule"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:358
+msgid "Run a filesystem check before mounting the device"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:358
+msgid "Run filesystem check"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:1307
+msgid "Runtime error"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:302
+msgid "SHA256"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77
+msgid "SNR"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:9
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16
+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:263
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:17
+msgid "SSH-Keys"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
+#: 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:1620
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174
+msgid "SSID"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
+msgid "SWAP"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1381
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2917
+#: modules/luci-base/luasrc/view/cbi/error.htm:17
+#: modules/luci-base/luasrc/view/cbi/footer.htm:26
+#: modules/luci-base/luasrc/view/cbi/header.htm:17
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:507
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:118
+msgid "Save"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2913
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2333
+#: modules/luci-base/luasrc/view/cbi/footer.htm:22
+msgid "Save & Apply"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:479
+msgid "Save mtdblock"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:467
+msgid "Save mtdblock contents"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:699
+msgid "Scan"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21
+msgid "Scheduled Tasks"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2317
+msgid "Section added"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2319
+msgid "Section removed"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:354
+msgid "See \"mount\" manpage for details"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
+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:1497
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1627
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1786
+msgid "Select file…"
+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-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
+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/luasrc/controller/admin/index.lua:62
+msgid "Services"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:1587
+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:805
+msgid ""
+"Set interface properties regardless of the link carrier (If set, carrier "
+"sense events do not invoke hotplug handlers)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:594
+msgid "Set this interface as master for the dhcpv6 relay."
+msgstr ""
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
+#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55
+msgid "Setting PLMN failed"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68
+msgid "Setting operation mode failed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:517
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:527
+msgid "Setup DHCP Server"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:130
+msgid "Severely Errored Seconds (SES)"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31
+msgid "Short GI"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
+msgid "Short Preamble"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:514
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
+msgid "Show current backup file list"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99
+msgid "Show empty chains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:306
+msgid "Shutdown this interface"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:47
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:133
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:173
+msgid "Signal"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1968
+msgid "Signal / Noise"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:125
+msgid "Signal Attenuation (SATN)"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330
+msgid "Signal:"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:300
+msgid "Size"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
+msgid "Size of DNS query cache"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:182
+msgid "Size of the ZRam device in megabytes"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/footer.htm:18
+#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57
+msgid "Skip"
+msgstr ""
+
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:194
+msgid "Skip to content"
+msgstr ""
+
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:193
+msgid "Skip to navigation"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2826
+#: modules/luci-base/luasrc/model/network.lua:1427
+msgid "Software VLAN"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/header.htm:2
+msgid "Some fields are invalid, cannot save values!"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error404.htm:9
+msgid "Sorry, the object you requested was not found."
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error500.htm:9
+msgid "Sorry, the server encountered an unexpected error."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:487
+msgid ""
+"Sorry, there is no sysupgrade support present; a new firmware image must be "
+"flashed manually. Please refer to the wiki for device specific install "
+"instructions."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103
+msgid "Source"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
+msgid "Source Address"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
+msgid "Specifies the directory the device is attached to"
+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:762
+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-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
+msgid "Specify a TOS (Type of Service)."
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
+msgid ""
+"Specify a TTL (Time to Live) for the encapsulating packet other than the "
+"default (64)."
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
+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:1831
+msgid "Specify the secret encryption key here."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:533
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:74
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:96
+msgid "Start"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:71
+msgid "Start priority"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2514
+msgid "Starting configuration apply…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
+msgid "Starting wireless scan..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:105
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20
+msgid "Startup"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:18
+msgid "Static IPv4 Routes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:18
+msgid "Static IPv6 Routes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:71
+msgid "Static Leases"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:73
+msgid "Static Routes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1982
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
+#: modules/luci-base/luasrc/model/network.lua:966
+msgid "Static address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:309
+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:978
+msgid "Station inactivity limit"
+msgstr ""
+
+#: modules/luci-base/luasrc/controller/admin/index.lua:40
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:337
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:747
+#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:128
+msgid "Status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:308
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:98
+msgid "Stop"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:166
+msgid "Strict order"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:30
+msgid "Strong"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1851
+msgid "Submit"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:108
+msgid "Suppress logging"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:109
+msgid "Suppress logging of the routine operation of these protocols"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24
+msgid "Swap"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:135
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:21
+msgid "Switch"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:168
+msgid "Switch %q"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:146
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:142
+msgid "Switch Port Mask"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2826
+#: modules/luci-base/luasrc/model/network.lua:1425
+msgid "Switch VLAN"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:355
+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-base/luasrc/view/cbi/ipaddr.htm:26
+msgid "Switch to CIDR list notation"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1528
+msgid "Symbolic link"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:71
+msgid "Sync with NTP-Server"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:64
+msgid "Sync with browser"
+msgstr ""
+
+#: modules/luci-base/luasrc/controller/admin/index.lua:47
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:94
+#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10
+msgid "System"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15
+#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8
+msgid "System Log"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
+msgid "System Properties"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:136
+msgid "System log buffer size"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364
+msgid "TCP:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:69
+msgid "TFTP Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
+msgid "TFTP server root"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:42
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:77
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88
+msgid "TX"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112
+msgid "TX Rate"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105
+msgid "Table"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:30
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74
+#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102
+msgid "Target"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
+msgid "Target network"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22
+msgid "Terminate"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:120
+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-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-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:1816
+msgid ""
+"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
+"code> and <code>_</code>"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/error.htm:6
+msgid "The configuration file could not be loaded due to the following error:"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
+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:303
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:415
+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:613
+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:180
+msgid "The firstboot command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:298
+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/luasrc/view/admin_status/routes.htm:38
+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:142
+msgid "The given SSH public key has already been added."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:148
+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:668
+msgid "The interface name is already used"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
+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-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
+msgid "The local IPv4 address over which the tunnel is created (optional)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1822
+msgid "The network name is already used"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:135
+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:241
+msgid "The reboot command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:230
+msgid "The restore command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1150
+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:183
+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:374
+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:246
+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:80
+msgid "The system password has been successfully changed."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
+msgid "The sysupgrade command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:203
+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:198
+msgid "The uploaded backup archive is not readable"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:327
+msgid "The uploaded firmware does not allow keeping current configuration."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
+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:427
+msgid "There are no active leases"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:29
+#: modules/luci-base/luasrc/view/lease_status.htm:61
+msgid "There are no active leases."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
+msgid "There are no changes to apply"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:174
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:239
+#: 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 and enable SSH."
+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:1449
+msgid "This authentication type is not applicable to the selected EAP method."
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:54
+msgid "This does not look like a valid PEM file"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
+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:499
+#: 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:112
+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:79
+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:24
+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/luasrc/model/cbi/admin_status/processes.lua:5
+msgid ""
+"This list gives an overview over currently running system processes and "
+"their status."
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343
+msgid "This page gives an overview over currently active network connections."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:936
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1067
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172
+#: modules/luci-base/luasrc/view/cbi/tsection.htm:32
+msgid "This section contains no values yet"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:105
+msgid "Time Synchronization"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
+msgid "Time interval for rekeying GTK"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:119
+msgid "Timezone"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:1597
+msgid "To login…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:450
+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:845
+msgid "Tone"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16
+#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27
+msgid "Total Available"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94
+msgid "Traceroute"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24
+msgid "Traffic"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393
+msgid "Transfer"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:89
+msgid "Transmit"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:57
+msgid "Trigger"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:84
+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:2829
+#: modules/luci-base/luasrc/model/network.lua:1430
+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:132
+msgid "Tx-Power"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:37
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:185
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
+msgid "Type"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354
+msgid "UDP:"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:90
+msgid "UMTS only"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
+#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10
+msgid "UMTS/GPRS/EV-DO"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:93
+msgid "USB Device"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:110
+msgid "USB Ports"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:277
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:383
+msgid "UUID"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:14
+#: modules/luci-base/htdocs/luci-static/resources/network.js:15
+#: modules/luci-base/luasrc/model/network.lua:34
+#: modules/luci-base/luasrc/model/network.lua:35
+msgid "Unable to determine device name"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:16
+#: modules/luci-base/luasrc/model/network.lua:36
+msgid "Unable to determine external IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:17
+#: modules/luci-base/luasrc/model/network.lua:37
+msgid "Unable to determine upstream interface"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error404.htm:10
+msgid "Unable to dispatch"
+msgstr ""
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
+#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54
+msgid "Unable to obtain client ID"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:244
+msgid "Unable to obtain mount information"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61
+msgid "Unable to resolve AFTR host name"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:18
+#: modules/luci-base/luasrc/model/network.lua:38
+msgid "Unable to resolve peer host name"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:16
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:422
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:53
+msgid "Unable to save contents: %s"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:132
+msgid "Unavailable Seconds (UAS)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/fs.js:100
+msgid "Unexpected reply data format"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1984
+#: modules/luci-base/luasrc/model/network.lua:970
+msgid "Unknown"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2272
+#: modules/luci-base/luasrc/model/network.lua:1137
+msgid "Unknown error (%s)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+msgid "Unknown error code"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1981
+#: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
+#: modules/luci-base/luasrc/model/network.lua:964
+msgid "Unmanaged"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:219
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
+msgid "Unmount"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:248
+msgid "Unnamed key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2276
+msgid "Unsaved Changes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
+msgid "Unspecified error"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
+#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64
+msgid "Unsupported MAP type"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
+#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69
+msgid "Unsupported modem"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:219
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119
+msgid "Unsupported protocol type."
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151
+msgid "Up"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:88
+msgid "Upload"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:486
+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:221
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:252
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:462
+msgid "Upload archive..."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1680
+msgid "Upload file"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1655
+msgid "Upload file…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:77
+msgid "Upload request failed: %s"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:15
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:53
+msgid "Uploading file…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:614
+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/iface_status.js:14
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:74
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85
+#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26
+msgid "Uptime"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:83
+msgid "Use <code>/etc/ethers</code>"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:264
+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:37
+#: 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-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
+msgid "Use DNS servers advertised by peer"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:480
+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 ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:317
+msgid "Use as external overlay (/overlay)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:316
+msgid "Use as root filesystem (/)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31
+msgid "Use broadcast flag"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:801
+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/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
+msgid "Use custom DNS servers"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
+#: 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-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
+msgid "Use default gateway"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:45
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:227
+#: 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:149
+#: 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
+msgid "Use gateway metric"
+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/dhcp.js:310
+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 ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:218
+msgid "Used"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1274
+msgid "Used Key Slot"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
+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:110
+msgid "User certificate (PEM encoded)"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:122
+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:102
+#: 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:913
+msgid "VC-Mux"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:861
+msgid "VDSL"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:169
+msgid "VLANs on %q"
+msgstr ""
+
+#: modules/luci-base/luasrc/controller/admin/index.lua:55
+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:93
+#: 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:96
+msgid "VPN Server port"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:100
+msgid "VPN Server's certificate SHA1 hash"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
+#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9
+msgid "VPNC (CISCO 3000 (and others) VPN)"
+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:52
+msgid "Vendor Class to send when requesting DHCP"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279
+msgid "Verifying the uploaded image file."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:52
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76
+msgid "Virtual dynamic interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:908
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:909
+msgid "WDS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
+msgid "WEP Open System"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
+msgid "WEP Shared Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1831
+msgid "WEP passphrase"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
+msgid "WMM Mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1831
+msgid "WPA passphrase"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
+msgid ""
+"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
+"and ad-hoc mode) to be installed."
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34
+msgid "Waiting for command to complete..."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2496
+msgid "Waiting for configuration to get applied… %ds"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
+msgid "Waiting for device..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
+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:34
+msgid "Weak"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
+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-base/luasrc/view/cbi/wireless_modefreq.htm:166
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:384
+msgid "Width"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:17
+#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9
+msgid "WireGuard VPN"
+msgstr ""
+
+#: modules/luci-mod-network/luasrc/controller/admin/network.lua:40
+#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28
+#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14
+msgid "Wireless"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2817
+#: modules/luci-base/luasrc/model/network.lua:1418
+msgid "Wireless Adapter"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2796
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3998
+#: modules/luci-base/luasrc/model/network.lua:1404
+#: modules/luci-base/luasrc/model/network.lua:1865
+msgid "Wireless Network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:630
+msgid "Wireless Overview"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:798
+msgid "Wireless Security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:612
+msgid "Wireless configuration migration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:179
+msgid "Wireless is disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:179
+msgid "Wireless is not associated"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753
+msgid "Wireless network is disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753
+msgid "Wireless network is enabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
+msgid "Write received DNS requests to syslog"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:155
+msgid "Write system log to file"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
+msgid "Yes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
+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:108
+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:184
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:232
+#: 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 ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
+msgid "ZRam Compression Algorithm"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
+msgid "ZRam Compression Streams"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:180
+msgid "ZRam Settings"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:182
+msgid "ZRam Size"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:230
+msgid "any"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:846
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:854
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:859
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1031
+#: 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:84
+msgid "automatic"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:78
+msgid "baseT"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
+msgid "bridged"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:132
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:386
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99
+#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31
+msgid "create"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69
+msgid "create:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:368
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
+msgid "creates a bridge over specified interface(s)"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277
+msgid "dB"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:47
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:50
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:133
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:134
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344
+#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347
+msgid "dBm"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:890
+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:578
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:584
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:590
+#: 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:434
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:468
+msgid "driver default"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:17
+#: modules/luci-base/luasrc/view/lease_status.htm:46
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
+msgid "expired"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:88
+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:72
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:181
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61
+msgid "forward"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:80
+msgid "full-duplex"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:80
+msgid "half-duplex"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:565
+msgid "hexadecimal encoded value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:587
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:592
+msgid "hybrid mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:35
+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:56
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:177
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46
+msgid "input"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304
+msgid "kB/s"
+msgstr ""
+
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301
+#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304
+msgid "kbit/s"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+msgid "key between 8 and 63 characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:402
+msgid "key with either 5 or 13 characters"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:95
+msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
+msgid "medium security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1361
+msgid "minutes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:39
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34
+msgid "no"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:72
+msgid "no link"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:54
+msgid "non-empty value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1448
+msgid "none"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:77
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:91
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:105
+msgid "not present"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:341
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:777
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:781
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:163
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:194
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:206
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:245
+msgid "off"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:162
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:193
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:205
+#: 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:1170
+msgid "open network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:56
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46
+msgid "output"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:236
+msgid "positive decimal value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:228
+msgid "positive integer value"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:56
+msgid "random"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591
+msgid "relay mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920
+msgid "routed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:978
+msgid "sec"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:585
+msgid "server mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:601
+msgid "stateful-only"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:599
+msgid "stateless"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:600
+msgid "stateless + stateful"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
+msgid "strong security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:346
+msgid "tagged"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
+msgid "time units (TUs / 1.024 ms) [1000-65535]"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:555
+msgid "unique value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:449
+msgid "unknown"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/lease_status.htm:15
+#: modules/luci-base/luasrc/view/lease_status.htm:44
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414
+msgid "unlimited"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1651
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:63
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:355
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:378
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:413
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:450
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:545
+#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53
+#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38
+msgid "unspecified"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71
+msgid "unspecified -or- create:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:344
+msgid "untagged"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+msgid "valid IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+msgid "valid IP address or prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:276
+msgid "valid IPv4 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:249
+msgid "valid IPv4 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:249
+msgid "valid IPv4 address or network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:369
+msgid "valid IPv4 address:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:309
+msgid "valid IPv4 network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:271
+msgid "valid IPv4 or IPv6 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+msgid "valid IPv4 prefix value (0-32)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:281
+msgid "valid IPv6 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
+msgid "valid IPv6 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
+msgid "valid IPv6 address or prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+msgid "valid IPv6 host id"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:314
+msgid "valid IPv6 network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+msgid "valid IPv6 prefix value (0-128)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
+msgid "valid MAC address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:406
+msgid "valid UCI identifier"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:357
+msgid "valid UCI identifier, hostname or IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:381
+msgid "valid address:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:529
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:533
+msgid "valid date (YYYY-MM-DD)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:232
+msgid "valid decimal value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:400
+msgid "valid hexadecimal WEP key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:388
+msgid "valid hexadecimal WPA key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:363
+msgid "valid host:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:350
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:352
+msgid "valid hostname"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:340
+msgid "valid hostname or IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:224
+msgid "valid integer value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:304
+msgid "valid network in address/netmask notation"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:504
+msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:330
+msgid "valid port or port range (port1-port2)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:319
+msgid "valid port value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:509
+msgid "valid time (HH:MM:SS)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
+msgid "value between %d and %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+msgid "value between %f and %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+msgid "value greater or equal to %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:419
+msgid "value smaller or equal to %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:425
+msgid "value with %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:436
+msgid "value with at least %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:441
+msgid "value with at most %d characters"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
+msgid "weak security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:39
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34
+msgid "yes"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/cbi/delegator.htm:20
+msgid "« Back"
+msgstr ""
diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po
index 7a81688b14..ca48a2d6bc 100644
--- a/modules/luci-base/po/ja/base.po
+++ b/modules/luci-base/po/ja/base.po
@@ -3,15 +3,16 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2019-10-09 00:26+0900\n"
-"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2019-10-17 06:35+0000\n"
+"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
+"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/luci/ja/"
+">\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Poedit 2.2.3\n"
+"X-Generator: Weblate 3.9\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
@@ -128,7 +129,7 @@ msgstr "802.11r 高速ローミング"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
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:1575
msgid "802.11w Association SA Query retry timeout"
@@ -314,7 +315,7 @@ msgstr "ATMデバイス番号"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:136
msgid "ATU-C System Vendor ID"
-msgstr ""
+msgstr "ATU-C システム ベンダー ID"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:251
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:528
@@ -1433,7 +1434,7 @@ msgstr "Delivery Traffic Indication Message インターバル"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:108
msgid "Description"
-msgstr "詳細"
+msgstr "説明"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1731
msgid "Deselect"
diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po
index 0bb1076478..fbe1470579 100644
--- a/modules/luci-base/po/pl/base.po
+++ b/modules/luci-base/po/pl/base.po
@@ -3,25 +3,27 @@ msgstr ""
"Project-Id-Version: LuCI\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-20 09:40+0200\n"
-"PO-Revision-Date: 2019-01-05 19:30+0200\n"
-"Last-Translator: Rixerx <krystian.kozak20@gmail.com>\n"
-"Language-Team: Polish\n"
+"PO-Revision-Date: 2019-10-17 20:19+0000\n"
+"Last-Translator: Krystian Kozak <krystian.kozak20@gmail.com>\n"
+"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>"
+"\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.0.6\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 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
-msgstr ""
+msgstr "%.1f dB"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:250
+#, fuzzy
msgid "%d Bit"
-msgstr ""
+msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2171
msgid "%d invalid field(s)"
@@ -92,11 +94,12 @@ msgstr "-- dopasuj po uuid --"
#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44
#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23
msgid "-- please select --"
-msgstr ""
+msgstr "-- proszę wybrać --"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:815
+#, fuzzy
msgid "0 = not using RSSI threshold, 1 = do not change driver default"
-msgstr ""
+msgstr "0 = nie używa progu RSSI, 1 = nie zmienia domyślnego sterownika"
#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252
msgid "1 Minute Load:"
@@ -108,7 +111,7 @@ msgstr "Obciążenie 15 min.:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
msgid "4-character hexadecimal ID"
-msgstr ""
+msgstr "4-znakowy identyfikator szesnastkowy"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18
@@ -217,7 +220,7 @@ msgstr "Adres <abbr title=\"Media Access Control\">MAC</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
-msgstr ""
+msgstr "<abbr title=\"Unikatowy Identyfikator DHCP\">DUID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:234
msgid ""
@@ -249,27 +252,30 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1586
msgid "A directory with the same name already exists."
-msgstr ""
+msgstr "Katalog o tej samej nazwie już istnieje."
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1589
msgid "A new login is required since the authentication session expired."
msgstr "Wymagane jest ponowne zalogowanie ponieważ sesja wygasła."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:847
+#, fuzzy
msgid "A43C + J43 + A43"
-msgstr ""
+msgstr "A43C + J43 + A43"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:848
+#, fuzzy
msgid "A43C + J43 + A43 + V43"
-msgstr ""
+msgstr "A43C + J43 + A43 + V43"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
msgid "ADSL"
msgstr "ADSL"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
+#, fuzzy
msgid "ANSI T1.413"
-msgstr ""
+msgstr "ANSI T1.413"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86
@@ -283,7 +289,7 @@ msgstr "Próg powtórzeń ARP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:855
msgid "ATM (Asynchronous Transfer Mode)"
-msgstr ""
+msgstr "ATM (tryb transferu asynchronicznego)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:876
msgid "ATM Bridges"
@@ -389,7 +395,7 @@ msgstr "Dodaj"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:880
msgid "Add ATM Bridge"
-msgstr ""
+msgstr "Dodaj most ATM"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
msgid "Add IPv4 address…"
@@ -401,15 +407,15 @@ msgstr "Dodaj adres IPv6…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:47
msgid "Add LED action"
-msgstr ""
+msgstr "Dodaj akcję LED"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:215
msgid "Add VLAN"
-msgstr ""
+msgstr "Dodaj VLAN"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:14
msgid "Add instance"
-msgstr ""
+msgstr "Dodaj instancję"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:141
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:147
@@ -428,7 +434,7 @@ msgstr "Dodaj nowy interfejs..."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:99
msgid "Add peer"
-msgstr ""
+msgstr "Dodaj peera"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:105
msgid "Additional Hosts files"
@@ -578,64 +584,76 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:828
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119
+#, fuzzy
msgid "Annex"
-msgstr ""
+msgstr "Annex"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:829
msgid "Annex A + L + M (all)"
-msgstr ""
+msgstr "Annex A + L + M (wszystkie)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
+#, 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:838
+#, 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:839
+#, 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:840
+#, 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:830
msgid "Annex B (all)"
-msgstr ""
+msgstr "Annex B (wszystkie)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
+#, 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:834
+#, 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:835
+#, 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:831
msgid "Annex J (all)"
-msgstr ""
+msgstr "Annex J (wszystkie)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:841
+#, 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:832
+#, fuzzy
msgid "Annex M (all)"
-msgstr ""
+msgstr "Annex M (wszystkie)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:842
+#, fuzzy
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:843
+#, fuzzy
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:606
msgid "Announce as default router even if no public prefix is available."
@@ -653,7 +671,7 @@ msgstr "Rozgłaszaj serwery DNS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1497
msgid "Anonymous Identity"
-msgstr ""
+msgstr "Tożsamość anonimowa"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:186
msgid "Anonymous Mount"
@@ -672,7 +690,7 @@ msgstr "Dowolna strefa"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:202
msgid "Apply backup?"
-msgstr ""
+msgstr "Czy zastosować kopię zapasową?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2537
msgid "Apply request failed with status <code>%h</code>"
@@ -680,7 +698,7 @@ msgstr "Żądanie zatwierdzenia nie powiodło się ze statusem <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Apply unchecked"
-msgstr ""
+msgstr "Zastosuj niezaznaczone"
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19
msgid "Architecture"
@@ -730,7 +748,7 @@ msgstr "Uwierzytelnianie"
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70
msgid "Authentication Type"
-msgstr ""
+msgstr "Typ uwierzytelniania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:78
msgid "Authoritative"
diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po
index b88b506fdc..b344639849 100644
--- a/modules/luci-base/po/ru/base.po
+++ b/modules/luci-base/po/ru/base.po
@@ -2,16 +2,17 @@ msgid ""
msgstr ""
"Project-Id-Version: LuCI: base\n"
"POT-Creation-Date: 2010-05-09 01:01+0300\n"
-"PO-Revision-Date: 2019-09-30 13:46+0300\n"
-"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n"
-"Language-Team: http://cyber-place.ru\n"
+"PO-Revision-Date: 2019-10-19 18:25+0000\n"
+"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n"
+"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>"
+"\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 2.2\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"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 3.9.1-dev\n"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
@@ -1442,7 +1443,7 @@ msgstr "Удалить ключ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1634
msgid "Delete request failed: %s"
-msgstr ""
+msgstr "Ошибка запроса на удаление: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:724
msgid "Delete this network"
@@ -2437,7 +2438,7 @@ msgstr "Длина префикса IPv4"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
msgid "IPv4+IPv6"
-msgstr ""
+msgstr "IPv4+IPv6"
#: modules/luci-base/luasrc/view/lease_status.htm:72
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:34
@@ -2860,7 +2861,7 @@ msgstr "Подключение к сети: %q"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:306
msgid "Keep settings and retain the current configuration"
-msgstr ""
+msgstr "Сохранить настройки и оставить текущую конфигурацию"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
@@ -3195,7 +3196,7 @@ msgstr "Минимальный адрес аренды."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86
msgid "MAC"
-msgstr ""
+msgstr "MAC"
#: modules/luci-base/luasrc/view/lease_status.htm:73
#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109
@@ -3327,11 +3328,11 @@ msgstr "Использование памяти (%)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3608
msgid "Mesh"
-msgstr ""
+msgstr "Mesh"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
msgid "Mesh ID"
-msgstr ""
+msgstr "Mesh ID"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:807
msgid "Mesh Id"
@@ -5472,7 +5473,7 @@ msgstr "Загруженный архив резервной копии не ч
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:327
msgid "The uploaded firmware does not allow keeping current configuration."
-msgstr ""
+msgstr "Загруженная прошивка не позволяет сохранить текущую конфигурацию."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
msgid ""
@@ -5778,7 +5779,7 @@ msgstr "Секунды неготовности (UAS)"
#: modules/luci-base/htdocs/luci-static/resources/fs.js:100
msgid "Unexpected reply data format"
-msgstr ""
+msgstr "Не ожидаемый формат данных ответа"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1984
#: modules/luci-base/luasrc/model/network.lua:970
@@ -5845,6 +5846,7 @@ msgstr "Загрузить"
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware."
msgstr ""
+"Загрузите здесь sysupgrade-совместимый образ для замены работающей прошивки."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:221
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:252
@@ -5893,7 +5895,7 @@ msgstr "Использовать <code>/etc/ethers</code>"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:264
msgid "Use DHCP advertised servers"
-msgstr ""
+msgstr "Использовать серверы, объявленные через DHCP"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
@@ -6026,6 +6028,8 @@ msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
+"Используется для двух различных целей: RADIUS NAS ID и 802.11r R0KH-ID. Не "
+"требуется при использовании обычного WPA(2)-PSK."
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
msgid "User certificate (PEM encoded)"
@@ -6055,7 +6059,7 @@ msgstr "VLANы на %q"
#: modules/luci-base/luasrc/controller/admin/index.lua:55
msgid "VPN"
-msgstr ""
+msgstr "VPN"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
msgid "VPN Local address"
diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po
index f98ffc561c..5ef0f0d2cb 100644
--- a/modules/luci-base/po/sv/base.po
+++ b/modules/luci-base/po/sv/base.po
@@ -1,15 +1,16 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2014-04-28 09:22+0200\n"
-"Last-Translator: Kristoffer Grundström <hamnisdude@gmail.com>\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2019-10-17 20:19+0000\n"
+"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n"
+"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/luci/sv/>"
+"\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.6\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
@@ -407,7 +408,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:263
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:709
msgid "Add new interface..."
-msgstr "Lägg till ett nytt gränssnitt"
+msgstr "Lägg till ett nytt gränssnitt..."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:99
msgid "Add peer"
@@ -1068,11 +1069,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:29
msgid "Command failed"
-msgstr ""
+msgstr "Kommandot misslyckades"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
msgid "Comment"
-msgstr ""
+msgstr "Kommentera"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
msgid ""
@@ -1311,7 +1312,7 @@ msgstr "Datahastighet"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:160
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
msgid "Debug"
-msgstr "Avlusa"
+msgstr "Felsök"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1208
@@ -1401,7 +1402,7 @@ msgstr "Plats"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:46
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:151
msgid "Destination zone"
-msgstr ""
+msgstr "Destinationens zon"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:54
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:177
@@ -1435,7 +1436,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2445
msgid "Device unreachable!"
-msgstr "Enheten kan inte nås"
+msgstr "Enheten kan inte nås!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:48
msgid "Device unreachable! Still waiting for device..."
@@ -1971,7 +1972,7 @@ msgstr "Brandvägg"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:76
msgid "Firewall Mark"
-msgstr ""
+msgstr "Brandväggsmarkering"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:278
msgid "Firewall Settings"
@@ -2128,7 +2129,7 @@ msgstr "Generella inställningar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:742
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:797
msgid "General Setup"
-msgstr ""
+msgstr "Allmän inställning"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
msgid "Generate Config"
@@ -2580,7 +2581,7 @@ msgstr ""
#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287
msgid "Inbound:"
-msgstr "Ankommande"
+msgstr "Inkommande:"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:161
msgid "Info"
@@ -2673,7 +2674,7 @@ msgstr "Gränssnittet är inte närvarande eller är inte anslutet än."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:287
#: modules/luci-mod-network/luasrc/controller/admin/network.lua:54
msgid "Interfaces"
-msgstr "Gränssnitten"
+msgstr "Gränssnitt"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
msgid "Internal"
@@ -2932,7 +2933,7 @@ msgstr ""
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
msgid "Listen Port"
-msgstr "Lyssningsportar"
+msgstr "Lyssningsport"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:16
msgid "Listen only on the given interface or, if unspecified, on all"
@@ -3038,7 +3039,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
msgid "Logging"
-msgstr ""
+msgstr "Loggning"
#: modules/luci-base/luasrc/view/sysauth.htm:38
msgid "Login"
@@ -3401,7 +3402,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126
msgid "Network without interfaces."
-msgstr "Nätverk utan gränssnitt"
+msgstr "Nätverk utan gränssnitt."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
msgid "New interface name…"
@@ -3414,7 +3415,7 @@ msgstr "Nästa »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No"
-msgstr ""
+msgstr "Nej"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:514
msgid "No DHCP Server configured for this interface"
@@ -3474,7 +3475,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83
msgid "No rules in this chain."
-msgstr "Inga regler i den här kedjan"
+msgstr "Inga regler i den här kedjan."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:53
msgid "No signal"
@@ -3705,7 +3706,7 @@ msgstr "Ut"
#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297
msgid "Outbound:"
-msgstr "Utgående"
+msgstr "Utgående:"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
msgid "Output Interface"
@@ -3766,7 +3767,7 @@ msgstr ""
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8
msgid "Overview"
-msgstr "Överblick"
+msgstr "Översikt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1587
msgid "Overwrite existing file \"%s\" ?"
@@ -4011,7 +4012,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45
msgid "Policy"
-msgstr ""
+msgstr "Villkor"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
msgid "Port"
@@ -4274,7 +4275,7 @@ msgstr "Ta emot"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:59
msgid "Recommended. IP addresses of the WireGuard interface."
-msgstr "Rekommenderad. WireGuard-gränssnittets IP-adress"
+msgstr "Rekommenderad. WireGuard-gränssnittets IP-adresser."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
msgid "Reconnect this interface"
@@ -4334,7 +4335,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
msgid "Required"
-msgstr "Krävs!"
+msgstr "Nödvändig"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:31
msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
@@ -4652,7 +4653,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
msgid "Server Settings"
-msgstr "Inställningar för server"
+msgstr "Server-inställningar"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
msgid "Service Name"
@@ -4803,7 +4804,7 @@ msgstr "Källa"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
msgid "Source Address"
-msgstr ""
+msgstr "Adress för källkod"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
msgid "Specifies the directory the device is attached to"
@@ -4852,7 +4853,7 @@ msgstr "Ange den hemliga krypteringsnyckeln här."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:74
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:96
msgid "Start"
-msgstr ""
+msgstr "Starta"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:71
msgid "Start priority"
@@ -5861,7 +5862,7 @@ msgstr ""
#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34
msgid "Waiting for command to complete..."
-msgstr "Väntar på att kommandot ska avsluta..."
+msgstr "Väntar på att kommandot ska slutföras..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2496
msgid "Waiting for configuration to get applied… %ds"
@@ -5963,7 +5964,7 @@ msgstr "Skriv systemlogg till fil"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
msgid ""
@@ -6021,7 +6022,7 @@ msgstr "auto"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
msgid "automatic"
-msgstr ""
+msgstr "automatisk"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:78
msgid "baseT"
@@ -6071,7 +6072,7 @@ msgstr "dBm"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:890
msgid "disable"
-msgstr "stäng ner"
+msgstr "inaktivera"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:578
@@ -6079,7 +6080,7 @@ msgstr "stäng ner"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:590
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
msgid "disabled"
-msgstr "avstängd"
+msgstr "inaktiverad"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:434
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:468
@@ -6090,7 +6091,7 @@ msgstr ""
#: modules/luci-base/luasrc/view/lease_status.htm:46
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
msgid "expired"
-msgstr ""
+msgstr "slutade gälla"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:88
msgid ""
@@ -6191,7 +6192,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1448
msgid "none"
-msgstr ""
+msgstr "ingen"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:77
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:91
diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po
index 00f4cb7aec..b245f378e3 100644
--- a/modules/luci-base/po/uk/base.po
+++ b/modules/luci-base/po/uk/base.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2019-09-25 22:40+0300\n"
+"PO-Revision-Date: 2019-10-09 20:55+0300\n"
"Last-Translator: Yurii <yuripet@gmail.com>\n"
"Language-Team: none\n"
"Language: uk\n"
@@ -32,7 +32,7 @@ msgstr "%s є непозначеним у декількох VLAN!"
#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168
#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169
msgid "(%d minute window, %d second interval)"
-msgstr "(вікно - %d хв, інтервал - %d с)"
+msgstr "(вікно – %d хв, інтервал – %d с)"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:105
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:111
@@ -567,7 +567,7 @@ msgstr "Дозволити root-вхід із паролем"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:30
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:200
msgid ""
@@ -1449,7 +1449,7 @@ msgstr "Видалити ключ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1634
msgid "Delete request failed: %s"
-msgstr ""
+msgstr "Помилка запиту на видалення: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:724
msgid "Delete this network"
@@ -2864,7 +2864,7 @@ msgstr "Потрібен JavaScript!"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1694
msgid "Join Network"
-msgstr "Підключення до мережі"
+msgstr "Підключитися до мережі"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
msgid "Join Network: Wireless Scan"
@@ -2876,7 +2876,7 @@ msgstr "Приєднання до мережі: %q"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:306
msgid "Keep settings and retain the current configuration"
-msgstr ""
+msgstr "Зберегти налаштування та поточну конфігурацію"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
@@ -3086,8 +3086,8 @@ msgstr "Порти прослуховування"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:16
msgid "Listen only on the given interface or, if unspecified, on all"
msgstr ""
-"Прослуховувати тільки на цьому інтерфейсі, або на всіх (якщо <em>не "
-"визначено</em>)"
+"Прослуховувати тільки на цьому інтерфейсі, якщо <em>не визначено</em> – на "
+"всіх"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:217
msgid "Listening port for inbound DNS queries"
@@ -3357,7 +3357,7 @@ msgstr "Mesh"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
msgid "Mesh ID"
-msgstr ""
+msgstr "Mesh ID"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:807
msgid "Mesh Id"
@@ -3520,7 +3520,7 @@ msgstr "Домен NT"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269
msgid "NTP server candidates"
-msgstr "Кандидати для синхронізації сервера NTP"
+msgstr "Сервери NTP – кандидати для синхронізації"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1097
#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27
@@ -3577,7 +3577,7 @@ msgstr "Наступний »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No"
-msgstr "№"
+msgstr "Немає"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:514
msgid "No DHCP Server configured for this interface"
@@ -3716,7 +3716,7 @@ msgstr "DNS-запит"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
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:194
msgid "Number of parallel threads used for compression"
@@ -3860,7 +3860,7 @@ msgid ""
"Recommended value if this device is behind a NAT is 25."
msgstr ""
"Необов'язково. Час (сек.) між перевірками активності повідомлень. Типове "
-"значення - 0 (вимкнено). Рекомендоване значення для цього пристрою за NAT - "
+"значення – 0 (вимкнено). Рекомендоване значення для цього пристрою за NAT – "
"25."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
@@ -5494,8 +5494,8 @@ msgid ""
"\"Cancel\" to abort the operation."
msgstr ""
"Відвантажений резервний архів видається дійсним і містить перелічені нижче "
-"файли. Натисніть \"Продовжити\", щоб відновити резервну копію та "
-"виконатиперезавантаження, або \"Скасувати\", щоб перервати операцію."
+"файли. Натисніть \"Продовжити\", щоб відновити резервну копію та виконати "
+"перезавантаження, або \"Скасувати\", щоб перервати операцію."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:198
msgid "The uploaded backup archive is not readable"
@@ -5503,7 +5503,7 @@ msgstr "Відвантажений архів резервної копії не
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:327
msgid "The uploaded firmware does not allow keeping current configuration."
-msgstr ""
+msgstr "Відвантажена мікропрограма не дозволить зберегти поточну конфігурацію."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
msgid ""
@@ -5810,7 +5810,7 @@ msgstr "Недоступні секунди (<abbr title=\"Unavailable Seconds\"
#: modules/luci-base/htdocs/luci-static/resources/fs.js:100
msgid "Unexpected reply data format"
-msgstr ""
+msgstr "Несподіваний формат даних відповіді"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1984
#: modules/luci-base/luasrc/model/network.lua:970
@@ -5877,6 +5877,8 @@ msgstr "Відвантажити"
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware."
msgstr ""
+"Відвантажте тут sysupgrade-сумісний образ, щоб замінити працюючу "
+"мікропрограму."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:221
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:252
@@ -5925,7 +5927,7 @@ msgstr "Використовувати <code>/etc/ethers</code>"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:264
msgid "Use DHCP advertised servers"
-msgstr ""
+msgstr "Використовувати сервери, оголошені DHCP"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
@@ -6059,6 +6061,9 @@ msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
+"Використовується для двох різних цілей: RADIUS NAS ID і 802.11r <abbr title="
+"\"ідентифікатор власника ключа R0\">R0KH-ID</abbr>. Не потрібно зі "
+"звичайним WPA(2)-PSK."
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
msgid "User certificate (PEM encoded)"
@@ -6810,47 +6815,3 @@ msgstr "так"
#: modules/luci-base/luasrc/view/cbi/delegator.htm:20
msgid "« Back"
msgstr "« Назад"
-
-#~ msgid "Caution: Configuration files will be erased"
-#~ msgstr "Увага: файли конфігурації буде видалено."
-
-#~ msgid "Changes applied."
-#~ msgstr "Зміни застосовано."
-
-#~ msgid "Configuration files will be kept"
-#~ msgstr "Конфігураційні файли буде збережено"
-
-#~ msgid "Delete permission denied"
-#~ msgstr "Дозволу на видалення не надано"
-
-#~ msgid "Delete request failed: %d %s"
-#~ msgstr "Помилка запиту на видалення: %d %s"
-
-#~ msgid "Device is rebooting..."
-#~ msgstr "Пристрій перезавантажується..."
-
-#~ msgid "Keep settings"
-#~ msgstr "Зберегти налаштування"
-
-#~ msgid "Rebooting..."
-#~ msgstr "Перезавантаження..."
-
-#~ msgid ""
-#~ "Upload a sysupgrade-compatible image here to replace the running "
-#~ "firmware. Check \"Keep settings\" to retain the current configuration "
-#~ "(requires a compatible firmware image)."
-#~ msgstr ""
-#~ "Відвантажити sysupgrade-сумісний образ, щоб замінити поточну "
-#~ "мікропрограму. Для збереження поточної конфігурації встановіть прапорець "
-#~ "\"Зберегти налаштування\" (потрібен сумісний образ мікропрограми)."
-
-#~ msgid ""
-#~ "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
-#~ "needed with normal WPA(2)-PSK/WPA3-SAE."
-#~ msgstr ""
-#~ "Використовується для двох різних цілей: RADIUS NAS ID і 802.11r <abbr "
-#~ "title=\"ідентифікатор власника ключа R0\">R0KH-ID</abbr>. Не потрібно за "
-#~ "звичайного WPA(2)-PSK/WPA3-SAE."
-
-#~ msgid "Waiting for changes to be applied..."
-#~ msgstr "Очікуємо, доки зміни наберуть чинності..."
diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po
index 22fd6ad53c..efe8304468 100644
--- a/modules/luci-base/po/zh-cn/base.po
+++ b/modules/luci-base/po/zh-cn/base.po
@@ -4,14 +4,15 @@
#
msgid ""
msgstr ""
-"PO-Revision-Date: 2019-09-29 15:29+0800\n"
-"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
-"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
-"Language: \n"
+"PO-Revision-Date: 2019-10-22 08:49+0000\n"
+"Last-Translator: Zheng Qian <sotux82@gmail.com>\n"
+"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
+"openwrt/luci/zh_Hans/>\n"
+"Language: zh-cn\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Gtranslator 2.91.7\n"
+"X-Generator: Weblate 3.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
msgid "%.1f dB"
@@ -224,19 +225,20 @@ msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
"Protocol\">DHCP</abbr> leases"
msgstr ""
-"最大 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> 租约数量"
+"<abbr title=\"maximal\">最大</abbr> <abbr title=\"Dynamic Host Configuration "
+"Protocol\">DHCP</abbr> 租约数量"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
"Domain Name System\">EDNS0</abbr> packet size"
msgstr ""
-"最大 <abbr title=\"Extension Mechanisms for Domain Name System\">EDNS0</"
-"abbr> 数据包大小"
+"<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:252
msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
-msgstr "最大并发查询数"
+msgstr "<abbr title=\"maximal\">最大</abbr>并发查询数"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:25
msgid ""
@@ -683,7 +685,7 @@ msgstr "分配接口…"
#: 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 "将此十六进制子 ID 前缀分配给此接口"
+msgstr "将此十六进制子 ID 前缀分配给此接口。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1975
#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22
@@ -989,14 +991,14 @@ msgid ""
"fill out the <em>create</em> field to define a new zone and attach the "
"interface to it."
msgstr ""
-"为此接口分配所属的防火墙区域,选择“不指定”可将该接口移出已关联的区域,或者填"
-"写“创建”栏来创建一个新的区域,并将当前接口与之建立关联。"
+"为此接口分配所属的防火墙区域,选择<em>未指定</em>可将该接口移出已关联的区域,或者填写<em>创建</em>栏来创建一个新的区域,并将当前接口与之"
+"建立关联。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:835
msgid ""
"Choose the network(s) you want to attach to this wireless interface or fill "
"out the <em>create</em> field to define a new network."
-msgstr "选择指派到此无线接口的网络,或者填写“创建”栏来新建网络。"
+msgstr "选择指派到此无线接口的网络,或者填写<em>创建</em>栏来新建网络。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1024
msgid "Cipher"
@@ -1076,7 +1078,7 @@ msgstr "命令成功"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:29
msgid "Command failed"
-msgstr "命令失败"
+msgstr "执行命令失败"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
msgid "Comment"
@@ -1387,7 +1389,7 @@ msgstr "删除密钥"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1634
msgid "Delete request failed: %s"
-msgstr ""
+msgstr "删除请求失败:%s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:724
msgid "Delete this network"
@@ -1451,7 +1453,7 @@ msgstr "设备正在重启…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2445
msgid "Device unreachable!"
-msgstr "无法连接到设备"
+msgstr "无法连接到设备!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:48
msgid "Device unreachable! Still waiting for device..."
@@ -2504,7 +2506,7 @@ msgstr "鉴权"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
msgid "If checked, 1DES is enabled"
-msgstr "如果选中,则启用1DES。"
+msgstr "如果选中,则启用 1DES"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "If checked, encryption is disabled"
@@ -2752,7 +2754,7 @@ 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:183
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:221
@@ -2775,7 +2777,7 @@ msgstr "加入网络:%q"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:306
msgid "Keep settings and retain the current configuration"
-msgstr ""
+msgstr "保留当前配置"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16
#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8
@@ -2981,7 +2983,7 @@ msgstr "入站 DNS 查询端口"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:202
msgid "Load"
-msgstr "负载"
+msgstr "载入"
#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27
msgid "Load Average"
@@ -3231,7 +3233,7 @@ msgstr "Mesh"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:105
msgid "Mesh ID"
-msgstr ""
+msgstr "Mesh ID"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:807
msgid "Mesh Id"
@@ -3449,7 +3451,7 @@ msgstr "前进 »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1757
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No"
-msgstr "无"
+msgstr "否"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:514
msgid "No DHCP Server configured for this interface"
@@ -3509,7 +3511,7 @@ msgstr "当前还没有公钥。"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83
msgid "No rules in this chain."
-msgstr "本链没有规则"
+msgstr "本链没有规则。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:53
msgid "No signal"
@@ -3807,7 +3809,7 @@ msgstr "重设内部路由表"
#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8
msgid "Overview"
-msgstr "总览"
+msgstr "概览"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1587
msgid "Overwrite existing file \"%s\" ?"
@@ -4881,9 +4883,7 @@ 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 ""
-"指定最大发射功率。依据监管要求和使用情况,驱动程序可能将实际发射功率限定在此"
-"值以下"
+msgstr "指定最大发射功率。依据监管要求和使用情况,驱动程序可能将实际发射功率限定在此值以下。"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
msgid "Specify a TOS (Type of Service)."
@@ -4893,13 +4893,13 @@ msgstr "指定 TOS(服务类型)。"
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64)."
-msgstr "为封装数据包设置 TTL(生存时间),缺省值:64"
+msgstr "为封装数据包设置 TTL(生存时间),缺省值:64。"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes)."
-msgstr "设置 MTU(最大传输单位),缺省值:1280 bytes"
+msgstr "设置 MTU(最大传输单位),缺省值:1280 bytes。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1831
msgid "Specify the secret encryption key here."
@@ -4995,7 +4995,7 @@ msgstr "不记录日志"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:109
msgid "Suppress logging of the routine operation of these protocols"
-msgstr "不记录这些协议的常规操作日志。"
+msgstr "不记录这些协议的常规操作日志"
#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24
msgid "Swap"
@@ -5101,7 +5101,7 @@ msgstr "表"
#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74
#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102
msgid "Target"
-msgstr "对象"
+msgstr "目标"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
msgid "Target network"
@@ -5163,7 +5163,8 @@ msgstr ""
msgid ""
"The device file of the memory or partition (<abbr title=\"for example\">e.g."
"</abbr> <code>/dev/sda1</code>)"
-msgstr "存储器或分区的设备文件(例如:<code>/dev/sda1</code>)"
+msgstr ""
+"存储器或分区的设备文件(<abbr title=\"for example\">例如:</abbr><code>/dev/sda1</code>)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:613
msgid ""
@@ -5307,7 +5308,7 @@ msgstr "无法读取上传的备份归档"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:327
msgid "The uploaded firmware does not allow keeping current configuration."
-msgstr ""
+msgstr "上传的固件无法使用当前的配置。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
msgid ""
@@ -5355,8 +5356,8 @@ msgid ""
"'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
"Name System\">DNS</abbr> servers."
msgstr ""
-"此文件可能包含格式如“server=/domain/1.2.3.4”或“server=1.2.3.4”之类的行。前者"
-"为特定的域指定 DNS 服务器,后者则不限定服务器的解析范围。"
+"此文件可能包含格式如“server=/domain/1.2.3.4”或“server=1.2.3.4”之类的行。前者为特定的域指定 <abbr "
+"title=\"Domain Name System\">DNS</abbr> 服务器,后者则不限定服务器的解析范围。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:499
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
@@ -5372,7 +5373,7 @@ msgstr ""
msgid ""
"This is either the \"Update Key\" configured for the tunnel or the account "
"password if no update key has been configured"
-msgstr "如果更新密钥没有设置的话,隧道的“更新密钥”或者账户密码必须填写。"
+msgstr "如果更新密钥没有设置的话,隧道的“更新密钥”或者账户密码必须填写"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
msgid ""
@@ -5595,7 +5596,7 @@ msgstr "不可用秒数(UAS)"
#: modules/luci-base/htdocs/luci-static/resources/fs.js:100
msgid "Unexpected reply data format"
-msgstr ""
+msgstr "错误的数据回复格式"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1984
#: modules/luci-base/luasrc/model/network.lua:970
@@ -5648,7 +5649,7 @@ msgstr "不支持的调制解调器"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:219
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119
msgid "Unsupported protocol type."
-msgstr "不支持的协议类型"
+msgstr "不支持的协议类型。"
#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151
msgid "Up"
@@ -5661,7 +5662,7 @@ msgstr "上传"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:486
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware."
-msgstr ""
+msgstr "从这里上传一个 sysupgrade 兼容镜像以更新正在运行的固件。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:221
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:252
@@ -5709,7 +5710,7 @@ msgstr "使用 <code>/etc/ethers</code> 配置"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:264
msgid "Use DHCP advertised servers"
-msgstr ""
+msgstr "使用 DHCP 通告的服务器"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
@@ -5822,9 +5823,9 @@ 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 ""
-"使用“添加”按钮来增加新的租约条目。“IPv4 地址”和“主机名”字段的值将被固定分配"
-"给“MAC 地址”字段标识的主机,“租期”是一个可选字段,可为每个主机单独设定 DHCP "
-"租期的时长,例如:12h、3d、infinite,分别表示 12 小时、3 天、永久。"
+"使用<em>添加</em>按钮来增加新的租约条目。<em>IPv4 地址</em>和<em>主机名</em>字段的值将被固定分配给 <em>MAC "
+"地址</em>字段标识的主机,<em>租期</em>是一个可选字段,可为每个主机单独设定 DHCP 租期的时长,例如:12h、3d、infinite,"
+"分别表示 12 小时、3 天、永久。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:218
msgid "Used"
@@ -5839,6 +5840,8 @@ msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
+"用于两种不同的用途:RADIUS NAS ID 和 802.11r R0KH-ID。通常的 WPA(2)-PSK 不需"
+"要。"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
msgid "User certificate (PEM encoded)"
diff --git a/modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json b/modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json
index 001e6deec8..b3c4013782 100644
--- a/modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json
+++ b/modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json
@@ -30,11 +30,13 @@
"/etc/filesystems": [ "read" ],
"/etc/rc.local": [ "read" ],
"/etc/sysupgrade.conf": [ "read" ],
+ "/etc/passwd": [ "read" ],
+ "/etc/group": [ "read" ],
"/proc/filesystems": [ "read" ],
"/proc/mtd": [ "read" ],
"/proc/partitions": [ "read" ],
"/proc/sys/kernel/hostname": [ "read" ],
- "/sys/devices/virtual/ubi/*/name": [ "read" ]
+ "/proc/mounts": [ "read" ]
},
"ubus": {
"file": [ "list", "read", "stat" ],