summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/network.js28
-rw-r--r--modules/luci-base/po/ar/base.po40
-rw-r--r--modules/luci-base/po/bg/base.po32
-rw-r--r--modules/luci-base/po/bn_BD/base.po32
-rw-r--r--modules/luci-base/po/ca/base.po32
-rw-r--r--modules/luci-base/po/cs/base.po32
-rw-r--r--modules/luci-base/po/de/base.po32
-rw-r--r--modules/luci-base/po/el/base.po32
-rw-r--r--modules/luci-base/po/en/base.po32
-rw-r--r--modules/luci-base/po/es/base.po36
-rw-r--r--modules/luci-base/po/fi/base.po32
-rw-r--r--modules/luci-base/po/fr/base.po32
-rw-r--r--modules/luci-base/po/he/base.po32
-rw-r--r--modules/luci-base/po/hi/base.po32
-rw-r--r--modules/luci-base/po/hu/base.po32
-rw-r--r--modules/luci-base/po/it/base.po32
-rw-r--r--modules/luci-base/po/ja/base.po142
-rw-r--r--modules/luci-base/po/ko/base.po32
-rw-r--r--modules/luci-base/po/mr/base.po32
-rw-r--r--modules/luci-base/po/ms/base.po32
-rw-r--r--modules/luci-base/po/nb_NO/base.po32
-rw-r--r--modules/luci-base/po/nl/base.po7643
-rw-r--r--modules/luci-base/po/pl/base.po38
-rw-r--r--modules/luci-base/po/pt/base.po38
-rw-r--r--modules/luci-base/po/pt_BR/base.po36
-rw-r--r--modules/luci-base/po/ro/base.po32
-rw-r--r--modules/luci-base/po/ru/base.po34
-rw-r--r--modules/luci-base/po/sk/base.po240
-rw-r--r--modules/luci-base/po/sv/base.po32
-rw-r--r--modules/luci-base/po/templates/base.pot32
-rw-r--r--modules/luci-base/po/tr/base.po213
-rw-r--r--modules/luci-base/po/uk/base.po32
-rw-r--r--modules/luci-base/po/vi/base.po32
-rw-r--r--modules/luci-base/po/zh_Hans/base.po32
-rw-r--r--modules/luci-base/po/zh_Hant/base.po32
-rw-r--r--modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js26
36 files changed, 8630 insertions, 652 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js
index 856421cd3..1f749c593 100644
--- a/modules/luci-base/htdocs/luci-static/resources/network.js
+++ b/modules/luci-base/htdocs/luci-static/resources/network.js
@@ -3571,6 +3571,24 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */
},
/**
+ * Get the Linux VLAN network device names.
+ *
+ * @returns {string[]}
+ * Returns the current Linux VLAN network device name as resolved
+ * from `ubus` runtime information or empty array if this network
+ * has no associated VLAN network devices.
+ */
+ getVlanIfnames: function() {
+ var vlans = L.toArray(this.ubus('net', 'vlans')),
+ ifnames = [];
+
+ for (var i = 0; i < vlans.length; i++)
+ ifnames.push(vlans[i]['ifname']);
+
+ return ifnames;
+ },
+
+ /**
* Get the name of the corresponding wifi radio device.
*
* @returns {null|string}
@@ -3880,7 +3898,15 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */
* with this network.
*/
getAssocList: function() {
- return callIwinfoAssoclist(this.getIfname());
+ var tasks = [];
+ var ifnames = [ this.getIfname() ].concat(this.getVlanIfnames());
+
+ for (var i = 0; i < ifnames.length; i++)
+ tasks.push(callIwinfoAssoclist(ifnames[i]));
+
+ return Promise.all(tasks).then(function(values) {
+ return Array.prototype.concat.apply([], values);
+ });
},
/**
diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po
index a5314a164..7ca72036b 100644
--- a/modules/luci-base/po/ar/base.po
+++ b/modules/luci-base/po/ar/base.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2020-08-04 18:32+0000\n"
-"Last-Translator: DJEBRI Ahmed El Amine <djebri.emp@gmail.com>\n"
+"PO-Revision-Date: 2020-10-06 20:26+0000\n"
+"Last-Translator: Mohamed Bechir Besbes <besbes.bechir22@gmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/luci/ar/>"
"\n"
"Language: ar\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.3-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -508,7 +508,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
msgid "Advanced Settings"
-msgstr ""
+msgstr "إعدادات متقدمة"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
msgid "Aggregate Transmit Power (ACTATP)"
@@ -1203,7 +1203,7 @@ msgstr "جمع البيانات..."
msgid "Command"
msgstr "أمر"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1270,7 +1270,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1726,6 +1726,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3120,7 +3124,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3130,7 +3134,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3710,7 +3714,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -3999,7 +4003,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4131,7 +4135,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4670,7 +4674,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5025,7 +5029,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5170,7 +5174,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5405,6 +5409,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6530,7 +6538,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6554,7 +6562,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po
index 0c31ca91c..07fc058cb 100644
--- a/modules/luci-base/po/bg/base.po
+++ b/modules/luci-base/po/bg/base.po
@@ -1202,7 +1202,7 @@ msgstr ""
msgid "Command"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1269,7 +1269,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1725,6 +1725,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3119,7 +3123,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3129,7 +3133,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3709,7 +3713,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -3998,7 +4002,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4130,7 +4134,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4669,7 +4673,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5024,7 +5028,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5169,7 +5173,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5404,6 +5408,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6529,7 +6537,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6553,7 +6561,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po
index c32659a6f..530fd9062 100644
--- a/modules/luci-base/po/bn_BD/base.po
+++ b/modules/luci-base/po/bn_BD/base.po
@@ -1196,7 +1196,7 @@ msgstr ""
msgid "Command"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1263,7 +1263,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1719,6 +1719,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3113,7 +3117,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3123,7 +3127,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3703,7 +3707,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -3992,7 +3996,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4124,7 +4128,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4663,7 +4667,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5018,7 +5022,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5163,7 +5167,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5398,6 +5402,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6523,7 +6531,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6547,7 +6555,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po
index 040773378..7051d1227 100644
--- a/modules/luci-base/po/ca/base.po
+++ b/modules/luci-base/po/ca/base.po
@@ -1238,7 +1238,7 @@ msgstr "S’estan recollint dades…"
msgid "Command"
msgstr "Ordre"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1305,7 +1305,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1769,6 +1769,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3179,7 +3183,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3189,7 +3193,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3774,7 +3778,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4065,7 +4069,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4197,7 +4201,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4736,7 +4740,7 @@ msgstr "Executa un reinici"
msgid "Perform reset"
msgstr "Executa un reinici"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5093,7 +5097,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5238,7 +5242,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5475,6 +5479,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Ajusts de servidor"
@@ -6632,7 +6640,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6656,7 +6664,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Canvis sense desar"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po
index 593fd1f30..540cedf58 100644
--- a/modules/luci-base/po/cs/base.po
+++ b/modules/luci-base/po/cs/base.po
@@ -1256,7 +1256,7 @@ msgstr "Shromažďování údajů…"
msgid "Command"
msgstr "Příkaz"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Příkaz OK"
@@ -1328,7 +1328,7 @@ msgstr "Pokus o připojení se nezdařil"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Spojení ztraceno"
@@ -1802,6 +1802,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Nepřeposílat reverzní dotazy na místní sítě"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Opravdu chcete „%s“ smazat?"
@@ -3232,7 +3236,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "Uvedené VLAN ID je neplatné! Každé ID musí být jedinečné"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Neplatný argument"
@@ -3242,7 +3246,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Neplatný příkaz"
@@ -3852,7 +3856,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh Id"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Metoda nebyla nalezena"
@@ -4144,7 +4148,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Nebyla přijata žádná data"
@@ -4276,7 +4280,7 @@ msgstr "Není k dispozici"
msgid "Not started on boot"
msgstr "Nespouštěno při startu"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Není podporováno"
@@ -4832,7 +4836,7 @@ msgstr "Provést restart"
msgid "Perform reset"
msgstr "Provést reset"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Přístup zamítnut"
@@ -5199,7 +5203,7 @@ msgstr "Vyžádat IPv6 adresu"
msgid "Request IPv6-prefix of length"
msgstr "Vyžádat IPv6 prefix délky"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Časový limit požadavku"
@@ -5353,7 +5357,7 @@ msgstr "Soubory Resolv a Hosts"
msgid "Resolve file"
msgstr "Soubor resolve"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Zdroj nebyl nalezen"
@@ -5594,6 +5598,10 @@ msgstr ""
"Odesílat LCP echo požadavky každých x sekund, účinné pouze ve spojení s "
"prahovou hodnotou selhání"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Nastavení serveru"
@@ -6805,7 +6813,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "Neznámá chyba (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Neznámý chybový kód"
@@ -6829,7 +6837,7 @@ msgstr "Nepojmenovaný klíč"
msgid "Unsaved Changes"
msgstr "Neuložené změny"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Nespecifikovaná chyba"
diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po
index f5c9341d4..180b489b2 100644
--- a/modules/luci-base/po/de/base.po
+++ b/modules/luci-base/po/de/base.po
@@ -1280,7 +1280,7 @@ msgstr "Sammle Daten..."
msgid "Command"
msgstr "Befehl"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Kommando OK"
@@ -1351,7 +1351,7 @@ msgstr "Verbindungsversuch fehlgeschlagen"
msgid "Connection attempt failed."
msgstr "Verbindungsversuch gescheitert"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Verbindung verloren"
@@ -1832,6 +1832,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Soll \"%s\" wirklich gelöscht werden?"
@@ -3274,7 +3278,7 @@ msgstr "Ungültige VLAN ID angegeben! Nur IDs zwischen %d und %d sind erlaubt."
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "Ungültige VLAN-ID angegeben! Nur eindeutige IDs sind zulässig"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Ungültiges Argument"
@@ -3286,7 +3290,7 @@ msgstr ""
"Ungültige Trägerliste. Möglicherweise wurden zu viele Träger geschaffen. "
"Dieses Protokoll unterstützt nur einen Träger."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Ungültiges Kommando"
@@ -3898,7 +3902,7 @@ msgstr "Mesh-ID"
msgid "Mesh Id"
msgstr "Mesh-ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Methode nicht gefunden"
@@ -4191,7 +4195,7 @@ msgstr "Kein Signal empfangen"
msgid "No client associated"
msgstr "Keine Clients assoziiert"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Keine Daten empfangen"
@@ -4324,7 +4328,7 @@ msgstr "Nicht vorhanden"
msgid "Not started on boot"
msgstr "Beim Hochfahren nicht starten"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Nicht unterstützt"
@@ -4883,7 +4887,7 @@ msgstr "Neustart durchführen"
msgid "Perform reset"
msgstr "Reset durchführen"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Zugriff verweigert"
@@ -5260,7 +5264,7 @@ msgstr "IPv6-Adresse anfordern"
msgid "Request IPv6-prefix of length"
msgstr "IPv6-Präfix dieser Länge anfordern"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Anfrage-Timeout"
@@ -5414,7 +5418,7 @@ msgstr "Resolv- und Hosts-Dateien"
msgid "Resolve file"
msgstr "Resolv-Datei"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Resource nicht gefunden"
@@ -5658,6 +5662,10 @@ msgstr ""
"Sende LCP Echo Anforderungen im angegebenem Interval in Sekunden, nur "
"effektiv in Verbindung mit einem Fehler-Schwellwert"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Servereinstellungen"
@@ -6956,7 +6964,7 @@ msgstr "Unbekannte und nicht unterstützte Verbindungsmethode."
msgid "Unknown error (%s)"
msgstr "Protokollfehler: %s"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Unbekannter Fehlercode"
@@ -6980,7 +6988,7 @@ msgstr "Unbenannter Schlüssel"
msgid "Unsaved Changes"
msgstr "Ungespeicherte Änderungen"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Unbestimmter Fehler"
diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po
index 1a4a074db..3dc7b7683 100644
--- a/modules/luci-base/po/el/base.po
+++ b/modules/luci-base/po/el/base.po
@@ -1239,7 +1239,7 @@ msgstr "Συλλογή δεδομένων..."
msgid "Command"
msgstr "Εντολή"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1306,7 +1306,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1777,6 +1777,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3197,7 +3201,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3207,7 +3211,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3791,7 +3795,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4082,7 +4086,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4214,7 +4218,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4753,7 +4757,7 @@ msgstr "Εκτέλεση επανεκκίνησης"
msgid "Perform reset"
msgstr "Διενέργεια αρχικοποίησης"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5111,7 +5115,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5256,7 +5260,7 @@ msgstr "Αρχεία Resolv και Hosts"
msgid "Resolve file"
msgstr "Αρχείο Resolve"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5494,6 +5498,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Ρυθμίσεις Εξυπηρετητή"
@@ -6640,7 +6648,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6664,7 +6672,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Μη-αποθηκευμένες Αλλαγές"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po
index 2ff9e3238..5ea45c967 100644
--- a/modules/luci-base/po/en/base.po
+++ b/modules/luci-base/po/en/base.po
@@ -1228,7 +1228,7 @@ msgstr "Collecting data..."
msgid "Command"
msgstr "Command"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1295,7 +1295,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1760,6 +1760,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3166,7 +3170,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3176,7 +3180,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3759,7 +3763,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4050,7 +4054,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4182,7 +4186,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4721,7 +4725,7 @@ msgstr "Perform reboot"
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5078,7 +5082,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5223,7 +5227,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5460,6 +5464,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6601,7 +6609,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6625,7 +6633,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Unsaved Changes"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po
index e3a466e32..3d588d6ee 100644
--- a/modules/luci-base/po/es/base.po
+++ b/modules/luci-base/po/es/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2020-09-18 18:36+0000\n"
+"PO-Revision-Date: 2020-09-30 03:06+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>"
"\n"
@@ -1279,7 +1279,7 @@ msgstr "Recolectando datos…"
msgid "Command"
msgstr "Comando"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Comando OK"
@@ -1351,7 +1351,7 @@ msgstr "Intento de conexión fallido"
msgid "Connection attempt failed."
msgstr "Intento de conexión fallido."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Conexión perdida"
@@ -1830,6 +1830,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "No reenviar búsquedas inversas para redes locales"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr "No enviar un nombre de host"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "¿Realmente quieres eliminar \"%s\" ?"
@@ -2342,7 +2346,7 @@ msgstr "Firewall"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102
msgid "Firewall Mark"
-msgstr "Marca de Firewall"
+msgstr "Marca de Cortafuegos"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:326
msgid "Firewall Settings"
@@ -3271,7 +3275,7 @@ msgstr "¡ID de VLAN no válido! Sólo se permiten IDs entre %d y %d."
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "¡ID de VLAN no válido! Sólo se permiten IDs únicos"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Argumento inválido"
@@ -3283,7 +3287,7 @@ msgstr ""
"Lista de portadores inválida. Posiblemente se hayan creado demasiados "
"portadores. Este protocolo admite uno y solo un portador."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Comando inválido"
@@ -3890,7 +3894,7 @@ msgstr "ID de malla"
msgid "Mesh Id"
msgstr "ID de malla"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Método no encontrado"
@@ -4183,7 +4187,7 @@ msgstr "No hay señal RX"
msgid "No client associated"
msgstr "Ningún cliente asociado"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Sin datos recibidos"
@@ -4315,7 +4319,7 @@ msgstr "No presente"
msgid "Not started on boot"
msgstr "No se inició en el arranque"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "No soportado"
@@ -4874,7 +4878,7 @@ msgstr "Reiniciar"
msgid "Perform reset"
msgstr "Realizar restablecimiento"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Permiso denegado"
@@ -5248,7 +5252,7 @@ msgstr "Solicitar dirección IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Solicitud IPv6-prefijo de longitud"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Tiempo de espera de solicitud terminada"
@@ -5400,7 +5404,7 @@ msgstr "Archivos Resolv y Hosts"
msgid "Resolve file"
msgstr "Archivo de resolución"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Recurso no encontrado"
@@ -5644,6 +5648,10 @@ msgstr ""
"Enviar peticiones de echo LCP cada intervalo de segundos dado, solo efectivo "
"usado conjuntamente con el umbral de fallo"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr "Enviar el nombre de host de este dispositivo"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Configuración del servidor"
@@ -6913,7 +6921,7 @@ msgstr "Método de conexión desconocido y no compatible."
msgid "Unknown error (%s)"
msgstr "Error desconocido (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Código de error desconocido"
@@ -6937,7 +6945,7 @@ msgstr "Clave sin nombre"
msgid "Unsaved Changes"
msgstr "Cambios sin aplicar"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Error no especificado"
diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po
index da09b2f21..5c9cfed71 100644
--- a/modules/luci-base/po/fi/base.po
+++ b/modules/luci-base/po/fi/base.po
@@ -1265,7 +1265,7 @@ msgstr "Kerätään tietoja..."
msgid "Command"
msgstr "Komento"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Komento OK"
@@ -1337,7 +1337,7 @@ msgstr "Yhteyden muodostaminen epäonnistui"
msgid "Connection attempt failed."
msgstr "Yhteyden muodostaminen epäonnistui."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Yhteys katkennut"
@@ -1815,6 +1815,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Älä välitä käänteisiä hakuja paikallisille verkoille"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Haluatko todella poistaa '%s'?"
@@ -3249,7 +3253,7 @@ msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
"Virheellinen VLAN-tunnus annettu! Vain yksilölliset tunnukset ovat sallittuja"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Virheellinen argumentti"
@@ -3259,7 +3263,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Virheellinen komento"
@@ -3865,7 +3869,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Menetelmää ei löydy"
@@ -4158,7 +4162,7 @@ msgstr "Ei RX-signaalia"
msgid "No client associated"
msgstr "Ei asiakasta"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Tietoja ei ole vastaanotettu"
@@ -4290,7 +4294,7 @@ msgstr "puuttuu"
msgid "Not started on boot"
msgstr "Ei käynnistetty käynnistettäessä"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Ei tuettu"
@@ -4847,7 +4851,7 @@ msgstr "Suorita uudelleenkäynnistys"
msgid "Perform reset"
msgstr "Suorita nollaus"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Lupa evätty"
@@ -5219,7 +5223,7 @@ msgstr "Pyydä IPv6-osoitetta"
msgid "Request IPv6-prefix of length"
msgstr "Pyydettävä IPv6-etuliiteen pituus"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Pyynnön aikakatkaisu"
@@ -5372,7 +5376,7 @@ msgstr "Resolv- ja Hosts-tiedostot"
msgid "Resolve file"
msgstr "Resolve-tiedosto"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Resurssia ei löytynyt"
@@ -5614,6 +5618,10 @@ msgstr ""
"Lähetä LCP-kaikupyynnöt määritetyllä aikavälillä sekunneissa, käytetään vain "
"yhdessä vikakynnyksen kanssa"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Palvelimen asetukset"
@@ -6857,7 +6865,7 @@ msgstr "Tuntematon ja ei-tuettu yhteysmenetelmä."
msgid "Unknown error (%s)"
msgstr "Tuntematon virhe (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Tuntematon virhekoodi"
@@ -6881,7 +6889,7 @@ msgstr "Nimeämätön avain"
msgid "Unsaved Changes"
msgstr "Tallentamattomia muutoksia"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Määrittämätön virhe"
diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po
index bfff8c6a7..c15416fd1 100644
--- a/modules/luci-base/po/fr/base.po
+++ b/modules/luci-base/po/fr/base.po
@@ -1292,7 +1292,7 @@ msgstr "Récupération des données…"
msgid "Command"
msgstr "Commande"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Commande OK"
@@ -1364,7 +1364,7 @@ msgstr "Échec de la tentative de connexion"
msgid "Connection attempt failed."
msgstr "La tentative de connexion a échoué."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Connexion perdue"
@@ -1846,6 +1846,10 @@ msgid "Do not forward reverse lookups for local networks"
msgstr ""
"Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Voulez-vous vraiment supprimer \"%s\" ?"
@@ -3291,7 +3295,7 @@ msgstr ""
"Identifiant VLAN donné invalide ! Seuls les identifiants uniques sont "
"autorisés"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Argument invalide"
@@ -3301,7 +3305,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Commande invalide"
@@ -3910,7 +3914,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Méthode non trouvée"
@@ -4201,7 +4205,7 @@ msgstr "Pas de signal RX"
msgid "No client associated"
msgstr "Aucun client associé"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Aucune donnée reçue"
@@ -4333,7 +4337,7 @@ msgstr "Non présent"
msgid "Not started on boot"
msgstr "Non démarré au boot"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Non pris en charge"
@@ -4892,7 +4896,7 @@ msgstr "Redémarrer"
msgid "Perform reset"
msgstr "Réinitialiser"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Permission refusée"
@@ -5263,7 +5267,7 @@ msgstr "Demander une adresse IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Demander le préfixe IPv6 de la longueur"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Expiration de la demande"
@@ -5415,7 +5419,7 @@ msgstr "Fichiers Resolv et Hosts"
msgid "Resolve file"
msgstr "Fichier de résolution des noms"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Ressource non trouvée"
@@ -5660,6 +5664,10 @@ msgstr ""
"Envoyer des demandes d'échos LCP à intervalles donnés, en secondes ; utile "
"uniqument associé à un seuil d'erreurs"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Paramètres du serveur"
@@ -6928,7 +6936,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "Erreur inconnue (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Code d'erreur inconnu"
@@ -6952,7 +6960,7 @@ msgstr "Clé sans nom"
msgid "Unsaved Changes"
msgstr "Changements non appliqués"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Erreur non spécifiée"
diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po
index f576b8fc9..d931f41cf 100644
--- a/modules/luci-base/po/he/base.po
+++ b/modules/luci-base/po/he/base.po
@@ -1223,7 +1223,7 @@ msgstr "אוסף מידע..."
msgid "Command"
msgstr "פקודה"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1290,7 +1290,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1750,6 +1750,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3146,7 +3150,7 @@ msgstr "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חו
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3156,7 +3160,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3736,7 +3740,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4025,7 +4029,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4157,7 +4161,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4696,7 +4700,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5051,7 +5055,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5196,7 +5200,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5431,6 +5435,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6562,7 +6570,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6586,7 +6594,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po
index 2d7324e11..62777aa15 100644
--- a/modules/luci-base/po/hi/base.po
+++ b/modules/luci-base/po/hi/base.po
@@ -1204,7 +1204,7 @@ msgstr ""
msgid "Command"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1271,7 +1271,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1727,6 +1727,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3121,7 +3125,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3131,7 +3135,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3711,7 +3715,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4000,7 +4004,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4132,7 +4136,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4671,7 +4675,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5026,7 +5030,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5171,7 +5175,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5406,6 +5410,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6531,7 +6539,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6555,7 +6563,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po
index d88fa8b9e..500d1340e 100644
--- a/modules/luci-base/po/hu/base.po
+++ b/modules/luci-base/po/hu/base.po
@@ -1272,7 +1272,7 @@ msgstr "Adatok összegyűjtése…"
msgid "Command"
msgstr "Parancs"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Parancs rendben"
@@ -1344,7 +1344,7 @@ msgstr "Kapcsolódási kísérlet sikertelen"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "A kapcsolat elveszett"
@@ -1820,6 +1820,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Valóban törölni szeretné ezt: „%s”?"
@@ -3261,7 +3265,7 @@ msgstr ""
"Érvénytelen VLAN-azonosító lett megadva! Csak egyedi azonosítók "
"engedélyezettek"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Érvénytelen argumentum"
@@ -3271,7 +3275,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Érvénytelen parancs"
@@ -3876,7 +3880,7 @@ msgstr "Hálóazonosító"
msgid "Mesh Id"
msgstr "Hálóazonosító"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Nem található módszer"
@@ -4167,7 +4171,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Nem érkezett adat"
@@ -4299,7 +4303,7 @@ msgstr "Nincs jelen"
msgid "Not started on boot"
msgstr "Nincs elindítva rendszerindításkor"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Nem támogatott"
@@ -4856,7 +4860,7 @@ msgstr "Újraindítás végrehajtása"
msgid "Perform reset"
msgstr "Visszaállítás végrehajtása"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Hozzáférés megtagadva"
@@ -5226,7 +5230,7 @@ msgstr "IPv6-cím kérése"
msgid "Request IPv6-prefix of length"
msgstr "Kért IPv6-előtag vagy hossz"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Kérés időkorlátja"
@@ -5380,7 +5384,7 @@ msgstr "Resolv és hosts fájlok"
msgid "Resolve file"
msgstr "Fájl feloldása"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Az erőforrás nem található"
@@ -5622,6 +5626,10 @@ msgstr ""
"LCP visszhang kérések küldése a másodpercben megadott időközönként, csak "
"hibaküszöbszinttel együtt van hatása"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Kiszolgáló beállításai"
@@ -6848,7 +6856,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "Ismeretlen hiba (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Ismeretlen hibakód"
@@ -6872,7 +6880,7 @@ msgstr "Névtelen kulcs"
msgid "Unsaved Changes"
msgstr "Mentetlen változtatások"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Meghatározatlan hiba"
diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po
index e3feeced6..2d83c059d 100644
--- a/modules/luci-base/po/it/base.po
+++ b/modules/luci-base/po/it/base.po
@@ -1244,7 +1244,7 @@ msgstr "Raccolta dati..."
msgid "Command"
msgstr "Comando"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1311,7 +1311,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1780,6 +1780,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Non inoltrare ricerche inverse per reti locali"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3197,7 +3201,7 @@ msgstr "ID VLAN non valido! Solo gli ID compresi tra %d e %d sono consentiti."
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3207,7 +3211,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3798,7 +3802,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4089,7 +4093,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4221,7 +4225,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4762,7 +4766,7 @@ msgstr "Esegui un riavvio"
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5119,7 +5123,7 @@ msgstr "Richiede indirizzo-IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Richiede prefisso-IPv6 di lunghezza"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5264,7 +5268,7 @@ msgstr ""
msgid "Resolve file"
msgstr "File Resolve"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5501,6 +5505,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Impostazioni Server"
@@ -6658,7 +6666,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6682,7 +6690,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Modifiche non salvate"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po
index 26e369dc4..153bb01db 100644
--- a/modules/luci-base/po/ja/base.po
+++ b/modules/luci-base/po/ja/base.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-09-04 13:36+0000\n"
-"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
+"PO-Revision-Date: 2020-09-27 12:38+0000\n"
+"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/luci/ja/"
">\n"
"Language: ja\n"
@@ -95,7 +95,7 @@ msgstr "-- 選択してください --"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
msgctxt "sstp log level value"
msgid "0"
-msgstr ""
+msgstr "0"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
msgid "0 = not using RSSI threshold, 1 = do not change driver default"
@@ -156,7 +156,7 @@ msgstr "802.11w アソシエーションSAクエリの最大タイムアウト
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
msgid "802.11w Association SA Query retry timeout"
-msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間です。"
+msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
msgid "802.11w Management Frame Protection"
@@ -370,7 +370,7 @@ msgstr "存在しないインターフェース"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
msgid "Access Concentrator"
-msgstr "Access Concentrator"
+msgstr "アクセスコンセントレータ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:927
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
@@ -470,9 +470,7 @@ msgstr "公開鍵を追加"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
msgid "Add local domain suffix to names served from hosts files"
-msgstr ""
-"hosts ファイルにより解決される名前にローカルドメイン サフィックスを付加しま"
-"す。"
+msgstr "hosts ファイルから提供される名前にローカルドメイン サフィックスを追加"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757
@@ -510,7 +508,7 @@ msgstr "ローカル リレーブリッジにアクセスするためのIPアド
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
msgid "Addresses"
-msgstr ""
+msgstr "アドレス一覧"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
@@ -572,8 +570,7 @@ msgstr "全てのサーバー"
msgid ""
"Allocate IP addresses sequentially, starting from the lowest available "
"address"
-msgstr ""
-"IP アドレスを連続的に並べ、利用可能な最小のアドレスから払い出しを開始します。"
+msgstr "IP アドレスを順番に並べ、利用可能な最小のアドレスから開始"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
msgid "Allocate IP sequentially"
@@ -581,11 +578,11 @@ msgstr "連続 IP"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
-msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワード認証を許可します。"
+msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワード認証を許可"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112
msgid "Allow AP mode to disconnect STAs based on low ACK condition"
-msgstr "AP モード動作時に、低 ACK(確認応答)状態の STA の切断を許可します。"
+msgstr "AP モード動作時に、低 ACK(確認応答)状態の STA の切断を許可"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016
msgid "Allow all except listed"
@@ -613,8 +610,7 @@ msgstr "デバイスの再起動を許可"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Allow remote hosts to connect to local SSH forwarded ports"
-msgstr ""
-"リモートホストがSSH転送されたローカルのポートに接続することを許可します。"
+msgstr "リモートホストがSSH転送されたローカルのポートに接続することを許可"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
msgid "Allow root logins with password"
@@ -626,7 +622,7 @@ msgstr "システム機能のプローブを許可"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
msgid "Allow the <em>root</em> user to login with password"
-msgstr "パスワードを使用した <em>root</em> 権限でのログインを許可します。"
+msgstr "パスワードを使用して <em>root</em> 権限へのログインを許可"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
msgid ""
@@ -759,7 +755,7 @@ msgstr "全てのゾーン"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
msgid "Apply backup?"
-msgstr "バックアップの適用"
+msgstr "バックアップを適用しますか?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
msgid "Apply request failed with status <code>%h</code>"
@@ -784,7 +780,7 @@ msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface"
msgstr ""
"パブリック IPv6 プレフィクスのうち、指定されたプレフィクス長をこのインター"
-"フェースに割り当てます。"
+"フェースに割り当てる"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31
@@ -805,8 +801,7 @@ msgstr "アソシエーション数"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
msgid "Attempt to enable configured mount points for attached devices"
-msgstr ""
-"アタッチ済みデバイスに対して構成済みのマウントポイントの有効化を試行します。"
+msgstr "アタッチ済みデバイスに対して構成済みのマウントポイントの有効化を試行"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:104
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
@@ -824,11 +819,11 @@ msgstr "認証タイプ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
msgid "Authoritative"
-msgstr "Authoritative"
+msgstr "権威"
#: modules/luci-base/luasrc/view/sysauth.htm:17
msgid "Authorization Required"
-msgstr "ログイン認証"
+msgstr "ログイン"
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
@@ -856,15 +851,15 @@ msgstr "自動ホームネット (HNCP)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
msgid "Automatically check filesystem for errors before mounting"
-msgstr "マウント実行前にファイルシステムのエラーを自動的にチェックします。"
+msgstr "マウント実行前にファイルシステムのエラーを自動的にチェック"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
msgid "Automatically mount filesystems on hotplug"
-msgstr "ホットプラグによってファイルシステムを自動的にマウントします。"
+msgstr "ホットプラグによりファイルシステムを自動的にマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
msgid "Automatically mount swap on hotplug"
-msgstr "ホットプラグによってスワップ パーティションを自動的にマウントします。"
+msgstr "ホットプラグによりスワップ パーティションを自動的にマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
msgid "Automount Filesystem"
@@ -1030,7 +1025,7 @@ msgstr "バッファ"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138
msgid "CA certificate; if empty it will be saved after the first connection."
-msgstr "CA証明書(空白の場合、初回の接続後に保存されます。)"
+msgstr "CA証明書; 空白の場合、初回の接続後に保存されます。"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
msgid "CLAT configuration failed"
@@ -1256,7 +1251,7 @@ msgstr "データを収集中..."
msgid "Command"
msgstr "コマンド"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "コマンド OK"
@@ -1327,7 +1322,7 @@ msgstr "接続の試行が失敗しました"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "接続喪失"
@@ -1429,8 +1424,8 @@ msgid ""
"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
"\">LED</abbr>s if possible."
msgstr ""
-"<abbr title=\"Light Emitting Diode\">LED</abbr> デバイスの挙動をカスタマイズ"
-"します。"
+"デバイスの <abbr title=\"Light Emitting Diode\">LED</abbr> の挙動をカスタマイ"
+"ズします。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
msgid "DAE-Client"
@@ -1562,7 +1557,7 @@ msgstr "デフォルト ゲートウェイ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
msgid "Default is stateless + stateful"
-msgstr "デフォルトは ステートレス + ステートフル です。"
+msgstr "デフォルトは ステートレス + ステートフル"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
msgid "Default state"
@@ -1574,8 +1569,8 @@ msgid ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
"servers to clients."
msgstr ""
-"追加のDHCPオプションを設定します。(例:\"<code>6,192.168.2.1,192.168.2.2</"
-"code>\" と設定することで、クライアントに指定のDNSサーバーを通知します。)"
+"追加のDHCPオプションを設定します(例:\"<code>6,192.168.2.1,192.168.2.2</"
+"code>\" と設定することで、クライアントに指定のDNSサーバーを通知します)。"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2237
#: modules/luci-base/htdocs/luci-static/resources/form.js:2662
@@ -1799,6 +1794,10 @@ msgstr "パブリック DNSサーバーが返答できなかったリクエス
msgid "Do not forward reverse lookups for local networks"
msgstr "ローカル ネットワークへの逆引きを転送しません"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "本当に \"%s\" を削除しますか?"
@@ -1881,7 +1880,7 @@ msgstr ""
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
msgid "Dual-Stack Lite (RFC6333)"
-msgstr "Dual-Stack Lite (RFC6333)"
+msgstr "DS-Lite (RFC6333)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
@@ -2003,7 +2002,7 @@ msgstr "VLAN機能を有効にする"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
-msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSK/WPA3-SAEが必要です。"
+msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSK/WPA3-SAEが必要"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634
msgid "Enable key reinstallation (KRACK) countermeasures"
@@ -2064,7 +2063,7 @@ msgid ""
"Domain"
msgstr ""
"同一のモビリティ ドメイン(モビリティ グループ)に属するアクセスポイント間の"
-"高速ローミングを有効にします。"
+"高速ローミングを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460
msgid "Enables the Spanning Tree Protocol on this bridge"
@@ -2289,7 +2288,7 @@ msgid ""
"with defaults based on what was detected"
msgstr ""
"現在アタッチされている全てのファイルシステムとスワップを検索し、検出結果に基"
-"づいてデフォルト設定を置き換えます。"
+"づいてデフォルト設定を置き換える"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:820
msgid "Find and join network"
@@ -2330,11 +2329,11 @@ msgstr "DNSクエリを送信する送信元ポートを固定します"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421
msgid "Flash image..."
-msgstr "更新"
+msgstr "イメージファイルをフラッシュ..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279
msgid "Flash image?"
-msgstr "更新"
+msgstr "イメージファイルをフラッシュしますか?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
msgid "Flash new firmware image"
@@ -2848,7 +2847,7 @@ msgstr "IPv6 ファイアウォール"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
msgid "IPv6 Neighbours"
-msgstr ""
+msgstr "IPv6 隣接装置"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
msgid "IPv6 Settings"
@@ -2950,7 +2949,7 @@ msgstr ""
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "If checked, encryption is disabled"
-msgstr "チェックした場合、暗号化は無効になります。"
+msgstr "チェックした場合、暗号化は無効になります"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
@@ -2966,7 +2965,7 @@ msgid ""
"device node"
msgstr ""
"固定のデバイス ノード名のかわりに、設定されたパーティション ラベルを使用して"
-"マウントします。"
+"マウント"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116
@@ -3192,7 +3191,7 @@ msgstr "インターフェース名"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:122
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:272
msgid "Interface not present or not connected yet."
-msgstr "インターフェースが存在しないか、接続していません"
+msgstr "インターフェースが存在しないか、接続されていません。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:308
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:335
@@ -3228,9 +3227,9 @@ msgstr "無効なVLAN IDです! IDは%dから%dまでの値のみ入力可能で
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
-msgstr "無効なVLAN IDです! ユニークなIDを入力してください。"
+msgstr "無効なVLAN IDです! 重複しないIDを入力してください"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "無効な引数"
@@ -3240,7 +3239,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "無効なコマンド"
@@ -3306,7 +3305,7 @@ msgstr "カーネル バージョン"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
msgid "Key"
-msgstr "暗号キー"
+msgstr "キー"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
@@ -3509,7 +3508,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
msgid "List of hosts that supply bogus NX domain results"
-msgstr "NX ドメインの偽の結果として返されるホストのリストです。"
+msgstr "NX ドメインの偽の結果として返されるホストのリスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
msgid "Listen Interfaces"
@@ -3522,8 +3521,8 @@ msgstr "待ち受けポート"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
msgid "Listen only on the given interface or, if unspecified, on all"
msgstr ""
-"指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべての"
-"インタフェースが対象です。"
+"指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべて対"
+"象"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
msgid "Listening port for inbound DNS queries"
@@ -3608,8 +3607,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
msgid "Local domain suffix appended to DHCP names and hosts file entries"
msgstr ""
-"DHCP名とhostsファイルのエントリーに付される、ローカルドメイン サフィックスで"
-"す。"
+"DHCP名とhostsファイルのエントリーに付される、ローカルドメイン サフィックス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
msgid "Local server"
@@ -3670,7 +3668,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581
msgid "Lowest leased address as offset from the network address."
msgstr ""
-"ネットワークアドレスをオフセットとして、最小のアドレスを設定してください"
+"ネットワークアドレスをオフセットとして、最小のアドレスを設定してください。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
@@ -3837,7 +3835,7 @@ msgstr "メッシュ ID"
msgid "Mesh Id"
msgstr "メッシュ ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "メソッドが見つかりません"
@@ -3972,7 +3970,7 @@ msgid ""
"filesystem"
msgstr ""
"マウントポイントは、記憶デバイスがファイルシステムのどこに接続されているかを"
-"表示しています。"
+"表示しています"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
msgid "Mount attached devices"
@@ -3980,7 +3978,7 @@ msgstr "アタッチ済みデバイスをマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
msgid "Mount filesystems not specifically configured"
-msgstr "明確に設定されていないファイルシステムをマウントします。"
+msgstr "明確に設定されていないファイルシステムをマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
msgid "Mount options"
@@ -3992,7 +3990,7 @@ msgstr "マウントポイント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
msgid "Mount swap not specifically configured"
-msgstr "明確に設定されていないスワップ パーティションをマウントします。"
+msgstr "明確に設定されていないスワップ パーティションをマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
msgid "Mounted file systems"
@@ -4128,7 +4126,7 @@ msgstr "RX 信号なし"
msgid "No client associated"
msgstr "クライアントが関連付けられていません"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "受信データ無し"
@@ -4191,7 +4189,7 @@ msgstr "まだ公開鍵はありません。"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:90
msgid "No rules in this chain."
-msgstr "チェイン内にルールがありません"
+msgstr "チェイン内にルールがありません。"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
msgid "No validation or filtering"
@@ -4260,7 +4258,7 @@ msgstr "存在しません"
msgid "Not started on boot"
msgstr "システム起動時に開始されません"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "サポートされていません"
@@ -4284,7 +4282,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
msgid "Number of parallel threads used for compression"
-msgstr "圧縮に使用される、並列スレッド数です。"
+msgstr "圧縮に使用される、並列スレッド数"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
msgid "Number of peer notifications after failover event"
@@ -4455,7 +4453,7 @@ msgid ""
"Recommended value if this device is behind a NAT is 25."
msgstr ""
"キープアライブ メッセージの送信間隔(秒)です。既定値: 0。このデバイスがNAT"
-"以下に存在する場合の推奨値は25です。(オプション)"
+"以下に存在する場合の推奨値は25です(オプション)。"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
msgid "Optional. UDP port used for outgoing and incoming packets."
@@ -4811,7 +4809,7 @@ msgstr "再起動を実行"
msgid "Perform reset"
msgstr "設定リセットを実行"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "パーミッション拒否"
@@ -5178,7 +5176,7 @@ msgstr "IPv6 アドレスのリクエスト"
msgid "Request IPv6-prefix of length"
msgstr "リクエストする IPv6 プレフィクス長"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "リクエスト タイムアウト"
@@ -5327,7 +5325,7 @@ msgstr "名前解決およびホストファイル設定"
msgid "Resolve file"
msgstr "リゾルバファイル"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "リソースが見つかりません"
@@ -5569,6 +5567,10 @@ msgstr ""
"設定された秒間隔でLCP echoリクエストを送信します。失敗数しきい値を設定した場"
"合のみ、機能が有効になります。"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "サーバー設定"
@@ -6769,7 +6771,7 @@ msgstr "不明およびサポートされていない接続メソッドです。
msgid "Unknown error (%s)"
msgstr "不明なエラー (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "不明なエラーコード"
@@ -6793,7 +6795,7 @@ msgstr "名称未設定の公開鍵"
msgid "Unsaved Changes"
msgstr "保存されていない変更"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "未指定エラー"
@@ -6874,7 +6876,7 @@ msgstr "<code>/etc/ethers</code> を使用する"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269
msgid "Use DHCP advertised servers"
-msgstr "DHCP から通知されたサーバを使用する"
+msgstr "DHCPから通知されたサーバを使用する"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
@@ -7656,7 +7658,7 @@ msgstr "セキュリティ: 強"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
msgid "tagged"
-msgstr "tagged"
+msgstr "タグ付き"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448
msgid "time units (TUs / 1.024 ms) [1000-65535]"
@@ -7697,7 +7699,7 @@ msgstr "設定しない -又は- 作成:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
msgid "untagged"
-msgstr "untagged"
+msgstr "タグなし"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po
index 11f984e3d..d2836bef6 100644
--- a/modules/luci-base/po/ko/base.po
+++ b/modules/luci-base/po/ko/base.po
@@ -1234,7 +1234,7 @@ msgstr "데이터 수집 중..."
msgid "Command"
msgstr "명령어"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1301,7 +1301,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1767,6 +1767,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3166,7 +3170,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3176,7 +3180,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3758,7 +3762,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4047,7 +4051,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4179,7 +4183,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4720,7 +4724,7 @@ msgstr "재부팅하기"
msgid "Perform reset"
msgstr "Reset 하기"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5077,7 +5081,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5222,7 +5226,7 @@ msgstr "Resolv 와 Hosts 파일"
msgid "Resolve file"
msgstr "Resolve 파일"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "리소스 찾을 수 없음"
@@ -5464,6 +5468,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "서버 설정"
@@ -6618,7 +6626,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6642,7 +6650,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "적용 안된 변경 사항"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po
index 15d511b6e..9229cd7cf 100644
--- a/modules/luci-base/po/mr/base.po
+++ b/modules/luci-base/po/mr/base.po
@@ -1202,7 +1202,7 @@ msgstr "डेटा संकलित करीत आहे ..."
msgid "Command"
msgstr "कमांड"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1269,7 +1269,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1725,6 +1725,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3119,7 +3123,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3129,7 +3133,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3709,7 +3713,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -3998,7 +4002,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4130,7 +4134,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4669,7 +4673,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5024,7 +5028,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5169,7 +5173,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5404,6 +5408,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "सर्व्हर सेटिंग्ज"
@@ -6529,7 +6537,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6553,7 +6561,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po
index 09dbe24b3..9e0f9435a 100644
--- a/modules/luci-base/po/ms/base.po
+++ b/modules/luci-base/po/ms/base.po
@@ -1206,7 +1206,7 @@ msgstr "Mengumpul data..."
msgid "Command"
msgstr "Perintah"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1273,7 +1273,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1734,6 +1734,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3136,7 +3140,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3146,7 +3150,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3730,7 +3734,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4021,7 +4025,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4153,7 +4157,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4692,7 +4696,7 @@ msgstr "Lakukan reboot"
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5048,7 +5052,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5193,7 +5197,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5430,6 +5434,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6569,7 +6577,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6593,7 +6601,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Perubahan yang belum disimpan"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po
index e1ff75410..8c40ff85b 100644
--- a/modules/luci-base/po/nb_NO/base.po
+++ b/modules/luci-base/po/nb_NO/base.po
@@ -1230,7 +1230,7 @@ msgstr "Samler inn data…"
msgid "Command"
msgstr "Kommando"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1297,7 +1297,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1765,6 +1765,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Ikke videresend reverserte oppslag for lokale nettverk"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3175,7 +3179,7 @@ msgstr "Ugyldig VLAN ID gitt! Bare IDer mellom %d og %d er tillatt."
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3185,7 +3189,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3776,7 +3780,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4067,7 +4071,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4199,7 +4203,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4740,7 +4744,7 @@ msgstr "Omstart nå"
msgid "Perform reset"
msgstr "Foreta nullstilling"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5099,7 +5103,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5244,7 +5248,7 @@ msgstr "Oppslag og Vertsfiler"
msgid "Resolve file"
msgstr "<abbr title=\"Resolvefile\">Oppslagsfil</abbr>"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5483,6 +5487,10 @@ msgstr ""
"Send LCP ekko forespørsler etter angitt intervall i sekunder, dette er kun "
"gjeldene dersom feilterskelen er nådd"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Server Innstillinger"
@@ -6650,7 +6658,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6674,7 +6682,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Ulagrede Endringer"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po
new file mode 100644
index 000000000..f73afa986
--- /dev/null
+++ b/modules/luci-base/po/nl/base.po
@@ -0,0 +1,7643 @@
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2020-09-27 12:38+0000\n"
+"Last-Translator: G. Allen Morris III <gamthree@gmail.com>\n"
+"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/luci/nl/>\n"
+"Language: nl\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.3-dev\n"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
+msgid "%.1f dB"
+msgstr "%.1f dB"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:114
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:261
+msgid "%d Bit"
+msgstr "%d Bit"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3689
+msgid "%d invalid field(s)"
+msgstr "%d ongeldige velden"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
+msgid "%s is untagged in multiple VLANs!"
+msgstr "%s mag niet zonder tag in meerdere VLANs voorkomen!"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:270
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
+msgid "(%d minute window, %d second interval)"
+msgstr "(bereik van %d minuten, %d seconden interval)"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
+msgid "(empty)"
+msgstr "(leeg)"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
+#: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
+msgid "(no interfaces attached)"
+msgstr "(geen gekoppelde interfaces)"
+
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
+msgid "-- Additional Field --"
+msgstr "-- Extra Veld --"
+
+#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3372
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3704
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:767
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1005
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1974
+#: modules/luci-compat/luasrc/view/cbi/header.htm:8
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
+msgid "-- Please choose --"
+msgstr "-- Maak een keuze --"
+
+#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1006
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1975
+#: modules/luci-compat/luasrc/view/cbi/header.htm:9
+msgid "-- custom --"
+msgstr "-- aangepast --"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
+msgid "-- match by label --"
+msgstr "-- op label selecteren --"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
+msgid "-- match by uuid --"
+msgstr "-- op uuid selecteren --"
+
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
+#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
+msgid "-- please select --"
+msgstr "-- maak een keuze --"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
+msgctxt "sstp log level value"
+msgid "0"
+msgstr "0"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
+msgid "0 = not using RSSI threshold, 1 = do not change driver default"
+msgstr ""
+"0 = geen signaaldrempelwaarde gebruiken, 1 = standaardwaarde van driver niet "
+"wijzigen"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
+msgctxt "sstp log level value"
+msgid "1"
+msgstr "1"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231
+msgid "1 Minute Load:"
+msgstr "Systeembelasting (1 minuut):"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:251
+msgid "15 Minute Load:"
+msgstr "Systeembelasting (15 minuten):"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
+msgctxt "sstp log level value"
+msgid "2"
+msgstr "2"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
+msgctxt "sstp log level value"
+msgid "3"
+msgstr "3"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
+msgctxt "sstp log level value"
+msgid "4"
+msgstr "4"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442
+msgid "4-character hexadecimal ID"
+msgstr "4-teken hexadecimaal ID"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
+msgid "464XLAT (CLAT)"
+msgstr "464XLAT (CLAT)"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241
+msgid "5 Minute Load:"
+msgstr "Systeembelasting (5 minuten):"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
+msgid "6-octet identifier as a hex string - no colons"
+msgstr "6-octet ID als hex tekenreeks - zonder dubbele punten"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
+msgid "802.11r Fast Transition"
+msgstr "802.11r Snelle overgang"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
+msgid "802.11w Association SA Query maximum timeout"
+msgstr "802.11w Association SA Query maximale time-out"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
+msgid "802.11w Association SA Query retry timeout"
+msgstr "802.11w Associatie SA Vraag herproberen time-out"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
+msgid "802.11w Management Frame Protection"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
+msgid "802.11w maximum timeout"
+msgstr "802.11w maximale time-out"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
+msgid "802.11w retry timeout"
+msgstr "802.11w herproberen time-out"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
+msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
+msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
+msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
+msgstr "<abbr title=\"Domain Name System\">DNS</abbr> verzoekpoort"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
+msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
+msgstr "<abbr title=\"Domain Name System\">DNS</abbr> serverpoort"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
+msgid ""
+"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
+"order of the resolvfile"
+msgstr ""
+"<abbr title=\"Domain Name System\">DNS</abbr> servers worden geraadpleegd in "
+"volgorde van het resolvbestand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945
+msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:475
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
+msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Adres"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
+msgstr "<abbr title=\"Internet Protocol Versie 4\">IPv4</abbr>-Gateway"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
+msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netwerkmasker"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
+msgid ""
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
+"(CIDR)"
+msgstr ""
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Adres of Netwerk "
+"(CIDR)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
+msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
+msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
+msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
+msgstr ""
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Achtervoegsel (hex)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
+msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
+msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuratie"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
+msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
+msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Naam"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
+msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
+msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adres"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498
+msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
+msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
+msgid ""
+"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
+"Protocol\">DHCP</abbr> leases"
+msgstr ""
+"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
+"Protocol\">DHCP</abbr> toewijzingen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
+msgid ""
+"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
+"Domain Name System\">EDNS0</abbr> packet size"
+msgstr ""
+"<abbr title=\"maximale\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
+"Domain Name System\">EDNS0</abbr> packetgrootte"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
+msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
+msgstr "<abbr title=\"maximaal aantal\">Max.</abbr> gelijktijdige verzoeken"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
+msgid ""
+"<br/>Note: you need to manually restart the cron service if the crontab file "
+"was empty before editing."
+msgstr ""
+"<br/>Noot: de cron service moet handmatig worden herstart indien het "
+"crontabbestand voor het bewerken leeg was."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2720
+msgid "A directory with the same name already exists."
+msgstr "Er bestaat al een map met deze naam."
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670
+msgid "A new login is required since the authentication session expired."
+msgstr "Er moet opnieuw worden ingelogd omdat de sessie is verlopen."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:909
+msgid "A43C + J43 + A43"
+msgstr "A43C + J43 + A43"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910
+msgid "A43C + J43 + A43 + V43"
+msgstr "A43C + J43 + A43 + V43"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922
+msgid "ADSL"
+msgstr "ADSL"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
+msgid "ANSI T1.413"
+msgstr "ANSI T1.413"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67
+msgid "APN"
+msgstr "APN"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
+msgid "ARP"
+msgstr "ARP"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
+msgid "ARP IP Targets"
+msgstr "ARP IP-Doelen"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
+msgid "ARP Interval"
+msgstr "ARP Interval"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
+msgid "ARP Validation"
+msgstr "ARP Validatie"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
+msgid "ARP mode to consider a slave as being up"
+msgstr "ARP modus om een slaaf te beschouwen als actief"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
+msgid "ARP monitoring is not supported for the selected policy!"
+msgstr ""
+"ARP monitoring wordt niet ondersteund voor de geselecteerde instelling!"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
+msgid "ARP retry threshold"
+msgstr "Drempelwaarde voor hernieuwde ARP-pogingen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
+msgid "ATM (Asynchronous Transfer Mode)"
+msgstr "ATM (Asynchronous Transfer Mode)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
+msgid "ATM Bridges"
+msgstr "ATM Bruggen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
+msgid "ATM Virtual Channel Identifier (VCI)"
+msgstr "ATM Virtual Circuit Identifier (VCI)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:971
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
+msgid "ATM Virtual Path Identifier (VPI)"
+msgstr "ATM Virtual Path Identifier (VPI)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
+msgid ""
+"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
+"Linux network interfaces which can be used in conjunction with DHCP or PPP "
+"to dial into the provider network."
+msgstr ""
+"ATM bruggen maken in AAL5 omhulde ethernetverbindingen beschikbaar als "
+"virtuele Linux netwerkinterfaces welke met DHCP of PPP gebruikt kunnen "
+"worden om in het netwerk van de provider in te bellen."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
+msgid "ATM device number"
+msgstr "ATM apparaatnummer"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
+msgid "ATU-C System Vendor ID"
+msgstr "ATU-C Systeemleverancier-ID"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:543
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:547
+msgid "Absent Interface"
+msgstr "Geen interface"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
+msgid "Access Concentrator"
+msgstr "Toegang Concentrator"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:927
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
+msgid "Access Point"
+msgstr "Toegangspunt"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:360
+msgid "Actions"
+msgstr "Acties"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
+msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
+msgstr "Actieve <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
+msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
+msgstr "Actieve <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
+msgid "Active Connections"
+msgstr "Actieve verbindingen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:92
+msgid "Active DHCP Leases"
+msgstr "Actieve DHCP toewijzingen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:94
+msgid "Active DHCPv6 Leases"
+msgstr "Actieve DHCPv6 toewijzingen"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
+msgid "Active-Backup policy (active-backup, 1)"
+msgstr "Actieve-Backup instelling (active-backup, 1)"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3666
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
+msgid "Ad-Hoc"
+msgstr "Ad-Hocmodus"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
+msgid "Adaptive load balancing (balance-alb, 6)"
+msgstr "Adaptieve lastbalancering (balance-alb, 6)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
+msgid "Adaptive transmit load balancing (balance-tlb, 5)"
+msgstr "Adaptieve verzendlastbalancering (balance-tlb, 5)"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2167
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2170
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2184
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2185
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3170
+#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:827
+msgid "Add"
+msgstr "Toevoegen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
+msgid "Add ATM Bridge"
+msgstr "ATM brug toevoegen"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
+msgid "Add IPv4 address…"
+msgstr "IPv4-adres toevoegen…"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:207
+msgid "Add IPv6 address…"
+msgstr "IPv6-adres toevoegen…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
+msgid "Add LED action"
+msgstr "LED-actie toevoegen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
+msgid "Add VLAN"
+msgstr "VLAN toevoegen"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
+msgid "Add instance"
+msgstr "Instantie toevoegen"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:152
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:247
+msgid "Add key"
+msgstr "Sleutel toevoegen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
+msgid "Add local domain suffix to names served from hosts files"
+msgstr ""
+"Lokaal-domeinachtervoegsel toevoegen aan uit hostsfiles geserveerde namen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757
+msgid "Add new interface..."
+msgstr "Nieuwe interface toevoegen..."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
+msgid "Add peer"
+msgstr "Peer toevoegen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
+msgid "Additional Hosts files"
+msgstr "Aanvullende Hostsbestanden"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
+msgid "Additional servers file"
+msgstr "Aanvullende-serversbestand"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
+msgid "Address"
+msgstr "Adres"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
+msgid "Address to access local relay bridge"
+msgstr "Adres van lokale relay-brug"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
+msgid "Addresses"
+msgstr "Adressen"
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
+msgid "Administration"
+msgstr "Administratie"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:324
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:553
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:866
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
+msgid "Advanced Settings"
+msgstr "Geavanceerde instellingen"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
+msgid "Aggregate Transmit Power (ACTATP)"
+msgstr "Geaggregeerd verzendvermogen (ACTATP)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
+msgid "Aggregation Selection Logic"
+msgstr "Aggregatie Selectie Logica"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
+msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
+msgid ""
+"Aggregator: Chosen by the largest number of ports + slave added/removed or "
+"state changes (count, 2)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
+msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
+msgid "Alert"
+msgstr "Waarschuwing"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2871
+#: modules/luci-compat/luasrc/model/network.lua:1417
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:61
+msgid "Alias Interface"
+msgstr "Alias Interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:145
+msgid "Alias of \"%s\""
+msgstr "Alias van \"%s\""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
+msgid "All Servers"
+msgstr "Alle servers"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
+msgid ""
+"Allocate IP addresses sequentially, starting from the lowest available "
+"address"
+msgstr ""
+"IP-adressen op volgorde toewijzen, beginnend bij het laagst beschikbare adres"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
+msgid "Allocate IP sequentially"
+msgstr "IP-adressen sequentieel toewijzen"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
+msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
+msgstr ""
+"<abbr title=\"Secure Shell\">SSH</abbr> wachtwoordauthenticatie toestaan"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112
+msgid "Allow AP mode to disconnect STAs based on low ACK condition"
+msgstr "AP toestaan verbindingen met lage signaalkwaliteit te verbreken"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016
+msgid "Allow all except listed"
+msgstr "Alles behalve vermelde toestaan"
+
+#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
+msgid "Allow full UCI access for legacy applications"
+msgstr "Volledige UCI toegang voor verouderde applicaties toestaan"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892
+msgid "Allow legacy 802.11b rates"
+msgstr "Verouderde 802.11b-snelheden toestaan"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
+msgid "Allow listed only"
+msgstr "Alleen vermelde toestaan"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
+msgid "Allow localhost"
+msgstr "Localhost toestaan"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
+msgid "Allow rebooting the device"
+msgstr "Herstarten van apparaat toestaan"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
+msgid "Allow remote hosts to connect to local SSH forwarded ports"
+msgstr ""
+"Hosts op afstand toestaan te verbinden met locale middels SSH doorverbonden "
+"poorten"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
+msgid "Allow root logins with password"
+msgstr "Root-logins met wachtwoord toestaan"
+
+#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
+msgid "Allow system feature probing"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
+msgid "Allow the <em>root</em> user to login with password"
+msgstr "<em>root</em>gebruiker toestaan zonder wachtwoord in te loggen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
+msgid ""
+"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
+msgstr ""
+"DNS-antwoorden in het 127.0.0.0/8 bereik toestaan, bijvoorbeeld voor "
+"blokkeerlijstdiensten"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148
+msgid "Allowed IPs"
+msgstr "Toegestane IP-adressen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
+msgid "Always announce default router"
+msgstr "Kondig altijd de standaardrouter aan"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
+msgid "Always off (kernel: none)"
+msgstr "Altijd uit (kernel: geen)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
+msgid "Always on (kernel: default-on)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
+msgid ""
+"Always use 40MHz channels even if the secondary channel overlaps. Using this "
+"option does not comply with IEEE 802.11n-2009!"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:603
+msgid "An error occurred while saving the form:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
+msgid "Annex"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
+msgid "Annex A + L + M (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
+msgid "Annex A G.992.1"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
+msgid "Annex A G.992.2"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
+msgid "Annex A G.992.3"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
+msgid "Annex A G.992.5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:892
+msgid "Annex B (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:895
+msgid "Annex B G.992.1"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:896
+msgid "Annex B G.992.3"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
+msgid "Annex B G.992.5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:893
+msgid "Annex J (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
+msgid "Annex L G.992.3 POTS 1"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
+msgid "Annex M (all)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904
+msgid "Annex M G.992.3"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
+msgid "Annex M G.992.5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
+msgid "Announce as default router even if no public prefix is available."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:659
+msgid "Announced DNS domains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:658
+msgid "Announced DNS servers"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596
+msgid "Anonymous Identity"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
+msgid "Anonymous Mount"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
+msgid "Anonymous Swap"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
+msgid "Any zone"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
+msgid "Apply backup?"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+msgid "Apply request failed with status <code>%h</code>"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4142
+msgid "Apply unchecked"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4215
+msgid "Applying configuration changes… %ds"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
+msgid "Architecture"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
+msgid ""
+"Assign a part of given length of every public IPv6-prefix to this interface"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31
+msgid ""
+"Assign prefix parts using this hexadecimal subprefix ID for this interface."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245
+msgid "Associated Stations"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+msgid "Associations"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
+msgid "Attempt to enable configured mount points for attached devices"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:104
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
+msgid "Auth Group"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1535
+msgid "Authentication"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70
+msgid "Authentication Type"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
+msgid "Authoritative"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:17
+msgid "Authorization Required"
+msgstr ""
+
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:241
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:244
+msgid "Auto Refresh"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:50
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:81
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:55
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:68
+msgid "Automatic"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
+msgid "Automatic Homenet (HNCP)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
+msgid "Automatically check filesystem for errors before mounting"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
+msgid "Automatically mount filesystems on hotplug"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
+msgid "Automatically mount swap on hotplug"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
+msgid "Automount Filesystem"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
+msgid "Automount Swap"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
+msgid "Available"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:268
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:278
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:329
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:339
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:349
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:234
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:244
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:254
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:291
+msgid "Average:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
+msgid "B43 + B43C"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:912
+msgid "B43 + B43C + V43"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
+msgid "BR / DMR / AFTR"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:44
+msgid "BSSID"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:14
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
+msgid "Back to Overview"
+msgstr ""
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
+msgid "Back to configuration"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:363
+msgid "Backup"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
+msgid "Backup / Flash Firmware"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:323
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
+msgid "Backup file list"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:451
+msgid "Band"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
+msgid "Beacon Interval"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:324
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
+msgid ""
+"Below is the determined list of files to backup. It consists of changed "
+"configuration files marked by opkg, essential base files and the user "
+"defined backup patterns."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
+msgid ""
+"Bind dynamically to interfaces rather than wildcard address (recommended as "
+"linux default)"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:52
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
+msgid "Bind interface"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:52
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
+msgid "Bind the tunnel to this interface (optional)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:63
+msgid "Bitrate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
+msgid "Bogus NX Domain Override"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
+msgid "Bonding Policy"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2877
+#: modules/luci-compat/luasrc/model/network.lua:1421
+msgid "Bridge"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:730
+msgid "Bridge interfaces"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:978
+msgid "Bridge unit number"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:412
+msgid "Bring up on boot"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
+msgid "Broadcast policy (broadcast, 3)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2810
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3799
+msgid "Browse…"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
+msgid "Buffered"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138
+msgid "CA certificate; if empty it will be saved after the first connection."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
+msgid "CLAT configuration failed"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
+msgid "CPU usage (%)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
+msgid "Cached"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
+msgid "Call failed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:187
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:272
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:184
+msgid "Cancel"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
+msgid "Category"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
+msgid "Certificate constraint (Domain)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
+msgid "Certificate constraint (SAN)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513
+msgid "Certificate constraint (Subject)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
+msgid "Certificate constraint (Wildcard)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571
+msgid ""
+"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
+"`logread -f` during handshake for actual values"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
+msgid ""
+"Certificate constraint(s) against DNS SAN values (if available)<br />or "
+"Subject CN (exact match)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
+msgid ""
+"Certificate constraint(s) against DNS SAN values (if available)<br />or "
+"Subject CN (suffix match)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
+msgid ""
+"Certificate constraint(s) via Subject Alternate Name values<br />(supported "
+"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:200
+msgid "Chain"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
+msgid "Changes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4311
+msgid "Changes have been reverted."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
+msgid "Changes the administrator password for accessing the device"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:460
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1663
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:62
+msgid "Channel"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
+msgid "Check filesystems before mount"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
+msgid "Checking archive…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
+msgid "Checking image…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:399
+msgid "Choose mtdblock"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
+msgid ""
+"Choose the firewall zone you want to assign to this interface. Select "
+"<em>unspecified</em> to remove the interface from the associated zone or "
+"fill out the <em>custom</em> field to define a new zone and attach the "
+"interface to it."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
+msgid ""
+"Choose the network(s) you want to attach to this wireless interface or fill "
+"out the <em>custom</em> field to define a new network."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
+msgid "Cipher"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
+msgid "Cisco UDP encapsulation"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:363
+msgid ""
+"Click \"Generate archive\" to download a tar archive of the current "
+"configuration files."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
+msgid ""
+"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
+"FEATURE IS FOR PROFESSIONALS! )"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3665
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033
+msgid "Client"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:52
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:47
+msgid "Client ID to send when requesting DHCP"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:148
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:154
+msgid "Close"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:157
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:141
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:128
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:106
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:115
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:138
+msgid ""
+"Close inactive connection after the given amount of seconds, use 0 to "
+"persist connection"
+msgstr ""
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
+msgid "Close list..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2076
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:317
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:320
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
+msgid "Collecting data..."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
+msgid "Command"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
+msgid "Command OK"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
+msgid "Command failed"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
+msgid "Comment"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634
+msgid ""
+"Complicates key reinstallation attacks on the client side by disabling "
+"retransmission of EAPOL-Key frames that are used to install keys. This "
+"workaround might cause interoperability issues and reduced robustness of key "
+"negotiation especially in environments with heavy traffic load."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98
+msgid "Compute outgoing checksum (optional)."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
+msgid "Configuration"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4190
+msgid "Configuration changes applied."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4128
+msgid "Configuration changes have been rolled back!"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
+msgid "Configuration failed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:175
+msgid "Confirm disconnect"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
+msgid "Confirmation"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
+msgid "Connected"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:9
+#: modules/luci-compat/luasrc/model/network.lua:27
+msgid "Connection attempt failed"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
+msgid "Connection attempt failed."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+msgid "Connection lost"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:117
+msgid "Connections"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
+msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
+msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
+msgid "Contents have been saved."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:742
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:264
+msgid "Continue"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4164
+msgid ""
+"Could not regain access to the device after applying the configuration "
+"changes. You might need to reconnect if you modified network related "
+"settings such as the IP address or wireless security credentials."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
+msgid "Country"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
+msgid "Country Code"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
+msgid "Create / Assign firewall-zone"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
+msgid "Create interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:730
+msgid "Creates a bridge over specified interface(s)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:170
+msgid "Critical"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
+msgid "Cron Log Level"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:533
+msgid "Current power"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
+#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
+#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
+#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
+msgid "Custom Interface"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:36
+msgid "Custom delegated IPv6-prefix"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
+msgid ""
+"Custom files (certificates, scripts) may remain on the system. To prevent "
+"this, perform a factory-reset first."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
+msgid "Custom flash interval (kernel: timer)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
+msgid ""
+"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
+"\">LED</abbr>s if possible."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
+msgid "DAE-Client"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358
+msgid "DAE-Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1363
+msgid "DAE-Secret"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:327
+msgid "DHCP Server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
+msgid "DHCP and DNS"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1982
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
+#: modules/luci-compat/luasrc/model/network.lua:969
+msgid "DHCP client"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619
+msgid "DHCP-Options"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
+msgid "DHCPv6 client"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
+msgid "DHCPv6-Mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
+msgid "DHCPv6-Service"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
+msgid "DNS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
+msgid "DNS forwardings"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:37
+msgid "DNS-Label / FQDN"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
+msgid "DNSSEC"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
+msgid "DNSSEC check unsigned"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
+msgid "DPD Idle Timeout"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
+msgid "DS-Lite AFTR address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:887
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45
+msgid "DSL"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
+msgid "DSL Status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920
+msgid "DSL line mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
+msgid "DTIM Interval"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:58
+msgid "DUID"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
+msgid "Data Rate"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:165
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
+msgid "Debug"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358
+msgid "Default %d"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
+msgid "Default Route"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150
+msgid "Default gateway"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
+msgid "Default is stateless + stateful"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
+msgid "Default state"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619
+msgid ""
+"Define additional DHCP options, for example "
+"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
+"servers to clients."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2237
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2662
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2666
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3154
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2872
+#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
+msgid "Delete"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:180
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:186
+msgid "Delete key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2769
+msgid "Delete request failed: %s"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:847
+msgid "Delete this network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
+msgid "Delivery Traffic Indication Message Interval"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
+msgid "Description"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2868
+msgid "Deselect"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:220
+msgid "Design"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
+msgid "Destination"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
+msgid "Destination port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
+msgid "Destination zone"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
+msgid "Device"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
+msgid "Device Configuration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
+msgid "Device is not active"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:224
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:599
+msgid "Device is restarting…"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
+msgid "Device not managed by ModemManager."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
+msgid "Device unreachable!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
+msgid "Device unreachable! Still waiting for device..."
+msgstr ""
+
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
+msgid "Diagnostics"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:93
+msgid "Dial number"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665
+msgid "Directory"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
+msgid "Disable"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
+msgid ""
+"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
+"this interface."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
+msgid "Disable DNS lookups"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
+msgid "Disable Encryption"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1098
+msgid "Disable Inactivity Polling"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837
+msgid "Disable this network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:107
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:99
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:95
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
+msgid "Disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112
+msgid "Disassociate On Low Acknowledgement"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
+msgid "Discard upstream RFC1918 responses"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:197
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:665
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+msgid "Disconnect"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
+msgid "Disconnection attempt failed"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
+msgid "Disconnection attempt failed."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:606
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2861
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3309
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4045
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4134
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330
+msgid "Dismiss"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
+msgid "Distance Optimization"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
+msgid "Distance to farthest network member in meters."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
+msgid ""
+"Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
+"\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
+"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
+"firewalls"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
+msgid "Do not cache negative replies, e.g. for not existing domains"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:84
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86
+msgid "Do not create host route to peer (optional)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
+msgid "Do not forward requests that cannot be answered by public name servers"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
+msgid "Do not forward reverse lookups for local networks"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
+msgid "Do you really want to delete \"%s\" ?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:181
+msgid "Do you really want to delete the following SSH key?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
+msgid "Do you really want to erase all settings?"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2753
+msgid "Do you really want to recursively delete the directory \"%s\" ?"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
+msgid "Domain required"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
+msgid "Domain whitelist"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
+msgid "Don't Fragment"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
+msgid ""
+"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
+"<abbr title=\"Domain Name System\">DNS</abbr>-Name"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
+msgid "Down"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
+msgid "Down Delay"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
+msgid "Download backup"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
+msgid "Download mtdblock"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
+msgid "Downstream SNR offset"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2620
+msgid "Drag to reorder"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
+msgid "Drop Duplicate Frames"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
+msgid "Dropbear Instance"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
+msgid ""
+"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
+"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
+msgid "Dual-Stack Lite (RFC6333)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595
+msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
+msgid "Dynamic tunnel"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595
+msgid ""
+"Dynamically allocate DHCP addresses for clients. If disabled, only clients "
+"having static leases will be served."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
+msgid "EA-bits length"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1491
+msgid "EAP-Method"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2640
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2643
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3017
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:339
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:844
+msgid "Edit"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/error.htm:13
+msgid ""
+"Edit the raw configuration data above to fix any error and hit \"Save\" to "
+"reload the page."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842
+msgid "Edit this network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
+msgid "Edit wireless network"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
+msgid "Emergency"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
+msgid "Enable"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
+msgid ""
+"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
+"snooping"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460
+msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:367
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
+msgid "Enable DNS lookups"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
+msgid "Enable Dynamic Shuffling Of Flows"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
+msgid "Enable HE.net dynamic endpoint update"
+msgstr ""
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:93
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
+msgid "Enable IPv6 negotiation on the PPP link"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
+msgid "Enable Jumbo Frame passthrough"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:240
+msgid "Enable NTP client"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
+msgid "Enable Single DES"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
+msgid "Enable TFTP server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
+msgid "Enable VLAN functionality"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
+msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634
+msgid "Enable key reinstallation (KRACK) countermeasures"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
+msgid "Enable learning and aging"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
+msgid "Enable mirroring of incoming packets"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
+msgid "Enable mirroring of outgoing packets"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:882
+msgid ""
+"Enable packet steering across all CPUs. May help or hinder network speed."
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75
+msgid "Enable rx checksum"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
+msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837
+msgid "Enable this network"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:79
+msgid "Enable tx checksum"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
+msgid "Enabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
+msgid "Enables IGMP snooping on this bridge"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
+msgid ""
+"Enables fast roaming among access points that belong to the same Mobility "
+"Domain"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460
+msgid "Enables the Spanning Tree Protocol on this bridge"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
+msgid "Encapsulation limit"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:973
+msgid "Encapsulation mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1117
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1666
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:45
+msgid "Encryption"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:161
+msgid "Endpoint Host"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:165
+msgid "Endpoint Port"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
+msgid "Enter custom value"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
+msgid "Enter custom values"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
+msgid "Erasing..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:169
+msgid "Error"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
+msgid "Errored seconds (ES)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2889
+#: modules/luci-compat/luasrc/model/network.lua:1433
+msgid "Ethernet Adapter"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2880
+#: modules/luci-compat/luasrc/model/network.lua:1423
+msgid "Ethernet Switch"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
+msgid "Every 30 seconds (slow, 0)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
+msgid "Every second (fast, 1)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
+msgid "Exclude interfaces"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
+msgid "Expand hosts"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:198
+msgid "Expecting a hexadecimal assignment hint"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
+msgid "Expecting: %s"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
+msgid "Expecting: non-empty value"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
+msgid "Expires"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591
+msgid ""
+"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
+msgid "External"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482
+msgid "External R0 Key Holder List"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486
+msgid "External R1 Key Holder List"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:146
+msgid "External system log server"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:151
+msgid "External system log server port"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:156
+msgid "External system log server protocol"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
+msgid "Extra SSH command options"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83
+msgid "Extra pppd options"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81
+msgid "Extra sstpc options"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456
+msgid "FT over DS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1457
+msgid "FT over the Air"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1454
+msgid "FT protocol"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
+msgid "Failed to change the system password."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4122
+msgid "Failed to confirm apply within %ds, waiting for rollback…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
+msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
+msgid "File"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2620
+msgid "File not accessible"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2811
+msgid "Filename"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
+msgid "Filename of the boot image advertised to clients"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
+msgid "Filesystem"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
+msgid "Filter private"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
+msgid "Filter useless"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
+msgid "Filtering for all slaves, no validation"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
+msgid "Filtering for all slaves, validation only for active slave"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
+msgid "Filtering for all slaves, validation only for backup slaves"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
+msgid "Finalizing failed"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
+msgid ""
+"Find all currently attached filesystems and swap and replace configuration "
+"with defaults based on what was detected"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:820
+msgid "Find and join network"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
+msgid "Finish"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
+msgid "Firewall"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102
+msgid "Firewall Mark"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:326
+msgid "Firewall Settings"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
+msgid "Firewall Status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
+msgid "Firmware File"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
+msgid "Firmware Version"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
+msgid "Fixed source port for outbound DNS queries"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421
+msgid "Flash image..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279
+msgid "Flash image?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
+msgid "Flash new firmware image"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:356
+msgid "Flash operations"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290
+msgid "Flashing…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
+msgid "Force"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
+msgid "Force 40MHz mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158
+msgid "Force CCMP (AES)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
+msgid "Force DHCP on this network even if another server is detected."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159
+msgid "Force TKIP"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
+msgid "Force TKIP and CCMP (AES)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
+msgid "Force link"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
+msgid "Force upgrade"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
+msgid "Force use of NAT-T"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:8
+msgid "Form token mismatch"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
+msgid "Forward DHCP traffic"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
+msgid "Forward Error Correction Seconds (FECS)"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
+msgid "Forward broadcast traffic"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
+msgid "Forward mesh peer traffic"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
+msgid "Forwarding mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
+msgid "Fragmentation Threshold"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:115
+msgid ""
+"Further information about WireGuard interfaces and peers at <a href='http://"
+"wireguard.com'>wireguard.com</a>."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:62
+msgid "GHz"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
+msgid "GPRS only"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
+msgid "GRE tunnel over IPv4"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
+msgid "GRE tunnel over IPv6"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
+msgid "GRETAP tunnel over IPv4"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
+msgid "GRETAP tunnel over IPv6"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
+msgid "Gateway"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
+msgid "Gateway Ports"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:11
+#: modules/luci-compat/luasrc/model/network.lua:29
+msgid "Gateway address is invalid"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124
+msgid "Gateway metric"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:323
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
+msgid "General Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:865
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:921
+msgid "General Setup"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
+msgid "Generate Config"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
+msgid "Generate Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
+msgid "Generate PMK locally"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
+msgid "Generate archive"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
+msgid "Given password confirmation did not match, password not changed!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
+msgid "Global Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
+msgid "Global network options"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:58
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284
+msgid "Go to password configuration..."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2562
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3336
+#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
+msgid "Go to relevant configuration page"
+msgstr ""
+
+#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:33
+msgid "Grant access to DHCP configuration"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:102
+msgid "Grant access to DHCP status display"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
+msgid "Grant access to DSL status display"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
+msgid "Grant access to LuCI OpenConnect procedures"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
+msgid "Grant access to LuCI Wireguard procedures"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
+msgid "Grant access to SSH configuration"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
+msgid "Grant access to basic LuCI procedures"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
+msgid "Grant access to crontab configuration"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
+msgid "Grant access to firewall status"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
+msgid "Grant access to flash operations"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:86
+msgid "Grant access to main status display"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
+msgid "Grant access to mmcli"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
+msgid "Grant access to mount configuration"
+msgstr ""
+
+#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
+msgid "Grant access to network configuration"
+msgstr ""
+
+#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:46
+msgid "Grant access to network diagnostic tools"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
+msgid "Grant access to network status information"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
+msgid "Grant access to process status"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
+msgid "Grant access to realtime statistics"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
+msgid "Grant access to startup configuration"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
+msgid "Grant access to system configuration"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
+msgid "Grant access to system logs"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
+msgid "Grant access to the system route status"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
+msgid "Grant access to wireless status display"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
+msgid "Group Password"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
+msgid "Guest"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
+msgid "HE.net password"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
+msgid "HE.net username"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
+msgid "Hang Up"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
+msgid "Header Error Code Errors (HEC)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
+msgid "Heartbeat interval (kernel: heartbeat)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
+msgid ""
+"Here you can configure the basic aspects of your device like its hostname or "
+"the timezone."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1066
+msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:264
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:303
+msgid "Hide empty chains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2070
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:56
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+msgid "Host"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
+msgid "Host entries"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
+msgid "Host expiry timeout"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
+msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102
+msgid "Host-Uniq tag content"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:29
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
+msgid "Hostname"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
+msgid "Hostname to send when requesting DHCP"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
+msgid "Hostnames"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
+msgid "Hybrid"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
+msgid "ID used to uniquely identify the VXLAN"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
+msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
+msgid "IKE DH Group"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
+msgid "IP Addresses"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:80
+msgid "IP Protocol"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114
+msgid "IP Type"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
+msgid "IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:10
+#: modules/luci-compat/luasrc/model/network.lua:28
+msgid "IP address is invalid"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:13
+#: modules/luci-compat/luasrc/model/network.lua:31
+msgid "IP address is missing"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
+msgid "IPv4"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316
+msgid "IPv4 Firewall"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
+msgid "IPv4 Upstream"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
+msgid "IPv4 address"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
+msgid "IPv4 assignment length"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
+msgid "IPv4 broadcast"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
+msgid "IPv4 gateway"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
+msgid "IPv4 netmask"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:291
+msgid "IPv4 network in address/netmask notation"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
+msgid "IPv4 only"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
+msgid "IPv4 prefix"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
+msgid "IPv4 prefix length"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
+msgid "IPv4+IPv6"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:30
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
+msgid "IPv4-Address"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
+msgid "IPv4-Gateway"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
+msgid "IPv4-in-IPv4 (RFC2003)"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
+msgid "IPv4/IPv6 (both - defaults to IPv4)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
+msgid "IPv6"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319
+msgid "IPv6 Firewall"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
+msgid "IPv6 Neighbours"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
+msgid "IPv6 Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
+msgid "IPv6 ULA-Prefix"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
+msgid "IPv6 Upstream"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:205
+msgid "IPv6 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:31
+msgid "IPv6 assignment hint"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
+msgid "IPv6 assignment length"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:210
+msgid "IPv6 gateway"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:296
+msgid "IPv6 network in address/netmask notation"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
+msgid "IPv6 only"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
+msgid "IPv6 prefix"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
+msgid "IPv6 prefix length"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:214
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
+msgid "IPv6 routed prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:218
+msgid "IPv6 suffix"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
+msgid "IPv6 support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
+msgid "IPv6-Address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
+msgid "IPv6-PD"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
+msgid "IPv6-in-IPv4 (RFC4213)"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
+msgid "IPv6-over-IPv4 (6rd)"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
+msgid "IPv6-over-IPv4 (6to4)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1593
+msgid "Identity"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
+msgid "If checked, 1DES is enabled"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
+msgid "If checked, adds \"+ipv6\" to the pppd options"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
+msgid "If checked, encryption is disabled"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
+msgid ""
+"If specified, mount the device by its UUID instead of a fixed device node"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
+msgid ""
+"If specified, mount the device by the partition label instead of a fixed "
+"device node"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:108
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:150
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:61
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:74
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:97
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61
+msgid "If unchecked, no default route is configured"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:64
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:77
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:100
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:69
+msgid "If unchecked, the advertised DNS server addresses are ignored"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
+msgid ""
+"If your physical memory is insufficient unused data can be temporarily "
+"swapped to a swap-device resulting in a higher amount of usable <abbr title="
+"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
+"slow process as the swap-device cannot be accessed with the high datarates "
+"of the <abbr title=\"Random Access Memory\">RAM</abbr>."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
+msgid "Ignore <code>/etc/hosts</code>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
+msgid "Ignore interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
+msgid "Ignore resolve file"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
+msgid "Image"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
+msgid "In"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:13
+msgid ""
+"In order to prevent unauthorized access to the system, your request has been "
+"blocked. Click \"Continue »\" below to return to the previous page."
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:157
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:141
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:128
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:106
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:115
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:138
+msgid "Inactivity timeout"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265
+msgid "Inbound:"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:90
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:95
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97
+msgid "Incoming checksum"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+msgid "Incoming key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
+msgid "Incoming serialization"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
+msgid "Info"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
+msgid "Information"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
+msgid "Initialization failure"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
+msgid "Initscript"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
+msgid "Initscripts"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
+msgid "Inner certificate constraint (Domain)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
+msgid "Inner certificate constraint (SAN)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571
+msgid "Inner certificate constraint (Subject)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
+msgid "Inner certificate constraint (Wildcard)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:268
+msgid "Install protocol extensions..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+msgid ""
+"Instead of joining any network with a matching SSID, only connect to the "
+"BSSID <code>%h</code>."
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/map.htm:43
+msgid "Insufficient permissions to read UCI configuration."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:464
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:739
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
+msgid "Interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
+msgid "Interface %q device auto-migrated from %q to %q."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
+msgid "Interface Configuration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:110
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
+msgid "Interface has %d pending changes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
+msgid "Interface is disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:64
+msgid "Interface is marked for deletion"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:209
+msgid "Interface is reconnecting..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:193
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:203
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:209
+msgid "Interface is shutting down..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:253
+msgid "Interface is starting..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:256
+msgid "Interface is stopping..."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
+msgid "Interface name"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:122
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:272
+msgid "Interface not present or not connected yet."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:308
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:335
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
+msgid "Interfaces"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
+msgid "Internal"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error500.htm:8
+msgid "Internal Server Error"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
+msgid "Interval For Sending Learning Packets"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
+msgid "Invalid"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
+msgid "Invalid Base64 key string"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
+msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
+msgid "Invalid VLAN ID given! Only unique IDs are allowed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
+msgid "Invalid argument"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
+msgid ""
+"Invalid bearer list. Possibly too many bearers created. This protocol "
+"supports one and only one bearer."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
+msgid "Invalid command"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:106
+msgid "Invalid hexadecimal value"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:12
+msgid "Invalid username and/or password! Please try again."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:71
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:76
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81
+msgid "Invalid value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
+msgid "Isolate Clients"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
+msgid ""
+"It appears that you are trying to flash an image that does not fit into the "
+"flash memory, please verify the image file!"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:291
+msgid "JavaScript required!"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
+msgid "Join Network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
+msgid "Join Network: Wireless Scan"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+msgid "Joining Network: %q"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
+msgid "Keep settings and retain the current configuration"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
+msgid "Kernel Log"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
+msgid "Kernel Version"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
+msgid "Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1399
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412
+msgid "Key #%d"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+msgid "Key for incoming packets (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
+msgid "Key for outgoing packets (optinal)."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
+msgid "Kill"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
+msgid "L2TP"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
+msgid "L2TP Server"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
+msgid "LACPDU Packets"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:102
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:76
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:89
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:112
+msgid "LCP echo failure threshold"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:115
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:102
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:125
+msgid "LCP echo interval"
+msgstr ""
+
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
+msgid "LED Configuration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:974
+msgid "LLC"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
+msgid "Label"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:209
+msgid "Language"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
+msgid "Language and Style"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
+msgid "Latency"
+msgstr ""
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
+msgid "Leaf"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591
+msgid "Lease time"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:32
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:59
+msgid "Lease time remaining"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
+msgid "Leasefile"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
+msgid "Leave empty to autodetect"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
+msgid "Leave empty to use the current WAN address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4030
+msgid "Legend:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
+msgid "Limit"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
+msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
+msgid "Limit listening to these interfaces, and loopback."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
+msgid "Line Attenuation (LATN)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
+msgid "Line Mode"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
+msgid "Line State"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
+msgid "Line Uptime"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
+msgid "Link Aggregation (Channel Bonding)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
+msgid "Link Monitoring"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
+msgid "Link On"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
+msgid ""
+"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
+"requests to"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482
+msgid ""
+"List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
+"Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
+"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
+"from the R0KH that the STA used during the Initial Mobility Domain "
+"Association."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486
+msgid ""
+"List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
+"as 6 octets with colons,128-bit key as hex string. <br />This list is used "
+"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
+"R0KH. This is also the list of authorized R1KHs in the MD that can request "
+"PMK-R1 keys."
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
+msgid "List of SSH key files for auth"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
+msgid "List of domains to allow RFC1918 responses for"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
+msgid "List of domains to force to an IP address."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
+msgid "List of hosts that supply bogus NX domain results"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
+msgid "Listen Interfaces"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
+msgid "Listen Port"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
+msgid "Listen only on the given interface or, if unspecified, on all"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
+msgid "Listening port for inbound DNS queries"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:87
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
+msgid "Load"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
+msgid "Load Average"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+msgid "Loading directory contents…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:1948
+#: modules/luci-base/luasrc/view/view.htm:4
+#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+msgid "Loading view…"
+msgstr ""
+
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
+msgid "Local IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:12
+#: modules/luci-compat/luasrc/model/network.lua:30
+msgid "Local IP address is invalid"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
+msgid "Local IP address to assign"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
+msgid "Local IPv4 address"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
+msgid "Local IPv6 address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
+msgid "Local Service Only"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
+msgid "Local Startup"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
+msgid "Local Time"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
+msgid "Local domain"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
+msgid ""
+"Local domain specification. Names matching this domain are never forwarded "
+"and are resolved from DHCP or hosts files only"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
+msgid "Local domain suffix appended to DHCP names and hosts file entries"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
+msgid "Local server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
+msgid ""
+"Localise hostname depending on the requesting subnet if multiple IPs are "
+"available"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
+msgid "Localise queries"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+msgid "Lock to BSSID"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:164
+msgid "Log output level"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
+msgid "Log queries"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
+msgid "Logging"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+msgid ""
+"Logical network from which to select the local endpoint if local IPv6 "
+"address is empty and no WAN IPv6 is available (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+msgid "Logical network to which the tunnel will be added (bridged) (optional)."
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:38
+msgid "Login"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
+msgid "Logout"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
+msgid "Loss of Signal Seconds (LOSS)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581
+msgid "Lowest leased address as offset from the network address."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
+msgid "MAC"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
+msgid "MAC Address For The Actor"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2069
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:31
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:139
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:173
+msgid "MAC-Address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
+msgid "MAC-Address Filter"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
+msgid "MAC-Filter"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
+msgid "MAC-List"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
+msgid "MAP / LW4over6"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
+msgid "MAP rule is invalid"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:321
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:322
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
+msgid "MBit/s"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
+msgid "MD5"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:71
+msgid "MHz"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
+msgid "MII"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
+msgid "MII / ETHTOOL ioctls"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
+msgid "MII Interval"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
+msgid "MTU"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
+msgid ""
+"Make sure to clone the root filesystem using something like the commands "
+"below:"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
+msgid "Manual"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3664
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642
+msgid "Master"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
+msgid "Max. Attainable Data Rate (ATTNDR)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1107
+msgid "Maximum allowed Listen Interval"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
+msgid "Maximum allowed number of active DHCP leases"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
+msgid "Maximum allowed number of concurrent DNS queries"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
+msgid "Maximum allowed size of EDNS.0 UDP packets"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:112
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:104
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:93
+msgid "Maximum amount of seconds to wait for the modem to become ready"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
+msgid "Maximum number of leased addresses."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:886
+msgid "Maximum transmit power"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:63
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:71
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
+msgid "Mbit/s"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
+msgid "Medium"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
+msgid "Memory"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
+msgid "Memory usage (%)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3667
+msgid "Mesh"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
+msgid "Mesh ID"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
+msgid "Mesh Id"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+msgid "Method not found"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
+msgid "Method of link monitoring"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
+msgid "Method to determine link status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
+msgid "Metric"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
+msgid "Minimum Number of Links"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
+msgid "Mirror monitor port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
+msgid "Mirror source port"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
+msgid "Mobile Data"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442
+msgid "Mobility Domain"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:442
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:926
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:43
+msgid "Mode"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
+msgid "Model"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
+msgid "Modem bearer teardown in progress."
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
+msgid ""
+"Modem connection in progress. Please wait. This process will timeout after 2 "
+"minutes."
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
+msgid "Modem default"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
+msgid "Modem device"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
+msgid "Modem disconnection in progress. Please wait."
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
+msgid "Modem information query failed"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:112
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:104
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:93
+msgid "Modem init timeout"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
+msgid "Modem is disabled."
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
+msgid "ModemManager"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3668
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
+msgid "Monitor"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
+msgid "More Characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2504
+msgid "More…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
+msgid "Mount Point"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
+msgid "Mount Points"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
+msgid "Mount Points - Mount Entry"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
+msgid "Mount Points - Swap Entry"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
+msgid ""
+"Mount Points define at which point a memory device will be attached to the "
+"filesystem"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
+msgid "Mount attached devices"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
+msgid "Mount filesystems not specifically configured"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
+msgid "Mount options"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
+msgid "Mount point"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
+msgid "Mount swap not specifically configured"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
+msgid "Mounted file systems"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
+msgid "Move down"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
+msgid "Move up"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
+msgid "NAS ID"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
+msgid "NAT-T Mode"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
+msgid "NAT64 Prefix"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
+msgid "NCM"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:637
+msgid "NDP-Proxy"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
+msgid "NT Domain"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:274
+msgid "NTP server candidates"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2542
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3785
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:710
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
+msgid "Name"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+msgid "Name of the new network"
+msgstr ""
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
+msgid "Navigation"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2068
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:381
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:138
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:162
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
+msgid "Network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
+msgid "Network Utilities"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
+msgid "Network boot image"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
+msgid "Network device activity (kernel: netdev)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:15
+#: modules/luci-compat/luasrc/model/network.lua:33
+msgid "Network device is not present"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+msgid "Network interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
+msgid "New interface for \"%s\" can not be created: %s"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713
+msgid "New interface name…"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
+msgid "Next »"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3643
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
+msgid "No"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:562
+msgid "No DHCP Server configured for this interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
+msgid "No Encryption"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
+msgid "No Host Routes"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
+msgid "No NAT-T"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
+msgid "No RX signal"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
+msgid "No client associated"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+msgid "No data received"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2878
+msgid "No entries in this directory"
+msgstr ""
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
+msgid "No files found"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:84
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86
+msgid "No host route"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:241
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
+msgid "No information available"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
+msgid "No matching prefix delegation"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
+msgid "No more slaves available"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
+msgid "No more slaves available, can not save interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
+msgid "No negative cache"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:55
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:279
+msgid "No password set!"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:130
+msgid "No peers defined yet"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
+msgid "No public keys present yet."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:90
+msgid "No rules in this chain."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
+msgid "No validation or filtering"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:152
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
+msgid "No zone assigned"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:174
+msgid "Noise"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
+msgid "Noise Margin (SNR)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:270
+msgid "Noise:"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
+msgid "Non Pre-emptive CRC errors (CRC_P)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
+msgid "Non-wildcard"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100
+msgid "None"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
+msgid "Normal"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error404.htm:8
+msgid "Not Found"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
+msgid "Not associated"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
+msgid "Not connected"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:120
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:280
+msgid "Not present"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
+msgid "Not started on boot"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+msgid "Not supported"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
+msgid "Notice"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
+msgid "Nslookup"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
+msgid "Number of IGMP membership reports"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
+msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
+msgid "Number of parallel threads used for compression"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
+msgid "Number of peer notifications after failover event"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
+msgid "Obfuscated Group Password"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
+msgid "Obfuscated Password"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:105
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:93
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
+msgid "Obtain IPv6-Address"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
+msgid "Off"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
+msgid "Off-State Delay"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
+msgid "On"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
+msgid "On-Link route"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
+msgid "On-State Delay"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
+msgid "One of hostname or mac address must be specified!"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:466
+msgid "One of the following: %s"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
+msgid "One or more fields contain invalid values!"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/map.htm:32
+msgid "One or more invalid/required values on tab"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
+msgid "One or more required fields have no value!"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
+msgid ""
+"Only if current active slave fails and the primary slave is up (failure, 2)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
+msgid "Open list..."
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
+msgid "OpenConnect (CISCO AnyConnect)"
+msgstr ""
+
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
+msgid "OpenFortivpn"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
+msgid "Operating frequency"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1971
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3653
+msgid "Option \"%s\" contains an invalid input value."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1984
+msgid "Option \"%s\" must not be empty."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4037
+msgid "Option changed"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4039
+msgid "Option removed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1609
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
+msgid "Optional"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102
+msgid ""
+"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
+"starting with <code>0x</code>."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:218
+msgid ""
+"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
+"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
+"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
+"for the interface."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
+msgid ""
+"Optional. Base64-encoded preshared key. Adds in an additional layer of "
+"symmetric-key cryptography for post-quantum resistance."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
+msgid "Optional. Create routes for Allowed IPs for this peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
+msgid "Optional. Description of peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
+msgid "Optional. Do not create host routes to peers."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:161
+msgid ""
+"Optional. Host of peer. Names are resolved prior to bringing up the "
+"interface."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
+msgid "Optional. Maximum Transmission Unit of tunnel interface."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:165
+msgid "Optional. Port of peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:169
+msgid ""
+"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
+"Recommended value if this device is behind a NAT is 25."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
+msgid "Optional. UDP port used for outgoing and incoming packets."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
+msgid "Options"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:346
+msgid "Other:"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
+msgid "Out"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275
+msgid "Outbound:"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98
+msgid "Outgoing checksum"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
+msgid "Outgoing key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100
+msgid "Outgoing serialization"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
+msgid "Output Interface"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
+msgid "Output zone"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:57
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:222
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:40
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:50
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:76
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:71
+msgid "Override MAC address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:61
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:226
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:62
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:67
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:132
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:110
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:119
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:97
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:77
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
+msgid "Override MTU"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:72
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:67
+msgid "Override TOS"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:67
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:72
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
+msgid "Override TTL"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
+msgid "Override default interface name"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
+msgid "Override the gateway in DHCP responses"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603
+msgid ""
+"Override the netmask sent to clients. Normally it is calculated from the "
+"subnet that is served."
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
+msgid "Override the table used for internal routes"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
+msgid "Overview"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2721
+msgid "Overwrite existing file \"%s\" ?"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
+msgid "Owner"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
+msgid "PAP/CHAP (both)"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
+msgid "PAP/CHAP password"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:77
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
+msgid "PAP/CHAP username"
+msgstr ""
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
+msgid "PDP Type"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
+msgid "PID"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
+msgid "PIN"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:21
+#: modules/luci-compat/luasrc/model/network.lua:39
+msgid "PIN code rejected"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1477
+msgid "PMK R1 Push"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
+msgid "PPP"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
+msgid "PPPoA Encapsulation"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
+msgid "PPPoATM"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
+msgid "PPPoE"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
+msgid "PPPoSSH"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
+msgid "PPtP"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
+msgid "PSID offset"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
+msgid "PSID-bits length"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918
+msgid "PTM/EFM (Packet Transfer Mode)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:882
+msgid "Packet Steering"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53
+msgid "Packets"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
+msgid "Packets To Transmit Before Moving To Next Slave"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:152
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
+msgid "Part of zone %q"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:29
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1599
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+msgid "Password"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
+msgid "Password authentication"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1531
+msgid "Password of Private Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1589
+msgid "Password of inner Private Key"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
+msgid "Password strength"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
+msgid "Password2"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:239
+msgid "Paste or drag SSH key file…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
+msgid "Path to Client-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
+msgid "Path to Private Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
+msgid "Path to inner CA-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
+msgid "Path to inner Client-Certificate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
+msgid "Path to inner Private Key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2731
+msgid "Paused"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:271
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:281
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:342
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:352
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:237
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:247
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:257
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294
+msgid "Peak:"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
+msgid "Peer IP address to assign"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:14
+#: modules/luci-compat/luasrc/model/network.lua:32
+msgid "Peer address is missing"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:115
+msgid "Peers"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
+msgid "Perfect Forward Secrecy"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100
+msgid "Perform outgoing packets serialization (optional)."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
+msgid "Perform reboot"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:378
+msgid "Perform reset"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+msgid "Permission denied"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:169
+msgid "Persistent Keep Alive"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:288
+msgid "Phy Rate:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:325
+msgid "Physical Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
+msgid "Ping"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63
+msgid "Pkts."
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:19
+msgid "Please enter your username and password."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3768
+msgid "Please select the file to upload."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53
+msgid "Policy"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
+msgid "Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
+msgid "Port status:"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:492
+msgid "Potential negation of: %s"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38
+msgid "Power Management Mode"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
+msgid "Pre-emptive CRC errors (CRCP_P)"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
+msgid "Prefer LTE"
+msgstr ""
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
+msgid "Prefer UMTS"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
+msgid "Prefix Delegated"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
+msgid "Preshared Key"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:102
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:76
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:89
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:112
+msgid ""
+"Presume peer to be dead after given amount of LCP echo failures, use 0 to "
+"ignore failures"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
+msgid "Prevent listening on these interfaces."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
+msgid "Prevents client-to-client communication"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
+msgid "Primary Slave"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
+msgid ""
+"Primary becomes active slave when it comes back up if speed and duplex "
+"better than current slave (better, 1)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
+msgid "Primary becomes active slave whenever it comes back up (always, 0)"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
+msgid "Private Key"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
+msgid "Processes"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
+msgid "Profile"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
+msgid "Prot."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:79
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:397
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:727
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:382
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
+msgid "Protocol"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:265
+msgid "Provide NTP server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:825
+msgid "Provide new network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004
+msgid "Pseudo Ad-Hoc (ahdemo)"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139
+msgid "Public Key"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:275
+msgid ""
+"Public keys allow for the passwordless SSH logins with a higher security "
+"compared to the use of plain passwords. In order to upload a new key to the "
+"device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
+"code> file into the input field."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:214
+msgid "Public prefix routed to this device for distribution to clients."
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
+msgid "QMI Cellular"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:41
+msgid "Quality"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
+msgid ""
+"Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
+"servers"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465
+msgid "R0 Key Lifetime"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
+msgid "R1 Key Holder"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
+msgid "RFC3947 NAT-T mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
+msgid "RSSI threshold for joining"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
+msgid "RTS/CTS Threshold"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
+msgid "RX"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+msgid "RX Rate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+msgid "RX Rate / TX Rate"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
+msgid "Radius-Accounting-Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
+msgid "Radius-Accounting-Secret"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
+msgid "Radius-Accounting-Server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
+msgid "Radius-Authentication-Port"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
+msgid "Radius-Authentication-Secret"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
+msgid "Radius-Authentication-Server"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102
+msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
+msgid ""
+"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
+"Configuration Protocol\">DHCP</abbr>-Server"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:402
+msgid "Really switch protocol?"
+msgstr ""
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
+msgid "Realtime Graphs"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448
+msgid "Reassociation Deadline"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
+msgid "Rebind protection"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
+msgid "Reboot"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
+msgid "Rebooting…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
+msgid "Reboots the operating system of your device"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
+msgid "Receive"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
+msgid "Recommended. IP addresses of the WireGuard interface."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:348
+msgid "Reconnect this interface"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56
+msgid "References"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2725
+msgid "Refreshing"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
+msgid "Relay"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
+msgid "Relay Bridge"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
+msgid "Relay between networks"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
+msgid "Relay bridge"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
+msgid "Remote IPv4 address"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
+msgid "Remote IPv4 address or FQDN"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
+msgid "Remote IPv6 address"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
+msgid "Remote IPv6 address or FQDN"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
+msgid "Remove"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+msgid "Replace wireless configuration"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
+msgid "Request IPv6-address"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
+msgid "Request IPv6-prefix of length"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+msgid "Request timeout"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:90
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:95
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97
+msgid "Require incoming checksum (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
+msgid "Require incoming packets serialization (optional)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
+msgid "Required"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
+msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
+msgid "Required. Base64-encoded private key for this interface."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139
+msgid "Required. Base64-encoded public key of peer."
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148
+msgid ""
+"Required. IP addresses and prefixes that this peer is allowed to use inside "
+"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
+"routes through the tunnel."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
+msgid "Requires hostapd"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1246
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1247
+msgid "Requires hostapd with EAP Suite-B support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1244
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1245
+msgid "Requires hostapd with EAP support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1248
+msgid "Requires hostapd with OWE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1242
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1243
+msgid "Requires hostapd with SAE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
+msgid "Requires hostapd with WEP support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
+msgid ""
+"Requires the 'full' version of wpad/hostapd and support from the wifi driver "
+"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
+msgid ""
+"Requires upstream supports DNSSEC; verify unsigned domain responses really "
+"come from unsigned domains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1253
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1254
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1255
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1267
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1268
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1269
+msgid "Requires wpa-supplicant"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1261
+msgid "Requires wpa-supplicant with EAP Suite-B support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1258
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1259
+msgid "Requires wpa-supplicant with EAP support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1262
+msgid "Requires wpa-supplicant with OWE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1256
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1257
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1272
+msgid "Requires wpa-supplicant with SAE support"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252
+msgid "Requires wpa-supplicant with WEP support"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
+msgid "Reselection policy for primary slave"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2203
+#: modules/luci-base/luasrc/view/sysauth.htm:39
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:30
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
+msgid "Reset"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:308
+msgid "Reset Counters"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
+msgid "Reset to defaults"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
+msgid "Resolv and Hosts Files"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
+msgid "Resolve file"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+msgid "Resource not found"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:350
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:817
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
+msgid "Restart"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
+msgid "Restart Firewall"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:815
+msgid "Restart radio interface"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
+msgid "Restore"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
+msgid "Restore backup"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+msgid "Reveal/hide password"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+msgid "Revert"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4138
+msgid "Revert changes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4320
+msgid "Revert request failed with status <code>%h</code>"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4300
+msgid "Reverting configuration…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
+msgid "Root directory for files served via TFTP"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
+msgid "Root preparation"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
+msgid "Round-Robin policy (balance-rr, 0)"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
+msgid "Route Allowed IPs"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
+msgid "Route table"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
+msgid "Route type"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:625
+msgid "Router Advertisement-Service"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
+msgid "Router Password"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:194
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
+msgid "Routes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
+msgid ""
+"Routes specify over which interface and gateway a certain host or network "
+"can be reached."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:206
+msgid "Rule"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
+msgid "Run a filesystem check before mounting the device"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
+msgid "Run filesystem check"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2364
+msgid "Runtime error"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
+msgid "SHA256"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:175
+msgid "SNR"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
+msgid "SSH Access"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
+msgid "SSH server address"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
+msgid "SSH server port"
+msgstr ""
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
+msgid "SSH username"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
+msgid "SSH-Keys"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:42
+msgid "SSID"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
+msgid "SSTP"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
+msgid "SSTP Server"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
+msgid "SWAP"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2866
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2198
+#: modules/luci-compat/luasrc/view/cbi/error.htm:17
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
+#: modules/luci-compat/luasrc/view/cbi/header.htm:20
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:435
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
+msgid "Save"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2180
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
+msgid "Save & Apply"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:602
+msgid "Save error"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
+msgid "Save mtdblock"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
+msgid "Save mtdblock contents"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:822
+msgid "Scan"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
+msgid "Scheduled Tasks"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4033
+msgid "Section added"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4035
+msgid "Section removed"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
+msgid "See \"mount\" manpage for details"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
+msgid ""
+"Select 'Force upgrade' to flash the image even if the image format check "
+"fails. Use only if you are sure that the firmware is correct and meant for "
+"your device!"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2622
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2762
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2927
+msgid "Select file…"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
+msgid "Selects the transmit hash policy to use for slave selection"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:115
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:102
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:125
+msgid ""
+"Send LCP echo requests at the given interval in seconds, only effective in "
+"conjunction with failure threshold"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
+msgid "Server Settings"
+msgstr ""
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
+msgid "Service Name"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:87
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:71
+msgid "Service Type"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
+msgid "Services"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668
+msgid "Session expired"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
+msgid "Set VPN as Default Route"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
+msgid ""
+"Set interface properties regardless of the link carrier (If set, carrier "
+"sense events do not invoke hotplug handlers)."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
+msgid "Set same MAC Address to all slaves"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642
+msgid "Set this interface as master for the dhcpv6 relay."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
+msgid "Set to currently active slave (active, 1)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
+msgid "Set to first slave added to the bond (follow, 2)"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
+msgid "Setting PLMN failed"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
+msgid "Setting operation mode failed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:565
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
+msgid "Setup DHCP Server"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
+msgid "Severely Errored Seconds (SES)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80
+msgid "Short GI"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
+msgid "Short Preamble"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
+msgid "Show current backup file list"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:264
+msgid "Show empty chains"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:354
+msgid "Shutdown this interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:41
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:173
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:179
+msgid "Signal"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+msgid "Signal / Noise"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
+msgid "Signal Attenuation (SATN)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:260
+msgid "Signal:"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3786
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
+msgid "Size"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
+msgid "Size of DNS query cache"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
+msgid "Size of the ZRam device in megabytes"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:18
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
+msgid "Skip"
+msgstr ""
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:36
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
+msgid "Skip to content"
+msgstr ""
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:35
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
+msgid "Skip to navigation"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
+msgid "Slave Interfaces"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2883
+#: modules/luci-compat/luasrc/model/network.lua:1428
+msgid "Software VLAN"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/header.htm:5
+msgid "Some fields are invalid, cannot save values!"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error404.htm:9
+msgid "Sorry, the object you requested was not found."
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error500.htm:9
+msgid "Sorry, the server encountered an unexpected error."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414
+msgid ""
+"Sorry, there is no sysupgrade support present; a new firmware image must be "
+"flashed manually. Please refer to the wiki for device specific install "
+"instructions."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
+msgid "Source"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
+msgid "Source Address"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+msgid "Source interface"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
+msgid ""
+"Specifies that duplicate frames (received on inactive ports) should be "
+"dropped or delivered"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
+msgid "Specifies the ARP link monitoring frequency in milliseconds"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
+msgid "Specifies the IP addresses to use for ARP monitoring"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
+msgid "Specifies the MII link monitoring frequency in milliseconds"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
+msgid "Specifies the aggregation selection logic to use"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
+msgid "Specifies the directory the device is attached to"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
+msgid ""
+"Specifies the mac-address for the actor in protocol packet exchanges "
+"(LACPDUs). If empty, masters' mac address defaults to system default"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
+msgid ""
+"Specifies the maximum amount of failed ARP requests until hosts are presumed "
+"to be dead"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
+msgid ""
+"Specifies the maximum amount of seconds after which hosts are presumed to be "
+"dead"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:886
+msgid ""
+"Specifies the maximum transmit power the wireless radio may use. Depending "
+"on regulatory requirements and wireless usage, the actual transmit power may "
+"be reduced by the driver."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
+msgid ""
+"Specifies the minimum number of links that must be active before asserting "
+"carrier"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
+msgid "Specifies the mode to be used for this bonding interface"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
+msgid ""
+"Specifies the number of IGMP membership reports to be issued after a "
+"failover event in 200ms intervals"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
+msgid ""
+"Specifies the number of packets to transmit through a slave before moving to "
+"the next one"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
+msgid ""
+"Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
+"IPv6 Neighbor Advertisements) to be issued after a failover event"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
+msgid ""
+"Specifies the number of seconds between instances where the bonding driver "
+"sends learning packets to each slaves peer switch"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
+msgid "Specifies the quantity of ARP IP targets that must be reachable"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
+msgid ""
+"Specifies the rate in which the link partner will be asked to transmit "
+"LACPDU packets"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
+msgid ""
+"Specifies the reselection policy for the primary slave when failure of the "
+"active slave or recovery of the primary slave occurs"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
+msgid "Specifies the system priority"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
+msgid ""
+"Specifies the time in milliseconds to wait before disabling a slave after a "
+"link failure detection"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
+msgid ""
+"Specifies the time in milliseconds to wait before enabling a slave after a "
+"link recovery detection"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
+msgid ""
+"Specifies whether ARP probes and replies should be validated or non-ARP "
+"traffic should be filtered for link monitoring"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
+msgid ""
+"Specifies whether active-backup mode should set all slaves to the same MAC "
+"address at enslavement"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
+msgid ""
+"Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
+"netif_carrier_ok()"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
+msgid ""
+"Specifies whether to shuffle active flows across slaves based on the load"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
+msgid ""
+"Specifies which slave interfaces should be attached to this bonding interface"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
+msgid ""
+"Specifies which slave is the primary device. It will always be the active "
+"slave while it is available"
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:72
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:67
+msgid "Specify a TOS (Type of Service)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+msgid ""
+"Specify a TOS (Type of Service). Can be either <code>inherit</code> (the "
+"outer header inherits the value of the inner header) or an hexadecimal value "
+"starting with <code>0x</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:67
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:72
+msgid ""
+"Specify a TTL (Time to Live) for the encapsulating packet other than the "
+"default (64) (optional)."
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
+msgid ""
+"Specify a TTL (Time to Live) for the encapsulating packet other than the "
+"default (64)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+msgid ""
+"Specify a Traffic Class. Can be either <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"starting with <code>0x</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:62
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:67
+msgid ""
+"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
+"bytes) (optional)."
+msgstr ""
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
+msgid ""
+"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
+"bytes)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+msgid "Specify the secret encryption key here."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
+msgid "Start"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
+msgid "Start priority"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1765
+msgid "Start refresh"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4253
+msgid "Starting configuration apply…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
+msgid "Starting wireless scan..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
+msgid "Startup"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
+msgid "Static IPv4 Routes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
+msgid "Static IPv6 Routes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
+msgid "Static Leases"
+msgstr ""
+
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
+msgid "Static Routes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1981
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
+#: modules/luci-compat/luasrc/model/network.lua:967
+msgid "Static address"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
+msgid ""
+"Static leases are used to assign fixed IP addresses and symbolic hostnames "
+"to DHCP clients. They are also required for non-dynamic interface "
+"configurations where only hosts with a corresponding lease are served."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
+msgid "Station inactivity limit"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:385
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:871
+#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
+msgid "Status"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:356
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
+msgid "Stop"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770
+msgid "Stop refresh"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
+msgid "Strict order"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
+msgid "Strong"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+msgid "Submit"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
+msgid "Suppress logging"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
+msgid "Suppress logging of the routine operation of these protocols"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
+msgid "Swap free"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
+msgid "Switch"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
+msgid "Switch %q"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2883
+#: modules/luci-compat/luasrc/model/network.lua:1426
+msgid "Switch VLAN"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:403
+msgid "Switch protocol"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
+#: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
+msgid "Switch to CIDR list notation"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+msgid "Symbolic link"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
+msgid "Sync with NTP-Server"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
+msgid "Sync with browser"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
+msgid "System"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
+msgid "System Log"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
+msgid "System Priority"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
+msgid "System Properties"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141
+msgid "System log buffer size"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:336
+msgid "TCP:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
+msgid "TFTP Settings"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
+msgid "TFTP server root"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
+msgid "TX"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+msgid "TX Rate"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:17
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
+msgid "Table"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:181
+msgid "Target"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
+msgid "Target network"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
+msgid "Terminate"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
+msgid "The <em>block mount</em> command failed with code %d"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
+msgid ""
+"The HE.net endpoint update configuration changed, you must now use the plain "
+"username instead of the user ID!"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
+msgid "The IPv4 address or the fully-qualified domain name of the remote end."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
+msgid ""
+"The IPv4 address or the fully-qualified domain name of the remote tunnel end."
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
+msgid "The IPv6 address or the fully-qualified domain name of the remote end."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
+msgid ""
+"The IPv6 address or the fully-qualified domain name of the remote tunnel end."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
+msgid ""
+"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+msgid ""
+"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
+"code> and <code>_</code>"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/error.htm:6
+msgid "The configuration file could not be loaded due to the following error:"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4129
+msgid ""
+"The device could not be reached within %d seconds after applying the pending "
+"changes, which caused the configuration to be rolled back for safety "
+"reasons. If you believe that the configuration changes are correct "
+"nonetheless, perform an unchecked configuration apply. Alternatively, you "
+"can dismiss this warning and edit changes before attempting to apply again, "
+"or revert all pending changes to keep the currently working configuration "
+"state."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
+msgid ""
+"The device file of the memory or partition (<abbr title=\"for example\">e.g."
+"</abbr> <code>/dev/sda1</code>)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:736
+msgid ""
+"The existing wireless configuration needs to be changed for LuCI to function "
+"properly."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
+msgid ""
+"The flash image was uploaded. Below is the checksum and file size listed, "
+"compare them with the original file to ensure data integrity. <br /> Click "
+"\"Proceed\" below to start the flash procedure."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:195
+msgid "The following rules are currently active on this system."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
+msgid "The gateway address must not be a local IP address"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:147
+msgid "The given SSH public key has already been added."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:153
+msgid ""
+"The given SSH public key is invalid. Please supply proper public RSA or "
+"ECDSA keys."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:716
+msgid "The interface name is already used"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:722
+msgid "The interface name is too long"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
+msgid ""
+"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
+"addresses."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
+msgid "The length of the IPv6 prefix in bits"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
+msgid "The local IPv4 address"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
+msgid "The local IPv4 address over which the tunnel is created (optional)."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
+msgid "The local IPv4 netmask"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
+msgid "The local IPv6 address over which the tunnel is created (optional)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+msgid "The network name is already used"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
+msgid ""
+"The network ports on this device can be combined to several <abbr title="
+"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
+"communicate directly with each other. <abbr title=\"Virtual Local Area "
+"Network\">VLAN</abbr>s are often used to separate different network "
+"segments. Often there is by default one Uplink port for a connection to the "
+"next greater network like the internet and other ports for a local network."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
+msgid "The reboot command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
+msgid "The restore command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1297
+msgid "The selected %s mode is incompatible with %s encryption"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:11
+msgid "The submitted security token is invalid or already expired!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
+msgid ""
+"The system is erasing the configuration partition now and will reboot itself "
+"when finished."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:291
+msgid ""
+"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
+"few minutes before you try to reconnect. It might be necessary to renew the "
+"address of your computer to reach the device again, depending on your "
+"settings."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
+msgid ""
+"The system is rebooting now. If the restored configuration changed the "
+"current LAN IP address, you might need to reconnect manually."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
+msgid "The system password has been successfully changed."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
+msgid "The sysupgrade command failed with code %d"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
+msgid ""
+"The uploaded backup archive appears to be valid and contains the files "
+"listed below. Press \"Continue\" to restore the backup and reboot, or "
+"\"Cancel\" to abort the operation."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
+msgid "The uploaded backup archive is not readable"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
+msgid "The uploaded firmware does not allow keeping current configuration."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
+msgid ""
+"The uploaded image file does not contain a supported format. Make sure that "
+"you choose the generic image format for your platform."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:535
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:567
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+msgid "There are no active leases"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4268
+msgid "There are no changes to apply"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:56
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:282
+msgid ""
+"There is no password set on this router. Please configure a root password to "
+"protect the web interface."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
+msgid "This IPv4 address of the relay"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
+msgid "This authentication type is not applicable to the selected EAP method."
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
+msgid "This does not look like a valid PEM file"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
+msgid ""
+"This file may contain lines like 'server=/domain/1.2.3.4' or "
+"'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
+"Name System\">DNS</abbr> servers."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
+msgid ""
+"This is a list of shell glob patterns for matching files and directories to "
+"include during sysupgrade. Modified files in /etc/config/ and certain other "
+"configurations are automatically preserved."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
+msgid ""
+"This is either the \"Update Key\" configured for the tunnel or the account "
+"password if no update key has been configured"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
+msgid ""
+"This is the content of /etc/rc.local. Insert your own commands here (in "
+"front of 'exit 0') to execute them at the end of the boot process."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
+msgid ""
+"This is the local endpoint address assigned by the tunnel broker, it usually "
+"ends with <code>...:2/64</code>"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
+msgid ""
+"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
+"abbr> in the local network"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
+msgid "This is the plain username for logging into the account"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
+msgid ""
+"This is the prefix routed to you by the tunnel broker for use by clients"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
+msgid "This is the system crontab in which scheduled tasks can be defined."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
+msgid ""
+"This is usually the address of the nearest PoP operated by the tunnel broker"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
+msgid ""
+"This list gives an overview over currently running system processes and "
+"their status."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
+msgid ""
+"This option cannot be used because the ca-bundle package is not installed."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2205
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2511
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
+msgid "This section contains no values yet"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
+msgid "Time Synchronization"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093
+msgid "Time interval for rekeying GTK"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
+msgid "Timezone"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2678
+msgid "To login…"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
+msgid ""
+"To restore configuration files, you can upload a previously generated backup "
+"archive here. To reset the firmware to its initial state, click \"Perform "
+"reset\" (only possible with squashfs images)."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
+msgid "Tone"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
+msgid "Total Available"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
+msgid "Traceroute"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:53
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:96
+msgid "Traffic"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+msgid "Traffic Class"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
+msgid "Transfer"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
+msgid "Transmit"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
+msgid "Transmit Hash Policy"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
+msgid "Trigger"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
+msgid "Trigger Mode"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
+msgid "Tunnel ID"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2886
+#: modules/luci-compat/luasrc/model/network.lua:1431
+msgid "Tunnel Interface"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
+msgid "Tunnel Link"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
+msgid "Tx-Power"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:44
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
+msgid "Type"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:326
+msgid "UDP:"
+msgstr ""
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:90
+msgid "UMTS only"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
+msgid "UMTS/GPRS/EV-DO"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
+msgid "UUID"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:16
+#: modules/luci-base/htdocs/luci-static/resources/network.js:17
+#: modules/luci-compat/luasrc/model/network.lua:34
+#: modules/luci-compat/luasrc/model/network.lua:35
+msgid "Unable to determine device name"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:18
+#: modules/luci-compat/luasrc/model/network.lua:36
+msgid "Unable to determine external IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:19
+#: modules/luci-compat/luasrc/model/network.lua:37
+msgid "Unable to determine upstream interface"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/error404.htm:11
+msgid "Unable to dispatch"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
+msgid "Unable to load log data:"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
+msgid "Unable to obtain client ID"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
+msgid "Unable to obtain mount information"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:278
+msgid "Unable to reset ip6tables counters: %s"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
+msgid "Unable to reset iptables counters: %s"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
+msgid "Unable to resolve AFTR host name"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:20
+#: modules/luci-compat/luasrc/model/network.lua:38
+msgid "Unable to resolve peer host name"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:284
+msgid "Unable to restart firewall: %s"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:342
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
+msgid "Unable to save contents: %s"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
+msgid "Unavailable Seconds (UAS)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/fs.js:102
+msgid "Unexpected reply data format"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
+#: modules/luci-compat/luasrc/model/network.lua:971
+msgid "Unknown"
+msgstr ""
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
+msgid "Unknown and unsupported connection method."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2292
+#: modules/luci-compat/luasrc/model/network.lua:1138
+msgid "Unknown error (%s)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+msgid "Unknown error code"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:1980
+#: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
+#: modules/luci-compat/luasrc/model/network.lua:965
+msgid "Unmanaged"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
+msgid "Unmount"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:112
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:259
+msgid "Unnamed key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3973
+msgid "Unsaved Changes"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+msgid "Unspecified error"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
+msgid "Unsupported MAP type"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
+msgid "Unsupported modem"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:267
+msgid "Unsupported protocol type."
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
+msgid "Up"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
+msgid "Up Delay"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3860
+msgid "Upload"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:413
+msgid ""
+"Upload a sysupgrade-compatible image here to replace the running firmware."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
+msgid "Upload archive..."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2816
+msgid "Upload file"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2791
+msgid "Upload file…"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2738
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3848
+msgid "Upload request failed: %s"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3767
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3821
+msgid "Uploading file…"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:737
+msgid ""
+"Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
+"assigned with a name in the form <em>wifinet#</em> and the network will be "
+"restarted to apply the updated configuration."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
+msgid "Uptime"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
+msgid "Use <code>/etc/ethers</code>"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269
+msgid "Use DHCP advertised servers"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
+msgid "Use DHCP gateway"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:39
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:116
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:59
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:103
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:90
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:64
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:77
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:100
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:69
+msgid "Use DNS servers advertised by peer"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:565
+msgid "Use ISO/IEC 3166 alpha2 country codes."
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:56
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:97
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:77
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:75
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:92
+msgid "Use MTU on tunnel interface"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:93
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:73
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:57
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
+msgid "Use TTL on tunnel interface"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
+msgid "Use XOR of hardware MAC addresses (layer2)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
+msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
+msgid ""
+"Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
+"(encap2+3)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
+msgid "Use as external overlay (/overlay)"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
+msgid "Use as root filesystem (/)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
+msgid "Use broadcast flag"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
+msgid "Use builtin IPv6-management"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:43
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:127
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:42
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:62
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:106
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:93
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:67
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:80
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:103
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
+msgid "Use custom DNS servers"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:56
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:100
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:87
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:61
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:74
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:97
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61
+msgid "Use default gateway"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:48
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:230
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:119
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:51
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:88
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:68
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:52
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:70
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:83
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:153
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:67
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:111
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:98
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:72
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:85
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:108
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:64
+msgid "Use gateway metric"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96
+msgid "Use legacy MAP"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96
+msgid ""
+"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
+"instead of RFC7597"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
+msgid "Use routing table"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498
+msgid "Use system certificates"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556
+msgid "Use system certificates for inner-tunnel"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
+msgid ""
+"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</"
+"em> identifies the host, the <em>IPv4-Address</em> specifies the fixed "
+"address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
+"the requesting host. The optional <em>Lease time</em> can be used to set non-"
+"standard host-specific lease time, e.g. 12h, 3d or infinite."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
+msgid "Use upper layer protocol information (layer3+4)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
+msgid ""
+"Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
+msgid "Used"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394
+msgid "Used Key Slot"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
+msgid ""
+"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
+"needed with normal WPA(2)-PSK."
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
+msgid "User Group"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
+msgid "User certificate (PEM encoded)"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126
+msgid "User key (PEM encoded)"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:23
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+msgid "Username"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
+msgid "VC-Mux"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
+msgid "VDSL"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
+msgid "VLANs on %q"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
+msgid "VPN"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
+msgid "VPN Local address"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
+msgid "VPN Local port"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
+msgid "VPN Server"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
+msgid "VPN Server port"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
+msgid "VPN Server's certificate SHA1 hash"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
+msgid "VPNC (CISCO 3000 (and others) VPN)"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
+msgid "VXLAN (RFC7348)"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
+msgid "VXLAN network identifier"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
+msgid "VXLANv6 (RFC7348)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556
+msgid ""
+"Validate server certificate using built-in system CA bundle,<br />requires "
+"the \"ca-bundle\" package"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
+msgid "Validation for all slaves"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
+msgid "Validation only for active slave"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
+msgid "Validation only for backup slaves"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Value must not be empty"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
+msgid "Vendor"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:55
+msgid "Vendor Class to send when requesting DHCP"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
+msgid "Verifying the uploaded image file."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:59
+msgid "Virtual dynamic interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1033
+msgid "WDS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1217
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
+msgid "WEP Open System"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1218
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
+msgid "WEP Shared Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+msgid "WEP passphrase"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1070
+msgid "WMM Mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+msgid "WPA passphrase"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1208
+msgid ""
+"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
+"and ad-hoc mode) to be installed."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
+msgid "Waiting for device..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
+msgid "Warning"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
+msgid "Warning: There are unsaved changes that will get lost on reboot!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
+msgid "Weak"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
+msgid ""
+"When using a PSK, the PMK can be automatically generated. When enabled, the "
+"R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
+"key options."
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:468
+msgid "Width"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
+msgid "WireGuard VPN"
+msgstr ""
+
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:87
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
+msgid "Wireless"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2874
+#: modules/luci-compat/luasrc/model/network.lua:1419
+msgid "Wireless Adapter"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2853
+#: modules/luci-base/htdocs/luci-static/resources/network.js:4057
+#: modules/luci-compat/luasrc/model/network.lua:1405
+#: modules/luci-compat/luasrc/model/network.lua:1868
+msgid "Wireless Network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:753
+msgid "Wireless Overview"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
+msgid "Wireless Security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:735
+msgid "Wireless configuration migration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:47
+msgid "Wireless is disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:47
+msgid "Wireless is not associated"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
+msgid "Wireless network is disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
+msgid "Wireless network is enabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
+msgid "Write received DNS requests to syslog"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:160
+msgid "Write system log to file"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
+msgid "XOR policy (balance-xor, 2)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3643
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
+msgid "Yes"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
+msgid "Yes (none, 0)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
+msgid ""
+"You appear to be currently connected to the device via the \"%h\" interface. "
+"Do you really want to shut down the interface?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
+msgid ""
+"You can enable or disable installed init scripts here. Changes will applied "
+"after a device reboot.<br /><strong>Warning: If you disable essential init "
+"scripts like \"network\", your device might become inaccessible!</strong>"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:294
+msgid ""
+"You must enable JavaScript in your browser or LuCI will not work properly."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
+msgid ""
+"You must select a primary interface which is included in selected slave "
+"interfaces!"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
+msgid ""
+"You must select at least one ARP IP target if ARP monitoring is selected!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
+msgid "ZRam Compression Algorithm"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
+msgid "ZRam Compression Streams"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
+msgid "ZRam Settings"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
+msgid "ZRam Size"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
+msgid "any"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:908
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:921
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:103
+msgid "auto"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
+msgid "automatic"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
+msgid "baseT"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
+msgid "bridged"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
+msgid "create"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
+msgid "create:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:173
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:174
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:178
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:179
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:261
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:264
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:267
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:271
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:277
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:303
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:304
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
+msgid "dBm"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
+msgid "disable"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:626
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:638
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
+msgid "disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553
+msgid "driver default"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81
+msgid "e.g: --proxy 10.10.10.10"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83
+msgid "e.g: dump"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+msgid "expired"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
+msgid ""
+"file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
+"abbr>-leases will be stored"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
+msgid "forward"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
+msgid "full-duplex"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
+msgid "half-duplex"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:569
+msgid "hexadecimal encoded value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1738
+msgid "hidden"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:629
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:640
+msgid "hybrid mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
+msgid "if target is a network"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
+msgid "ignore"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
+msgid "input"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:395
+msgid "key between 8 and 63 characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:407
+msgid "key with either 5 or 13 characters"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
+msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
+msgid "medium security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465
+msgid "minutes"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
+msgid "netif_carrier_ok()"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
+msgid "no"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
+msgid "no link"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
+msgid "non-empty value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3007
+msgid "none"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
+msgid "not present"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:905
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:245
+msgid "off"
+msgstr ""
+
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
+#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:242
+msgid "on"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
+msgid "open network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
+msgid "output"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+msgid "positive decimal value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+msgid "positive integer value"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
+msgid "random"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:628
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:639
+msgid "relay mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
+msgid "routed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
+msgid "sec"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:627
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
+msgid "server mode"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53
+msgid "sstpc Log-level"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
+msgid "stateful-only"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:647
+msgid "stateless"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:648
+msgid "stateless + stateful"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
+msgid "strong security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
+msgid "tagged"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448
+msgid "time units (TUs / 1.024 ms) [1000-65535]"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:559
+msgid "unique value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:534
+msgid "unknown"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+msgid "unlimited"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3372
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:428
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:465
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:561
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
+msgid "unspecified"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
+msgid "unspecified -or- create:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
+msgid "untagged"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
+msgid "valid IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+msgid "valid IP address or prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:281
+msgid "valid IPv4 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
+msgid "valid IPv4 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+msgid "valid IPv4 address or network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:374
+msgid "valid IPv4 address:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:314
+msgid "valid IPv4 network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:276
+msgid "valid IPv4 or IPv6 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+msgid "valid IPv4 prefix value (0-32)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:286
+msgid "valid IPv6 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
+msgid "valid IPv6 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+msgid "valid IPv6 address or prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:304
+msgid "valid IPv6 host id"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:319
+msgid "valid IPv6 network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+msgid "valid IPv6 prefix value (0-128)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:340
+msgid "valid MAC address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+msgid "valid UCI identifier"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:362
+msgid "valid UCI identifier, hostname or IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:386
+msgid "valid address:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:533
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
+msgid "valid date (YYYY-MM-DD)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+msgid "valid decimal value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:405
+msgid "valid hexadecimal WEP key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:393
+msgid "valid hexadecimal WPA key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:368
+msgid "valid host:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:357
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
+msgid "valid hostname"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:345
+msgid "valid hostname or IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+msgid "valid integer value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:309
+msgid "valid network in address/netmask notation"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:508
+msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:332
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
+msgid "valid port or port range (port1-port2)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:324
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
+msgid "valid port value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:513
+msgid "valid time (HH:MM:SS)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
+msgid "value between %d and %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:416
+msgid "value between %f and %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+msgid "value greater or equal to %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+msgid "value smaller or equal to %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:429
+msgid "value with %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:440
+msgid "value with at least %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:445
+msgid "value with at most %d characters"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
+msgid "weak security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
+msgid "yes"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
+msgid "« Back"
+msgstr "« Terug"
diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po
index 5b748fc6a..f0a85940f 100644
--- a/modules/luci-base/po/pl/base.po
+++ b/modules/luci-base/po/pl/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: LuCI\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-20 09:40+0200\n"
-"PO-Revision-Date: 2020-09-19 18:03+0000\n"
+"PO-Revision-Date: 2020-10-05 18:26+0000\n"
"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>"
"\n"
@@ -1270,7 +1270,7 @@ msgstr "Trwa zbieranie danych..."
msgid "Command"
msgstr "Polecenie"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Polecenie OK"
@@ -1342,7 +1342,7 @@ msgstr "Próba połączenia nieudana"
msgid "Connection attempt failed."
msgstr "Próba połączenia nieudana."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Utrata połączenia"
@@ -1817,6 +1817,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr "Nie wysyłaj nazwy hosta"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Czy jesteś pewien, że chcesz usunąć \"%s\" ?"
@@ -1948,7 +1952,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842
msgid "Edit this network"
-msgstr "Edytuj tą sieć"
+msgstr "Edytuj tę sieć"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
msgid "Edit wireless network"
@@ -3118,7 +3122,7 @@ msgstr "Informacja"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
msgid "Information"
-msgstr "Informacja"
+msgstr "Informacje"
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
@@ -3260,7 +3264,7 @@ msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko ID pomiędzy %d a %d
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko unikalne ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Błędny argument"
@@ -3272,7 +3276,7 @@ msgstr ""
"Nieprawidłowa lista nośna. Być może zbyt wielu okazicieli zostało "
"stworzonych. Ten protokół obsługuje jedną nośną i tylko jednego okaziciela."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Nieprawidłowe polecenie"
@@ -3878,7 +3882,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh Id"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Nie znaleziono metody"
@@ -4171,7 +4175,7 @@ msgstr "Brak sygnału RX"
msgid "No client associated"
msgstr "Brak powiązanego klienta"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Nie otrzymano danych"
@@ -4303,7 +4307,7 @@ msgstr "Nieobecny"
msgid "Not started on boot"
msgstr "Nie uruchomiony przy starcie"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Nie wspierane"
@@ -4861,7 +4865,7 @@ msgstr "Wykonaj restart"
msgid "Perform reset"
msgstr "Wykonaj reset"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Odmowa zezwolenia"
@@ -5233,7 +5237,7 @@ msgstr "Zażądaj adresu IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Zażądaj długość prefiksu IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Limit czasu żądania"
@@ -5384,7 +5388,7 @@ msgstr "Pliki Resolv i Hosts"
msgid "Resolve file"
msgstr "Plik Resolve"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Nie znaleziono zasobu"
@@ -5629,6 +5633,10 @@ msgstr ""
"Wysyłaj żądania echa LCP w określonym przedziale czasowym, efektywne tylko "
"wtedy gdy jest ustawiony próg błedu LCP"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr "Wyślij nazwę hosta tego urządzenia"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Ustawienia serwera"
@@ -6889,7 +6897,7 @@ msgstr "Nieznana i nieobsługiwana metoda połączenia."
msgid "Unknown error (%s)"
msgstr "Nieznany błąd (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Nieznany kod błędu"
@@ -6913,7 +6921,7 @@ msgstr "Klucz beznazwy"
msgid "Unsaved Changes"
msgstr "Niezapisane zmiany"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Nieokreślony błąd"
diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po
index f9b41d0d1..3948bc113 100644
--- a/modules/luci-base/po/pt/base.po
+++ b/modules/luci-base/po/pt/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 19:03+0200\n"
-"PO-Revision-Date: 2020-09-18 18:36+0000\n"
+"PO-Revision-Date: 2020-09-29 14:41+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/luci/"
"pt/>\n"
@@ -1281,7 +1281,7 @@ msgstr "A recolher dados..."
msgid "Command"
msgstr "Comando"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Comando OK"
@@ -1353,7 +1353,7 @@ msgstr "A tentativa de ligação falhou"
msgid "Connection attempt failed."
msgstr "A tentativa de ligação falhou."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Ligação perdida"
@@ -1832,6 +1832,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Não encaminhar lookups reversos para as redes locais"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr "Não envie um nome de host"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Quer mesmo apagar \"%s\"?"
@@ -3280,7 +3284,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "O ID de VLAN fornecido é inválido! Só IDs únicos são permitidos"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Argumento inválido"
@@ -3292,7 +3296,7 @@ msgstr ""
"Lista de portadores inválidos. Possivelmente, demasiados portadores foram "
"criados. Este protocolo suporta apenas um portador."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Comando inválido"
@@ -3907,7 +3911,7 @@ msgstr "ID de Mesh"
msgid "Mesh Id"
msgstr "Id de Mesh"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Método não encontrado"
@@ -4200,7 +4204,7 @@ msgstr "Sem sinal RX"
msgid "No client associated"
msgstr "Nenhum cliente associado"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Nenhuns dados recebidos"
@@ -4336,7 +4340,7 @@ msgstr "Não presente"
msgid "Not started on boot"
msgstr "Não iniciado na inicialização"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Não suportado"
@@ -4896,7 +4900,7 @@ msgstr "Executar reinicialização"
msgid "Perform reset"
msgstr "Executar reset"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Permissão negada"
@@ -5267,7 +5271,7 @@ msgstr "Solicita endereço IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Solicita prefixo IPv6 de tamanho"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Tempo limite do pedido"
@@ -5419,7 +5423,7 @@ msgstr "Ficheiros Resolv e Hosts"
msgid "Resolve file"
msgstr "Resolver ficheiro"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Recurso não encontrado"
@@ -5665,6 +5669,10 @@ msgstr ""
"Enviar requisições de eco do LCP no dado intervalo em segundos. Somente "
"efetivo em conjunto com o limite de falhas"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr "Envie o nome do host deste aparelho"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Configurações do Servidor"
@@ -6942,7 +6950,7 @@ msgstr "Método de ligação desconhecido e sem suporte."
msgid "Unknown error (%s)"
msgstr "Erro desconhecido (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Código de erro desconhecido"
@@ -6966,7 +6974,7 @@ msgstr "Chave sem nome"
msgid "Unsaved Changes"
msgstr "Alterações não Guardadas"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Erro não especificado"
@@ -7185,8 +7193,8 @@ msgid ""
"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
"instead of RFC7597"
msgstr ""
-"Usar o formato de identificador da interface MAP (draft-ietf-softwire-map-00)"
-" em vez do RFC7597"
+"Usar o formato de identificador da interface MAP (draft-ietf-softwire-"
+"map-00) em vez do RFC7597"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
msgid "Use routing table"
diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po
index a4c5f67c8..29eebbe94 100644
--- a/modules/luci-base/po/pt_BR/base.po
+++ b/modules/luci-base/po/pt_BR/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2020-09-22 03:07+0000\n"
+"PO-Revision-Date: 2020-09-29 14:41+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luci/pt_BR/>\n"
@@ -1298,7 +1298,7 @@ msgstr "Coletando dados..."
msgid "Command"
msgstr "Comando"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Comando OK"
@@ -1370,7 +1370,7 @@ msgstr "A tentativa de conexão falhou"
msgid "Connection attempt failed."
msgstr "A tentativa de conexão falhou."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Conexão perdida"
@@ -1855,6 +1855,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Não encaminhe buscas por endereço reverso das redes local"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr "Não envie um nome de host"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Você realmente deseja apagar \"%s\" ?"
@@ -3317,7 +3321,7 @@ msgstr ""
"O valor informado do ID da VLAN é inválido! Somente valores únicos são "
"permitidos"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Argumento inválido"
@@ -3329,7 +3333,7 @@ msgstr ""
"Lista de portadores inválidos. Possivelmente, portadores foram criados em "
"excesso. Este protocolo suporta apenas um portador."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Comando inválido"
@@ -3945,7 +3949,7 @@ msgstr "ID de Mesh"
msgid "Mesh Id"
msgstr "Identificador da Malha"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Método não encontrado"
@@ -4238,7 +4242,7 @@ msgstr "Sem sinal RX"
msgid "No client associated"
msgstr "Não há nenhum cliente associado"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Nenhum dado recebido"
@@ -4374,7 +4378,7 @@ msgstr "Não presente"
msgid "Not started on boot"
msgstr "Não iniciado na inicialização"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Sem suporte"
@@ -4934,7 +4938,7 @@ msgstr "Reiniciar o sistema"
msgid "Perform reset"
msgstr "Restaurar as configuração iniciais"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Permissão negada"
@@ -5306,7 +5310,7 @@ msgstr "Solicita endereço IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Solicita prefixo IPv6 de tamanho"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "A requisição excedeu o tempo limite"
@@ -5459,7 +5463,7 @@ msgstr "Arquivos Resolv e Hosts"
msgid "Resolve file"
msgstr "Arquivo Resolv"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Recurso não encontrado"
@@ -5705,6 +5709,10 @@ msgstr ""
"Enviar requisições de eco do LCP no dado intervalo em segundos. Somente "
"efetivo em conjunto com o limite de falhas"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr "Envie o nome de host deste dispositivo"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Configurações do Servidor"
@@ -5782,7 +5790,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80
msgid "Short GI"
-msgstr "Intervalo de guarda curto"
+msgstr "Intervalo curto de guarda"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
msgid "Short Preamble"
@@ -6984,7 +6992,7 @@ msgstr "Método de conexão desconhecido e sem suporte."
msgid "Unknown error (%s)"
msgstr "Erro desconhecido (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Código de erro desconhecido"
@@ -7008,7 +7016,7 @@ msgstr "Chave sem nome"
msgid "Unsaved Changes"
msgstr "Alterações Não Salvas"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Erro não especificado"
diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po
index ad073732a..3633f06b5 100644
--- a/modules/luci-base/po/ro/base.po
+++ b/modules/luci-base/po/ro/base.po
@@ -1219,7 +1219,7 @@ msgstr "Colectare date..."
msgid "Command"
msgstr "Comandă"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1292,7 +1292,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Conexiunea s-a pierdut"
@@ -1753,6 +1753,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Sigur doriți să ștergeți \"%s\" ?"
@@ -3150,7 +3154,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3160,7 +3164,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3743,7 +3747,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4032,7 +4036,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Nu sunt date recepționate"
@@ -4164,7 +4168,7 @@ msgstr "Nu este prezent"
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4703,7 +4707,7 @@ msgstr "Restarteaza"
msgid "Perform reset"
msgstr "Reseteaza"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5060,7 +5064,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5205,7 +5209,7 @@ msgstr "Fisierele de rezolvare si hosturi DNS"
msgid "Resolve file"
msgstr "Fisierul de rezolvare"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Resursa nu a fost găsită"
@@ -5440,6 +5444,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Setarile serverului"
@@ -6567,7 +6575,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6591,7 +6599,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Modificari nesalvate"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po
index 24cebe5c1..3c0108cd1 100644
--- a/modules/luci-base/po/ru/base.po
+++ b/modules/luci-base/po/ru/base.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LuCI: base\n"
"POT-Creation-Date: 2010-05-09 01:01+0300\n"
-"PO-Revision-Date: 2020-09-20 20:19+0000\n"
+"PO-Revision-Date: 2020-09-29 14:41+0000\n"
"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>"
"\n"
@@ -1286,7 +1286,7 @@ msgstr "Сбор данных..."
msgid "Command"
msgstr "Команда"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Успешное выполнение"
@@ -1357,7 +1357,7 @@ msgstr "Ошибка попытки соединения"
msgid "Connection attempt failed."
msgstr "Ошибка попытки соединения."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Подключение потеряно"
@@ -1835,6 +1835,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr "Не отправлять имя хоста"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Вы действительно хотите удалить «%s»?"
@@ -3270,7 +3274,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "Указан неверный VLAN ID! Доступны только уникальные ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Неверный аргумент"
@@ -3282,7 +3286,7 @@ msgstr ""
"Недопустимый список каналов (bearer). Возможно, создано слишком много "
"каналов. Этот протокол поддерживает один и только один канал."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Неверная команда"
@@ -3890,7 +3894,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Метод не найден"
@@ -4183,7 +4187,7 @@ msgstr "Rx сигнал отсутствует"
msgid "No client associated"
msgstr "Нет связанных клиентов"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Данные не получены"
@@ -4315,7 +4319,7 @@ msgstr "Не существует"
msgid "Not started on boot"
msgstr "Не запускается при загрузке"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Не поддерживается"
@@ -4874,7 +4878,7 @@ msgstr "Выполнить перезагрузку"
msgid "Perform reset"
msgstr "Выполнить сброс"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Доступ запрещён"
@@ -5248,7 +5252,7 @@ msgstr "Запрос IPv6 адреса"
msgid "Request IPv6-prefix of length"
msgstr "Запрос IPv6 префикс длины"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Таймаут запроса"
@@ -5400,7 +5404,7 @@ msgstr "Файлы resolv и hosts"
msgid "Resolve file"
msgstr "Файл resolv"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Ресурс не найден"
@@ -5642,6 +5646,10 @@ msgstr ""
"Отправлять эхо-пакеты LCP с указанным интервалом (секунды), эффективно "
"только в сочетании с порогом ошибок"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr "Отправлять имя хоста этого устройства"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Настройки сервера"
@@ -6904,7 +6912,7 @@ msgstr "Неизвестный и неподдерживаемый метод п
msgid "Unknown error (%s)"
msgstr "Неизвестная ошибка (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Неизвестный код ошибки"
@@ -6928,7 +6936,7 @@ msgstr "Ключ без имени"
msgid "Unsaved Changes"
msgstr "Не принятые изменения"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Неопознанная ошибка"
diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po
index 8531ad503..4e801500c 100644
--- a/modules/luci-base/po/sk/base.po
+++ b/modules/luci-base/po/sk/base.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-08-05 13:29+0000\n"
-"Last-Translator: Chaoos <all@chaoos.com>\n"
+"PO-Revision-Date: 2020-10-05 18:26+0000\n"
+"Last-Translator: kukulo2011 <kukulo2011@windowslive.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/luci/sk/>"
"\n"
"Language: sk\n"
@@ -10,7 +10,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.3-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -23,7 +23,7 @@ msgstr "%d Bitový"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:3689
msgid "%d invalid field(s)"
-msgstr "%d neplatných polí"
+msgstr "Neplatné polia: %d"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
msgid "%s is untagged in multiple VLANs!"
@@ -77,12 +77,12 @@ msgstr "-- vlastné --"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
msgid "-- match by label --"
-msgstr ""
+msgstr "-- zhoda s názvom --"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
msgid "-- match by uuid --"
-msgstr ""
+msgstr "-- zhoda podľa uuid --"
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
@@ -98,6 +98,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
msgid "0 = not using RSSI threshold, 1 = do not change driver default"
msgstr ""
+"0=nepoužíva RSSI prahovú hodnotu, 1=nemení počiatočné nastavenia ovládača"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
msgctxt "sstp log level value"
@@ -129,7 +130,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442
msgid "4-character hexadecimal ID"
-msgstr ""
+msgstr "4-hexadecimálna hodnota znaku"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
@@ -142,31 +143,31 @@ msgstr "5 minút zaťaženia:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
msgid "6-octet identifier as a hex string - no colons"
-msgstr ""
+msgstr "6-identifikátor oktetu ako hexadecimálny reťazec - bez dvojbodiek"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
msgid "802.11r Fast Transition"
-msgstr ""
+msgstr "802.11r Rýchly Prechod"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
msgid "802.11w Association SA Query maximum timeout"
-msgstr ""
+msgstr "802.11w Priradenie SA dotazovania maximálny čas platnosti"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
msgid "802.11w Association SA Query retry timeout"
-msgstr ""
+msgstr "802.11w Priradenie SA dotazovania - čas vypršania nového dotazovania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
msgid "802.11w Management Frame Protection"
-msgstr ""
+msgstr "802.11w Ochrana Riadiaceho Rámca"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
msgid "802.11w maximum timeout"
-msgstr ""
+msgstr "802.11w maximálny čas vypršania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
msgid "802.11w retry timeout"
-msgstr ""
+msgstr "802.11w časový limit nového pokusu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
@@ -174,17 +175,19 @@ msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
-msgstr ""
+msgstr "<abbr title=\"Doménový názvový systém\">DNS</abbr> dotaz na port"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
-msgstr "Port <abbr title=\"Domain Name System\">DNS</abbr> servera"
+msgstr "Port <abbr title=\"Doménový názvový systém\">DNS</abbr> servera"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
msgid ""
"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
"order of the resolvfile"
msgstr ""
+"<abbr title=\"Doménový názvový systém\">DNS</abbr> servery budú dotazované v "
+"poradí uvedenom v súbore resolvfile"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945
msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
@@ -192,30 +195,32 @@ msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:475
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
-msgstr ""
+msgstr "<abbr title=\"Internetový Protokol Verzia 4\">IPv4</abbr>-Adresa"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
-msgstr ""
+msgstr "<abbr title=\"Internetový Protokol Verzia 4\">IPv4</abbr>-Brána"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
-msgstr ""
+msgstr "<abbr title=\"Internetový Protokol Verzia 4\">IPv4</abbr>-Sieťová maska"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
msgid ""
"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
"(CIDR)"
msgstr ""
+"<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Adresa alebo sieť "
+"(CIDR)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
-msgstr ""
+msgstr "<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Brána"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
-msgstr ""
+msgstr "<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Prípona (hex)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
@@ -804,7 +809,7 @@ msgstr "Typ overenia totožnosti"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
msgid "Authoritative"
-msgstr ""
+msgstr "Autoritatívny"
#: modules/luci-base/luasrc/view/sysauth.htm:17
msgid "Authorization Required"
@@ -1132,7 +1137,7 @@ msgstr "Kontroluje sa obraz…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:399
msgid "Choose mtdblock"
-msgstr ""
+msgstr "Zvoľte mtdblock"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
@@ -1154,7 +1159,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
msgid "Cipher"
-msgstr ""
+msgstr "Šifra"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
msgid "Cisco UDP encapsulation"
@@ -1221,7 +1226,7 @@ msgstr "Zbieram dáta..."
msgid "Command"
msgstr "Príkaz"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Príkaz vykonaný v poriadku"
@@ -1288,7 +1293,7 @@ msgstr "Pokus o pripojenie zlyhal"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Pripojenie stratené"
@@ -1338,12 +1343,12 @@ msgstr "Vytvoriť / priradiť zónu brány firewall"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
msgid "Create interface"
-msgstr ""
+msgstr "Vytvoriť rozhranie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:730
msgid "Creates a bridge over specified interface(s)"
-msgstr ""
+msgstr "Vytvorenie mostu medzi určenými rozhraniami"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:170
msgid "Critical"
@@ -1388,8 +1393,8 @@ msgid ""
"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
"\">LED</abbr>s if possible."
msgstr ""
-"Ak je to možné, prispôsobte správanie <abbr title=\"Light Emitting Diode"
-"\">LED</abbr> diód zariadenia."
+"Umožní prispôsobiť správanie <abbr title=\"Light Emitting Diode\">LED</abbr> "
+"diód zariadenia, ak je to možné."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
msgid "DAE-Client"
@@ -1420,7 +1425,7 @@ msgstr "Klient DHCP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619
msgid "DHCP-Options"
-msgstr ""
+msgstr "Voľby DHCP"
#: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
@@ -1429,7 +1434,7 @@ msgstr "Klient DHCPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
msgid "DHCPv6-Mode"
-msgstr ""
+msgstr "Režim DHCPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
msgid "DHCPv6-Service"
@@ -1582,7 +1587,7 @@ msgstr "Cieľ"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
msgid "Destination port"
-msgstr ""
+msgstr "Cieľový port"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
@@ -1713,7 +1718,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330
msgid "Dismiss"
-msgstr "Zavrieť"
+msgstr "Zahodiť"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Distance Optimization"
@@ -1750,6 +1755,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Naozaj chcete odstrániť „%s“?"
@@ -1941,7 +1950,7 @@ msgstr "Povoliť server TFTP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
msgid "Enable VLAN functionality"
-msgstr ""
+msgstr "Povoliť funkciu VLAN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
@@ -2078,7 +2087,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
msgid "Exclude interfaces"
-msgstr ""
+msgstr "Vylúčiť rozhrania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
msgid "Expand hosts"
@@ -2102,7 +2111,7 @@ msgstr "Očakáva sa: %s"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
msgid "Expecting: non-empty value"
-msgstr ""
+msgstr "Očakáva sa: nejaká hodnota"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
msgid "Expires"
@@ -2189,7 +2198,7 @@ msgstr "Názov súboru"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
msgid "Filename of the boot image advertised to clients"
-msgstr ""
+msgstr "Názov súboru obrazu zavedenia oznámeného klientom"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
@@ -2233,7 +2242,7 @@ msgstr "Nájsť a pripojiť sa k sieti"
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
msgid "Finish"
-msgstr ""
+msgstr "Dokončiť"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
msgid "Firewall"
@@ -2270,7 +2279,7 @@ msgstr "Nahrať obraz..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:279
msgid "Flash image?"
-msgstr ""
+msgstr "Nahrať obraz?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
msgid "Flash new firmware image"
@@ -2278,7 +2287,7 @@ msgstr "Nahrať obraz s novým firmvérom"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:356
msgid "Flash operations"
-msgstr ""
+msgstr "Operácie nahrávania"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290
@@ -2295,7 +2304,7 @@ msgstr "Vynútiť 40MHz režim"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158
msgid "Force CCMP (AES)"
-msgstr ""
+msgstr "Vynútiť CCMP (AES)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
msgid "Force DHCP on this network even if another server is detected."
@@ -2303,7 +2312,7 @@ msgstr "Vynútiť server DHCP pre túto sieť, aj keď je rozpoznaný iný serve
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159
msgid "Force TKIP"
-msgstr ""
+msgstr "Vynútiť TKIP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
msgid "Force TKIP and CCMP (AES)"
@@ -2420,7 +2429,7 @@ msgstr "Vygenerovať nastavenie"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
msgid "Generate Key"
-msgstr ""
+msgstr "Generovať kľúč"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
msgid "Generate PMK locally"
@@ -2588,6 +2597,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1066
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
+"Skryť <abbr title=\"Identifikátor nastavenej rozšírenej služby\">ESSID</abbr>"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:264
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:303
@@ -2612,6 +2622,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
msgstr ""
+"Adresa <abbr title=\"Adresa internetového protokolu\">IP</abbr> hostiteľa "
+"alebo sieť"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102
msgid "Host-Uniq tag content"
@@ -2691,7 +2703,7 @@ msgstr "IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316
msgid "IPv4 Firewall"
-msgstr ""
+msgstr "Brána Firewall IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
#, fuzzy
@@ -2705,11 +2717,11 @@ msgstr "Adresa IPv4"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
msgid "IPv4 assignment length"
-msgstr ""
+msgstr "Dĺžka priradenia IPv4"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
msgid "IPv4 broadcast"
-msgstr ""
+msgstr "Vysielanie IPv4"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
msgid "IPv4 gateway"
@@ -2718,7 +2730,7 @@ msgstr "Brána IPv4"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
msgid "IPv4 netmask"
-msgstr ""
+msgstr "Maska siete IPv4"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:291
msgid "IPv4 network in address/netmask notation"
@@ -2778,7 +2790,7 @@ msgstr "IPv6"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319
msgid "IPv6 Firewall"
-msgstr ""
+msgstr "Brána Firewall IPv6"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
msgid "IPv6 Neighbours"
@@ -2820,7 +2832,7 @@ msgstr ""
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
msgid "IPv6 only"
-msgstr ""
+msgstr "Iba IPv6"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
@@ -2947,7 +2959,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
msgid "Ignore <code>/etc/hosts</code>"
-msgstr ""
+msgstr "Ignorovať súbor <code>/etc/hosts</code>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
msgid "Ignore interface"
@@ -2982,7 +2994,7 @@ msgstr "Časový limit nečinnosti"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265
msgid "Inbound:"
-msgstr ""
+msgstr "Vstupný:"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:90
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:95
@@ -3151,7 +3163,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Neplatný parameter"
@@ -3161,7 +3173,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Neplatný príkaz"
@@ -3353,11 +3365,11 @@ msgstr "Obmedzenie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
-msgstr "Obmedziť službu DNS rozhraniam podsietí, ktorým sa poskytuje DNS."
+msgstr "Obmedzenie služby DNS rozhraniam podsietí, ktorým sa poskytuje DNS."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
msgid "Limit listening to these interfaces, and loopback."
-msgstr ""
+msgstr "Obmedzenie načúvanie na tieto rozhrania a slučku."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
msgid "Line Attenuation (LATN)"
@@ -3381,7 +3393,7 @@ msgstr ""
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
msgid "Link Monitoring"
-msgstr ""
+msgstr "Monitorovanie linky"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
msgid "Link On"
@@ -3392,6 +3404,8 @@ msgid ""
"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
"requests to"
msgstr ""
+"Zoznam serverov <abbr title=\"Domain Name System\">DNS</abbr>, ktorým sa "
+"majú presmerovať požiadavky"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482
msgid ""
@@ -3465,7 +3479,7 @@ msgstr "Načítava sa zobrazenie…"
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
msgid "Local IP address"
-msgstr ""
+msgstr "Miestna adresa IP"
#: modules/luci-base/htdocs/luci-static/resources/network.js:12
#: modules/luci-compat/luasrc/model/network.lua:30
@@ -3597,7 +3611,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:173
msgid "MAC-Address"
-msgstr "MAC adresa"
+msgstr "Adresa MAC"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
msgid "MAC-Address Filter"
@@ -3681,7 +3695,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1107
msgid "Maximum allowed Listen Interval"
-msgstr ""
+msgstr "Maximálny povolený interval načúvania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
msgid "Maximum allowed number of active DHCP leases"
@@ -3744,7 +3758,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Spôsob sa nenašiel"
@@ -3974,7 +3988,7 @@ msgstr "Sieťové nástroje"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
msgid "Network boot image"
-msgstr ""
+msgstr "Obraz sieťového zavedenia"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
msgid "Network device activity (kernel: netdev)"
@@ -3988,7 +4002,7 @@ msgstr "Sieťové zariadenie nie je prítomné"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
msgid "Network interface"
-msgstr ""
+msgstr "Sieťové rozhranie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
msgid "New interface for \"%s\" can not be created: %s"
@@ -4033,7 +4047,7 @@ msgstr ""
msgid "No client associated"
msgstr "Nie je priradený žiadny klient"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Neboli prijaté žiadne údaje"
@@ -4083,7 +4097,7 @@ msgstr ""
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:279
msgid "No password set!"
-msgstr "Heslo nie je nastavené!"
+msgstr "Nie je nastavené heslo!"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:130
msgid "No peers defined yet"
@@ -4163,9 +4177,9 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
msgid "Not started on boot"
-msgstr ""
+msgstr "Nespustené po zavedení"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Nepodporované"
@@ -4215,7 +4229,7 @@ msgstr "Získať adresu IPv6"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
msgid "Off"
-msgstr ""
+msgstr "Vypnuté"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
msgid "Off-State Delay"
@@ -4223,7 +4237,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
msgid "On"
-msgstr ""
+msgstr "Zapnuté"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
msgid "On-Link route"
@@ -4370,7 +4384,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275
msgid "Outbound:"
-msgstr ""
+msgstr "Výstupný:"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:96
@@ -4670,7 +4684,7 @@ msgstr "Pozastavené"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294
msgid "Peak:"
-msgstr "Vrchol:"
+msgstr "Špička:"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
msgid "Peer IP address to assign"
@@ -4704,7 +4718,7 @@ msgstr "Vykonať reštart"
msgid "Perform reset"
msgstr "Vykonať obnovenie"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Prístup zamietnutý"
@@ -4796,11 +4810,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
msgid "Prevent listening on these interfaces."
-msgstr ""
+msgstr "Zabránenie načúvaniu na týchto rozhraniach."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Prevents client-to-client communication"
-msgstr ""
+msgstr "Zabráni komunikácii medzi klientmi"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
msgid "Primary Slave"
@@ -4950,6 +4964,8 @@ msgid ""
"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
"Configuration Protocol\">DHCP</abbr>-Server"
msgstr ""
+"Prečítanie súboru <code>/etc/ethers</code> na nastavenie servera <abbr title="
+"\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:402
msgid "Really switch protocol?"
@@ -5059,7 +5075,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5198,13 +5214,13 @@ msgstr "Obnoviť na predvolené hodnoty"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
msgid "Resolv and Hosts Files"
-msgstr ""
+msgstr "Súbory Resolv a Hosts"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Prostriedok sa nenašiel"
@@ -5253,7 +5269,7 @@ msgstr "Vracia sa späť konfigurácia…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
msgid "Root directory for files served via TFTP"
-msgstr ""
+msgstr "Koreňový adresár súborov poskytovaných serverom TFTP"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
msgid "Root preparation"
@@ -5269,11 +5285,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
msgid "Route table"
-msgstr ""
+msgstr "Tabuľka smerovania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
msgid "Route type"
-msgstr ""
+msgstr "Typ smerovania"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:625
msgid "Router Advertisement-Service"
@@ -5382,7 +5398,7 @@ msgstr "Uložiť a použiť"
#: modules/luci-base/htdocs/luci-static/resources/form.js:602
msgid "Save error"
-msgstr ""
+msgstr "Uložiť chybu"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
msgid "Save mtdblock"
@@ -5441,6 +5457,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Nastavenia servera"
@@ -5588,7 +5608,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:2883
#: modules/luci-compat/luasrc/model/network.lua:1428
msgid "Software VLAN"
-msgstr ""
+msgstr "Softvérová VLAN"
#: modules/luci-compat/luasrc/view/cbi/header.htm:5
msgid "Some fields are invalid, cannot save values!"
@@ -6347,6 +6367,8 @@ msgid ""
"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
"abbr> in the local network"
msgstr ""
+"Toto je jediný server <abbr title=\"Dynamic Host Configuration Protocol\""
+">DHCP</abbr> v miestnej sieti"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
msgid "This is the plain username for logging into the account"
@@ -6432,7 +6454,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:96
msgid "Traffic"
-msgstr "Premávka"
+msgstr "Prenos"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
@@ -6588,7 +6610,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "Neznáma chyba (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Neznámy kód chyby"
@@ -6612,7 +6634,7 @@ msgstr "Kľúč bez názvu"
msgid "Unsaved Changes"
msgstr "Neuložené zmeny"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Nešpecifikovaná chyba"
@@ -6687,7 +6709,7 @@ msgstr "Doba spustenia"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
msgid "Use <code>/etc/ethers</code>"
-msgstr ""
+msgstr "Použiť súbor <code>/etc/ethers</code>"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:269
msgid "Use DHCP advertised servers"
@@ -6856,7 +6878,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
msgid "Used"
-msgstr ""
+msgstr "Využitá"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394
msgid "Used Key Slot"
@@ -7252,7 +7274,7 @@ msgstr "dBm"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
msgid "disable"
-msgstr ""
+msgstr "zakázaný"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:626
@@ -7315,11 +7337,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:640
msgid "hybrid mode"
-msgstr ""
+msgstr "hybridný režim"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
msgid "if target is a network"
-msgstr ""
+msgstr "ak je cieľ sieťou"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
msgid "ignore"
@@ -7361,11 +7383,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
msgid "no link"
-msgstr ""
+msgstr "bez linky"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
-msgstr ""
+msgstr "nejaká hodnota"
#: modules/luci-base/htdocs/luci-static/resources/form.js:3007
msgid "none"
@@ -7383,12 +7405,12 @@ msgstr ""
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:245
msgid "off"
-msgstr ""
+msgstr "vypnuté"
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:242
msgid "on"
-msgstr ""
+msgstr "zapnuté"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
msgid "open network"
@@ -7419,7 +7441,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
msgid "routed"
-msgstr ""
+msgstr "smerované"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1093
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
@@ -7584,15 +7606,15 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
msgid "valid decimal value"
-msgstr ""
+msgstr "platná decimálna hodnota"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:405
msgid "valid hexadecimal WEP key"
-msgstr ""
+msgstr "platný hexadecimálny WEP kľúč"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:393
msgid "valid hexadecimal WPA key"
-msgstr ""
+msgstr "platný hexadecimálny WPA kľúč"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:368
msgid "valid host:port"
@@ -7604,37 +7626,37 @@ msgstr "platný hostiteľ:port"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
msgid "valid hostname"
-msgstr ""
+msgstr "platný názov hostiteľa"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:345
msgid "valid hostname or IP address"
-msgstr ""
+msgstr "platný názov hostiteľa alebo IP adresa"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
msgid "valid integer value"
-msgstr ""
+msgstr "platná celá hodnota"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:309
msgid "valid network in address/netmask notation"
-msgstr ""
+msgstr "platná sieť v anotácii adresa/sieťová maska"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:508
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
-msgstr ""
+msgstr "platné telefónne číslo (0-9, \"*\", \"#\", \"!\" or \".\")"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:332
#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
msgid "valid port or port range (port1-port2)"
-msgstr ""
+msgstr "platný port alebo rozsah portov (port1-port2)"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:324
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
msgid "valid port value"
-msgstr ""
+msgstr "platná hodnota portu"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:513
msgid "valid time (HH:MM:SS)"
-msgstr ""
+msgstr "platný čas (HH:MM:SS)"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value between %d and %d characters"
@@ -7646,11 +7668,11 @@ msgstr "hodnota v rozpätí %f a %f"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "value greater or equal to %f"
-msgstr ""
+msgstr "hodnota väčšia alebo rovná %f"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
msgid "value smaller or equal to %f"
-msgstr ""
+msgstr "hodnota menšia alebo rovná %f"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:429
msgid "value with %d characters"
@@ -7670,7 +7692,7 @@ msgstr "slabé zabezpečenie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
msgid "yes"
-msgstr ""
+msgstr "áno"
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
msgid "« Back"
diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po
index ed2a753cf..ab89fbc0d 100644
--- a/modules/luci-base/po/sv/base.po
+++ b/modules/luci-base/po/sv/base.po
@@ -1215,7 +1215,7 @@ msgstr "Samlar in data..."
msgid "Command"
msgstr "Kommando"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1282,7 +1282,7 @@ msgstr "Anslutningsförsök misslyckades"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Anslutning förlorad"
@@ -1742,6 +1742,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Vill du verkligen radera \"%s\" ?"
@@ -3141,7 +3145,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3151,7 +3155,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3732,7 +3736,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4021,7 +4025,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4153,7 +4157,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4692,7 +4696,7 @@ msgstr "Utför omstart"
msgid "Perform reset"
msgstr "Utför återställning"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5049,7 +5053,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5194,7 +5198,7 @@ msgstr "Resolv och Värd-filer"
msgid "Resolve file"
msgstr "Resolv-fil"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5429,6 +5433,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Server-inställningar"
@@ -6558,7 +6566,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6582,7 +6590,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr "Osparade ändringar"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot
index 13e5aac52..d23111f55 100644
--- a/modules/luci-base/po/templates/base.pot
+++ b/modules/luci-base/po/templates/base.pot
@@ -1193,7 +1193,7 @@ msgstr ""
msgid "Command"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1260,7 +1260,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1716,6 +1716,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -3110,7 +3114,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3120,7 +3124,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3700,7 +3704,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -3989,7 +3993,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4121,7 +4125,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4660,7 +4664,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -5015,7 +5019,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5160,7 +5164,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5395,6 +5399,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -6520,7 +6528,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6544,7 +6552,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po
index 09d0e46b3..0297c5b5e 100644
--- a/modules/luci-base/po/tr/base.po
+++ b/modules/luci-base/po/tr/base.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
-"PO-Revision-Date: 2020-09-23 14:41+0000\n"
-"Last-Translator: Ataberk Özen <ataberkozen123@gmail.com>\n"
+"PO-Revision-Date: 2020-09-29 14:41+0000\n"
+"Last-Translator: Mehmet Çetin <excom_zkko@hotmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/luci/tr/>"
"\n"
"Language: tr\n"
@@ -163,30 +163,31 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
msgid "802.11w maximum timeout"
-msgstr ""
+msgstr "802.11w maksimum zaman aşımı"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
msgid "802.11w retry timeout"
-msgstr ""
+msgstr "802.11w yeniden deneme zaman aşımı"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
-#, fuzzy
msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
-msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> port sorgula"
+msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> sorgulama bağlantı noktası"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
-msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> sunucu port"
+msgstr "<abbr title=\"Alan Adı Sistemi\">DNS</abbr> sunucusu bağlantı noktası"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
msgid ""
"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
"order of the resolvfile"
msgstr ""
+"<abbr title=\"Domain Name System\">DNS</abbr> sunucuları resolvfile sırasına "
+"göre sorgulanacak"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945
msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
@@ -219,7 +220,7 @@ msgstr "<abbr title=\"Internet Protokolü Sürüm 6\">IPv6</abbr>-Gateway"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
-msgstr ""
+msgstr "<abbr title=\"İnternet Protokolü 6\">IPv6</abbr>-Suffix (hex)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
@@ -262,22 +263,25 @@ msgid ""
"<br/>Note: you need to manually restart the cron service if the crontab file "
"was empty before editing."
msgstr ""
+"<br/>Not: Düzenlemeden önce crontab dosyası boş ise cron servisini manuel "
+"olarak yeniden başlatmanız gerekir."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2720
msgid "A directory with the same name already exists."
-msgstr ""
+msgstr "Aynı isim ile bir dizin zaten bulunuyor."
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670
msgid "A new login is required since the authentication session expired."
msgstr ""
+"Kimlik doğrulama oturumu sona erdiğinden dolayı yeni bir oturum açma gerekli."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:909
msgid "A43C + J43 + A43"
-msgstr ""
+msgstr "A43C + J43 + A43"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910
msgid "A43C + J43 + A43 + V43"
-msgstr ""
+msgstr "A43C + J43 + A43 + V43"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922
msgid "ADSL"
@@ -301,23 +305,23 @@ msgstr "ARP"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
msgid "ARP IP Targets"
-msgstr ""
+msgstr "ARP IP Hedefleri"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
msgid "ARP Interval"
-msgstr ""
+msgstr "ARP Aralığı"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
msgid "ARP Validation"
-msgstr ""
+msgstr "ARP Doğrulaması"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
msgid "ARP mode to consider a slave as being up"
-msgstr ""
+msgstr "ARP modu bir köle'yi çalışıyormuş gibi kabul edecek"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
msgid "ARP monitoring is not supported for the selected policy!"
-msgstr ""
+msgstr "Seçilen poliçede ARP izlemesi desteklenmiyor!"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
msgid "ARP retry threshold"
@@ -325,7 +329,7 @@ msgstr "ARP yenileme aralığı"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
msgid "ATM (Asynchronous Transfer Mode)"
-msgstr ""
+msgstr "ATM (Eşzamansız Aktarım Modu)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
msgid "ATM Bridges"
@@ -334,12 +338,12 @@ msgstr "ATM Köprüleri"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
msgid "ATM Virtual Channel Identifier (VCI)"
-msgstr ""
+msgstr "ATM Sanal Kanal Tanımlayıcı (VCI)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:971
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
msgid "ATM Virtual Path Identifier (VPI)"
-msgstr ""
+msgstr "ATM Sanal Yol Tanımlayıcı (VPI)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
msgid ""
@@ -351,11 +355,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
msgid "ATM device number"
-msgstr ""
+msgstr "ATM cihaz numarası"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
msgid "ATU-C System Vendor ID"
-msgstr ""
+msgstr "ATU-C Sistem Satıcısı Kimliği"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:543
@@ -392,19 +396,17 @@ msgstr "Aktif Bağlantılar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:92
-#, fuzzy
msgid "Active DHCP Leases"
-msgstr "Aktif DHCP Kiraları"
+msgstr "Aktif DHCP Rezervasyonları"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:94
-#, fuzzy
msgid "Active DHCPv6 Leases"
-msgstr "Aktif DHCPv6 Kiraları"
+msgstr "Aktif DHCPv6 Rezervasyonları"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
msgid "Active-Backup policy (active-backup, 1)"
-msgstr ""
+msgstr "Aktif-Yedekleme politikası (active-backup, 1)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3666
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
@@ -414,11 +416,11 @@ msgstr "Ad-Hoc"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
msgid "Adaptive load balancing (balance-alb, 6)"
-msgstr ""
+msgstr "Uyarlanabilir yük dengelemesi (balance-alb, 6)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
-msgstr ""
+msgstr "Uyarlanabilir iletim yükü dengeleme (balance-tlb, 5)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2167
#: modules/luci-base/htdocs/luci-static/resources/form.js:2170
@@ -437,37 +439,37 @@ msgstr "Ekle"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
msgid "Add ATM Bridge"
-msgstr ""
+msgstr "ATM Köprüsü Ekle"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
msgid "Add IPv4 address…"
-msgstr ""
+msgstr "IPv4 bağlantı ekle…"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:207
msgid "Add IPv6 address…"
-msgstr ""
+msgstr "IPv6 bağlantı ekle…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
msgid "Add LED action"
-msgstr ""
+msgstr "LED eylemi ekle"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
msgid "Add VLAN"
-msgstr ""
+msgstr "VLAN ekle"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
msgid "Add instance"
-msgstr ""
+msgstr "Madde ekle"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:152
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:247
msgid "Add key"
-msgstr ""
+msgstr "Anahtar ekle"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
msgid "Add local domain suffix to names served from hosts files"
-msgstr ""
+msgstr "Host dosyalarından sunulan adlara yerel alan soneki ekleyin"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:311
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757
@@ -476,7 +478,7 @@ msgstr "Yeni arabirim ekle..."
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
msgid "Add peer"
-msgstr ""
+msgstr "Eş ekle"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
@@ -501,16 +503,16 @@ msgstr "Adres"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
msgid "Address to access local relay bridge"
-msgstr ""
+msgstr "Yerel aktarma köprüsüne erişim adresi"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
msgid "Addresses"
-msgstr ""
+msgstr "Adresler"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
msgid "Administration"
-msgstr ""
+msgstr "Yönetim"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:324
@@ -525,15 +527,15 @@ msgstr "Gelişmiş Ayarlar"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
msgid "Aggregate Transmit Power (ACTATP)"
-msgstr ""
+msgstr "Toplam İletim Gücü (ACTATP)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
msgid "Aggregation Selection Logic"
-msgstr ""
+msgstr "Toplama Seçim Mantığı"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
-msgstr ""
+msgstr "Toplayıcı: Tüm bağımlılar devrede veya hiç bağımlı yok (stable, 0)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
msgid ""
@@ -561,7 +563,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
msgid "All Servers"
-msgstr ""
+msgstr "Tüm Sunucular"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
msgid ""
@@ -592,9 +594,8 @@ msgid "Allow full UCI access for legacy applications"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892
-#, fuzzy
msgid "Allow legacy 802.11b rates"
-msgstr "Eski 802.11b oranlarına izin ver"
+msgstr "Eski 802.11b hızlarına izin ver"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
msgid "Allow listed only"
@@ -606,13 +607,13 @@ msgstr ""
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
msgid "Allow rebooting the device"
-msgstr ""
+msgstr "Cihazın yeniden başlamasına izin ver"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Allow remote hosts to connect to local SSH forwarded ports"
msgstr ""
-"Uzak ana bilgisayarların yerel SSH'a yönlendirilen portlara bağlanmasına "
-"izin ver"
+"Uzak ana makinelerin yerel yönlendirilen SSH bağlantı noktalarına "
+"bağlanmasına izin ver"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
msgid "Allow root logins with password"
@@ -667,56 +668,64 @@ msgid "Annex A + L + M (all)"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
+#, fuzzy
msgid "Annex A G.992.1"
-msgstr ""
+msgstr "Annex A G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
+#, fuzzy
msgid "Annex A G.992.2"
-msgstr ""
+msgstr "Annex A G.992.2"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
+#, fuzzy
msgid "Annex A G.992.3"
-msgstr ""
+msgstr "Annex A G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
+#, fuzzy
msgid "Annex A G.992.5"
-msgstr ""
+msgstr "Annex A G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:892
msgid "Annex B (all)"
-msgstr ""
+msgstr "Annex B (hepsi)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:895
+#, fuzzy
msgid "Annex B G.992.1"
-msgstr ""
+msgstr "Annex B G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:896
+#, fuzzy
msgid "Annex B G.992.3"
-msgstr ""
+msgstr "Annex B G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
+#, fuzzy
msgid "Annex B G.992.5"
-msgstr ""
+msgstr "Annex B G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:893
msgid "Annex J (all)"
-msgstr ""
+msgstr "Annex J (hepsi)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
+#, fuzzy
msgid "Annex L G.992.3 POTS 1"
-msgstr ""
+msgstr "Annex L G.992.3 POTS 1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
msgid "Annex M (all)"
-msgstr ""
+msgstr "Annex M (hepsi)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904
msgid "Annex M G.992.3"
-msgstr ""
+msgstr "Annex M G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
msgid "Annex M G.992.5"
-msgstr ""
+msgstr "Annex M G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
msgid "Announce as default router even if no public prefix is available."
@@ -764,7 +773,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4215
msgid "Applying configuration changes… %ds"
-msgstr ""
+msgstr "Yapılandırma değişiklikleri uygulanıyor… %ds"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
msgid "Architecture"
@@ -855,7 +864,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
msgid "Automount Filesystem"
-msgstr ""
+msgstr "Dosya Sistemini Otomatik Bağla"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
msgid "Automount Swap"
@@ -927,7 +936,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
msgid "Beacon Interval"
-msgstr ""
+msgstr "İşaret Aralığı"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:324
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
@@ -1105,7 +1114,7 @@ msgstr "Değişiklikler"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4311
msgid "Changes have been reverted."
-msgstr ""
+msgstr "Değişiklikler geri alındı."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
msgid "Changes the administrator password for accessing the device"
@@ -1223,7 +1232,7 @@ msgstr "Veri alınıyor..."
msgid "Command"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr ""
@@ -1233,7 +1242,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
msgid "Comment"
-msgstr ""
+msgstr "Açıklama"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634
msgid ""
@@ -1253,7 +1262,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
msgid "Configuration"
-msgstr ""
+msgstr "Yapılandırma"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4190
msgid "Configuration changes applied."
@@ -1290,7 +1299,7 @@ msgstr ""
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr ""
@@ -1641,7 +1650,7 @@ msgstr "Dizin"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
msgid "Disable"
-msgstr "Pasif"
+msgstr "Devre dışı bırak"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
msgid ""
@@ -1711,7 +1720,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:330
msgid "Dismiss"
-msgstr "Reddet"
+msgstr "Kapat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Distance Optimization"
@@ -1748,6 +1757,10 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1880,7 +1893,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
msgid "Enable"
-msgstr ""
+msgstr "Çalıştır"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
msgid ""
@@ -2399,7 +2412,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
msgid "General Settings"
-msgstr ""
+msgstr "Genel Ayarlar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
@@ -2430,7 +2443,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
msgid "Global Settings"
-msgstr ""
+msgstr "Genel Ayarlar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
msgid "Global network options"
@@ -2591,7 +2604,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:56
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
msgid "Host"
-msgstr ""
+msgstr "Ana bilgisayar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
msgid "Host entries"
@@ -2765,7 +2778,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
msgid "IPv6"
-msgstr ""
+msgstr "IPv6"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319
msgid "IPv6 Firewall"
@@ -3056,7 +3069,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
msgid "Interface"
-msgstr ""
+msgstr "Arayüz"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
msgid "Interface %q device auto-migrated from %q to %q."
@@ -3099,7 +3112,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
msgid "Interface name"
-msgstr ""
+msgstr "Arayüz ismi"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:122
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:272
@@ -3142,7 +3155,7 @@ msgstr ""
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3152,7 +3165,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr ""
@@ -3732,7 +3745,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4021,7 +4034,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr ""
@@ -4045,7 +4058,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:241
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
-msgstr ""
+msgstr "Bilgi bulunmamaktadır"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
@@ -4153,7 +4166,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr ""
@@ -4692,7 +4705,7 @@ msgstr ""
msgid "Perform reset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
@@ -4737,7 +4750,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
msgid "Port"
-msgstr ""
+msgstr "Bağlantı noktası"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
msgid "Port status:"
@@ -5033,7 +5046,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
msgid "Remove"
-msgstr ""
+msgstr "Kaldır"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
msgid "Replace wireless configuration"
@@ -5047,7 +5060,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr ""
@@ -5192,7 +5205,7 @@ msgstr ""
msgid "Resolve file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5212,7 +5225,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
msgid "Restore"
-msgstr "Geri Yükleme"
+msgstr "Geri yükle"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
msgid "Restore backup"
@@ -5320,7 +5333,7 @@ msgstr "SSH sunucu adresi"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
msgid "SSH server port"
-msgstr "SSH sunucu portu"
+msgstr "SSH sunucusu bağlantı noktası"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
msgid "SSH username"
@@ -5428,6 +5441,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr ""
@@ -5443,7 +5460,7 @@ msgstr ""
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
msgid "Services"
-msgstr "Servisler"
+msgstr "Hizmetler"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2668
msgid "Session expired"
@@ -6542,7 +6559,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
msgid "Unknown"
-msgstr ""
+msgstr "Bilinmiyor"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
msgid "Unknown and unsupported connection method."
@@ -6553,7 +6570,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr ""
@@ -6577,7 +6594,7 @@ msgstr ""
msgid "Unsaved Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr ""
@@ -6605,7 +6622,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:3860
msgid "Upload"
-msgstr ""
+msgstr "Yükleme"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:413
msgid ""
@@ -6993,6 +7010,8 @@ msgstr "Uyarı"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
msgid "Warning: There are unsaved changes that will get lost on reboot!"
msgstr ""
+"Uyarı: Yeniden başlatılınca kaybedilecek henüz kaydedilmemiş değişiklikler "
+"var!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
msgid "Weak"
diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po
index 265eeb5ff..75bab7c44 100644
--- a/modules/luci-base/po/uk/base.po
+++ b/modules/luci-base/po/uk/base.po
@@ -1286,7 +1286,7 @@ msgstr "Збирання даних..."
msgid "Command"
msgstr "Команда"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Команду виконано успішно"
@@ -1357,7 +1357,7 @@ msgstr "Невдала спроба підключення"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "З'єднання втрачено"
@@ -1838,6 +1838,10 @@ msgstr ""
"Не переспрямовувати зворотні <abbr title=\"Domain Name System — система "
"доменних імен\">DNS</abbr>-запити для локальних мереж"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Справді видалити \"%s\"?"
@@ -3280,7 +3284,7 @@ msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr ""
"Задано неприпустимий VLAN ID! Доступні тільки унікальні ідентифікатори."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "Неприпустимий аргумент"
@@ -3290,7 +3294,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Неприпустима команда"
@@ -3905,7 +3909,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh Id"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Метод не знайдено"
@@ -4196,7 +4200,7 @@ msgstr "Сигналу RX немає"
msgid "No client associated"
msgstr "Не пов’язано жодного клієнта"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Жодних даних не отримано"
@@ -4328,7 +4332,7 @@ msgstr "Не існує"
msgid "Not started on boot"
msgstr "Не запущено під час завантаження"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Не підтримується"
@@ -4888,7 +4892,7 @@ msgstr "Виконати перезавантаження"
msgid "Perform reset"
msgstr "Виконати відновлення"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Дозволу не надано"
@@ -5256,7 +5260,7 @@ msgstr "Запит IPv6-адреси"
msgid "Request IPv6-prefix of length"
msgstr "Запит довжини IPv6-префіксу"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Час очікування запиту минув"
@@ -5408,7 +5412,7 @@ msgstr "Файли resolv і hosts"
msgid "Resolve file"
msgstr "Файл resolv"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Ресурс не знайдено"
@@ -5650,6 +5654,10 @@ msgstr ""
"Надсилати ехо-пакети LCP зі вказаним інтервалом (секунди), ефективно тільки "
"в поєднанні з порогом помилок"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Налаштування сервера"
@@ -6869,7 +6877,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "Невідома помилка (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Невідомий код помилки"
@@ -6893,7 +6901,7 @@ msgstr "Ключ без назви"
msgid "Unsaved Changes"
msgstr "Незбережені зміни"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Невизначена помилка"
diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po
index 12e309289..35e2e1f94 100644
--- a/modules/luci-base/po/vi/base.po
+++ b/modules/luci-base/po/vi/base.po
@@ -1249,7 +1249,7 @@ msgstr "Đang lấy dữ liệu..."
msgid "Command"
msgstr "Lệnh"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "Lệnh thành công"
@@ -1320,7 +1320,7 @@ msgstr "Kết nối thất bại"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "Mất kết nối"
@@ -1790,6 +1790,10 @@ msgstr "Không chuyển tiếp yêu cầu mà máy chủ tên công cộng khôn
msgid "Do not forward reverse lookups for local networks"
msgstr "Không chuyển tiếp tra cứu ngược cho các mạng cục bộ"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "Bạn thật sự muốn xóa \"%s\" ?"
@@ -3216,7 +3220,7 @@ msgstr ""
"Địa chỉ ID Vlan không hợp lệ được cung cấp! Chỉ những ID duy nhất mới được "
"phép"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3226,7 +3230,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "Lệnh ko hợp lệ"
@@ -3826,7 +3830,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "Không thể tìm được phương pháp này"
@@ -4117,7 +4121,7 @@ msgstr ""
msgid "No client associated"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "Không có data nhận được"
@@ -4249,7 +4253,7 @@ msgstr "Không có"
msgid "Not started on boot"
msgstr "Chưa bắt đầu khi khởi động"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "Không được hỗ trợ"
@@ -4805,7 +4809,7 @@ msgstr "Tiến hành khởi động lại"
msgid "Perform reset"
msgstr "Thực hiện khởi động lại"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "Bạn không có quyền làm"
@@ -5173,7 +5177,7 @@ msgstr "Yêu cầu địa chỉ mạng IPv6"
msgid "Request IPv6-prefix of length"
msgstr "Yêu cầu tiền tố IPv6 có độ dài"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "Hết thời gian yêu cầu"
@@ -5327,7 +5331,7 @@ msgstr "Tập tin Resolv và Hosts"
msgid "Resolve file"
msgstr "Tập tin Resolv"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "Không tìm được nguồn"
@@ -5567,6 +5571,10 @@ msgid ""
"conjunction with failure threshold"
msgstr ""
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "Cấu hình máy chủ"
@@ -6765,7 +6773,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "Lỗi không xác định (%s"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "Mã lỗi không xác định"
@@ -6789,7 +6797,7 @@ msgstr "Khóa không tên"
msgid "Unsaved Changes"
msgstr "Thay đổi không lưu"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "Lỗi không thể xác định"
diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po
index 07bacab98..34b989d24 100644
--- a/modules/luci-base/po/zh_Hans/base.po
+++ b/modules/luci-base/po/zh_Hans/base.po
@@ -1233,7 +1233,7 @@ msgstr "正在收集数据…"
msgid "Command"
msgstr "命令"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "命令成功"
@@ -1303,7 +1303,7 @@ msgstr "尝试连接失败"
msgid "Connection attempt failed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "失去连接"
@@ -1770,6 +1770,10 @@ msgstr "不转发公共域名服务器无法回应的请求"
msgid "Do not forward reverse lookups for local networks"
msgstr "不转发本地网络的反向查询"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "您真的要删除“%s”吗?"
@@ -3179,7 +3183,7 @@ msgstr "无效的 VLAN ID!只有 %d 和 %d 之间的 ID 有效。"
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "无效的 VLAN ID!只允许唯一的 ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr "无效参数"
@@ -3189,7 +3193,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "无效命令"
@@ -3777,7 +3781,7 @@ msgstr "Mesh ID"
msgid "Mesh Id"
msgstr "Mesh ID"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr "方法未找到"
@@ -4067,7 +4071,7 @@ msgstr "无接收信号"
msgid "No client associated"
msgstr "没有关联的客户端"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "没有接收到数据"
@@ -4199,7 +4203,7 @@ msgstr "不存在"
msgid "Not started on boot"
msgstr "开机时不启动"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "不支持"
@@ -4744,7 +4748,7 @@ msgstr "执行重启"
msgid "Perform reset"
msgstr "执行重置"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "没有权限"
@@ -5104,7 +5108,7 @@ msgstr "请求 IPv6 地址"
msgid "Request IPv6-prefix of length"
msgstr "请求指定长度的 IPv6 前缀"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "请求超时"
@@ -5253,7 +5257,7 @@ msgstr "HOSTS 和解析文件"
msgid "Resolve file"
msgstr "解析文件"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr "未找到资源"
@@ -5490,6 +5494,10 @@ msgid ""
"conjunction with failure threshold"
msgstr "定时发送 LCP 响应(秒),仅在结合了故障阈值时有效"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "服务器设置"
@@ -6652,7 +6660,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "未知错误(%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "未知错误代码"
@@ -6676,7 +6684,7 @@ msgstr "未命名的密钥"
msgid "Unsaved Changes"
msgstr "未保存的配置"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "未指定的错误"
diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po
index ce768442a..da44137e1 100644
--- a/modules/luci-base/po/zh_Hant/base.po
+++ b/modules/luci-base/po/zh_Hant/base.po
@@ -1227,7 +1227,7 @@ msgstr "收集資料中..."
msgid "Command"
msgstr "指令"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
msgstr "指令 OK"
@@ -1297,7 +1297,7 @@ msgstr "連線嘗試失敗"
msgid "Connection attempt failed."
msgstr "嘗試連線失敗."
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:414
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
msgstr "失去連線"
@@ -1764,6 +1764,10 @@ msgstr "對不被公用名稱伺服器回應的請求不轉發"
msgid "Do not forward reverse lookups for local networks"
msgstr "對本地網域不轉發反解析鎖定"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
msgstr "您確定要刪除「%s」?"
@@ -3168,7 +3172,7 @@ msgstr "輸入的 VLAN ID 無效!僅有介於 %d 和 %d 的被允許。"
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
msgstr "輸入的是不正確的VLAN ID!僅允許獨一無二的IDs"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
msgid "Invalid argument"
msgstr ""
@@ -3178,7 +3182,7 @@ msgid ""
"supports one and only one bearer."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
msgstr "無效的指令"
@@ -3758,7 +3762,7 @@ msgstr ""
msgid "Mesh Id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
msgid "Method not found"
msgstr ""
@@ -4047,7 +4051,7 @@ msgstr "沒有 RX 信號"
msgid "No client associated"
msgstr "沒有客戶端已連接"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
msgstr "未收到任何資料"
@@ -4179,7 +4183,7 @@ msgstr ""
msgid "Not started on boot"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
msgid "Not supported"
msgstr "不支援"
@@ -4718,7 +4722,7 @@ msgstr "重新開機"
msgid "Perform reset"
msgstr "執行重置"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr "權限不符"
@@ -5078,7 +5082,7 @@ msgstr ""
msgid "Request IPv6-prefix of length"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
msgid "Request timeout"
msgstr "請求超時"
@@ -5225,7 +5229,7 @@ msgstr "解析和Hosts檔案"
msgid "Resolve file"
msgstr "解析檔"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
msgstr ""
@@ -5462,6 +5466,10 @@ msgid ""
"conjunction with failure threshold"
msgstr "傳送LCP呼叫請求在這個給予的秒數間隔內, 僅影響關聯到失敗門檻"
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
msgstr "伺服器設定值"
@@ -6617,7 +6625,7 @@ msgstr ""
msgid "Unknown error (%s)"
msgstr "未知的錯誤 (%s)"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:415
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
msgid "Unknown error code"
msgstr "未知的錯誤碼"
@@ -6641,7 +6649,7 @@ msgstr "未命名的金鑰"
msgid "Unsaved Changes"
msgstr "尚未存檔的修改"
-#: modules/luci-base/htdocs/luci-static/resources/rpc.js:413
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
msgstr "未知的錯誤"
diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js
index 9fe1bff55..23feebc00 100644
--- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js
+++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js
@@ -88,6 +88,32 @@ return view.extend({
var plugin = plugins[i];
plugin.form.addFormOptions(s);
}
+
+ var opts = s.getOption();
+
+ var removeIfNoneActive = function(original_remove_fn, section_id) {
+ var isAnyActive = false;
+
+ for (var optname in opts) {
+ if (opts[optname].ucioption != this.ucioption)
+ continue;
+
+ if (!opts[optname].isActive(section_id))
+ continue;
+
+ isAnyActive = true;
+ break;
+ }
+
+ if (!isAnyActive)
+ original_remove_fn.call(this, section_id);
+ };
+
+ for (var optname in opts) {
+ if (!opts[optname].ucioption || optname == opts[optname].ucioption)
+ continue;
+ opts[optname].remove = removeIfNoneActive.bind(opts[optname], opts[optname].remove);
+ }
};
return m.render();