summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-base')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/form.js8
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/tools/widgets.js1
-rw-r--r--modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua8
-rw-r--r--modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua3
-rw-r--r--modules/luci-base/po/ar/base.po478
-rw-r--r--modules/luci-base/po/bg/base.po478
-rw-r--r--modules/luci-base/po/bn_BD/base.po478
-rw-r--r--modules/luci-base/po/ca/base.po478
-rw-r--r--modules/luci-base/po/cs/base.po629
-rw-r--r--modules/luci-base/po/de/base.po516
-rw-r--r--modules/luci-base/po/el/base.po478
-rw-r--r--modules/luci-base/po/en/base.po478
-rw-r--r--modules/luci-base/po/es/base.po522
-rw-r--r--modules/luci-base/po/fi/base.po505
-rw-r--r--modules/luci-base/po/fr/base.po548
-rw-r--r--modules/luci-base/po/he/base.po478
-rw-r--r--modules/luci-base/po/hi/base.po478
-rw-r--r--modules/luci-base/po/hu/base.po478
-rw-r--r--modules/luci-base/po/it/base.po488
-rw-r--r--modules/luci-base/po/ja/base.po1696
-rw-r--r--modules/luci-base/po/ko/base.po478
-rw-r--r--modules/luci-base/po/mr/base.po478
-rw-r--r--modules/luci-base/po/ms/base.po478
-rw-r--r--modules/luci-base/po/nb_NO/base.po478
-rw-r--r--modules/luci-base/po/nl/base.po570
-rw-r--r--modules/luci-base/po/pl/base.po520
-rw-r--r--modules/luci-base/po/pt/base.po530
-rw-r--r--modules/luci-base/po/pt_BR/base.po518
-rw-r--r--modules/luci-base/po/ro/base.po478
-rw-r--r--modules/luci-base/po/ru/base.po525
-rw-r--r--modules/luci-base/po/sk/base.po478
-rw-r--r--modules/luci-base/po/sv/base.po488
-rw-r--r--modules/luci-base/po/templates/base.pot478
-rw-r--r--modules/luci-base/po/tr/base.po478
-rw-r--r--modules/luci-base/po/uk/base.po488
-rw-r--r--modules/luci-base/po/vi/base.po488
-rw-r--r--modules/luci-base/po/zh_Hans/base.po612
-rw-r--r--modules/luci-base/po/zh_Hant/base.po516
-rwxr-xr-xmodules/luci-base/root/usr/libexec/rpcd/luci2
39 files changed, 10635 insertions, 7672 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js
index 568a4abb6a..70f156c721 100644
--- a/modules/luci-base/htdocs/luci-static/resources/form.js
+++ b/modules/luci-base/htdocs/luci-static/resources/form.js
@@ -2219,7 +2219,7 @@ var CBITypedSection = CBIAbstractSection.extend(/** @lends LuCI.form.TypedSectio
});
if (this.title != null && this.title != '')
- sectionEl.appendChild(E('legend', {}, this.title));
+ sectionEl.appendChild(E('h3', {}, this.title));
if (this.description != null && this.description != '')
sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description));
@@ -3138,7 +3138,7 @@ var CBINamedSection = CBIAbstractSection.extend(/** @lends LuCI.form.NamedSectio
});
if (typeof(this.title) === 'string' && this.title !== '')
- sectionEl.appendChild(E('legend', {}, this.title));
+ sectionEl.appendChild(E('h3', {}, this.title));
if (typeof(this.description) === 'string' && this.description !== '')
sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description));
@@ -3351,10 +3351,10 @@ var CBIValue = CBIAbstractValue.extend(/** @lends LuCI.form.Value.prototype */ {
optionEl.classList.add('hidden');
optionEl.addEventListener('widget-change',
- L.bind(this.handleValueChange, this, section_id, {}));
+ L.bind(this.map.checkDepends, this.map));
optionEl.addEventListener('widget-change',
- L.bind(this.map.checkDepends, this.map));
+ L.bind(this.handleValueChange, this, section_id, {}));
dom.bindClassInstance(optionEl, this);
diff --git a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
index 1de8a08bc3..3f2b7b9ffc 100644
--- a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
+++ b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
@@ -393,6 +393,7 @@ var CBINetworkSelect = form.ListValue.extend({
select_placeholder: E('em', _('unspecified')),
display_items: this.display_size || this.size || 3,
dropdown_items: this.dropdown_size || this.size || 5,
+ datatype: this.multiple ? 'list(uciname)' : 'uciname',
validate: L.bind(this.validate, this, section_id),
create: !this.nocreate,
create_markup: '' +
diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua
index 95f2ad4cfc..705a15db22 100644
--- a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua
+++ b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua
@@ -202,10 +202,10 @@ TZ = {
{ 'America/Winnipeg', 'CST6CDT,M3.2.0,M11.1.0' },
{ 'America/Yakutat', 'AKST9AKDT,M3.2.0,M11.1.0' },
{ 'America/Yellowknife', 'MST7MDT,M3.2.0,M11.1.0' },
- { 'Antarctica/Casey', '<+08>-8' },
+ { 'Antarctica/Casey', '<+11>-11' },
{ 'Antarctica/Davis', '<+07>-7' },
{ 'Antarctica/DumontDUrville', '<+10>-10' },
- { 'Antarctica/Macquarie', '<+11>-11' },
+ { 'Antarctica/Macquarie', 'AEST-10AEDT,M10.1.0,M4.1.0/3' },
{ 'Antarctica/Mawson', '<+05>-5' },
{ 'Antarctica/McMurdo', 'NZST-12NZDT,M9.5.0,M4.1.0/3' },
{ 'Antarctica/Palmer', '<-03>3' },
@@ -239,8 +239,8 @@ TZ = {
{ 'Asia/Dubai', '<+04>-4' },
{ 'Asia/Dushanbe', '<+05>-5' },
{ 'Asia/Famagusta', 'EET-2EEST,M3.5.0/3,M10.5.0/4' },
- { 'Asia/Gaza', 'EET-2EEST,M3.5.5/0,M10.5.6/1' },
- { 'Asia/Hebron', 'EET-2EEST,M3.5.5/0,M10.5.6/1' },
+ { 'Asia/Gaza', 'EET-2EEST,M3.4.4/48,M10.4.4/49' },
+ { 'Asia/Hebron', 'EET-2EEST,M3.4.4/48,M10.4.4/49' },
{ 'Asia/Ho Chi Minh', '<+07>-7' },
{ 'Asia/Hong Kong', 'HKT-8' },
{ 'Asia/Hovd', '<+07>-7' },
diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua
index e63e2a6958..caee1d2c1c 100644
--- a/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua
+++ b/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua
@@ -24,6 +24,8 @@ OFFSET = {
pdt = -25200, -- PDT
nst = -12600, -- NST
ndt = -9000, -- NDT
+ aest = 36000, -- AEST
+ aedt = 39600, -- AEDT
nzst = 43200, -- NZST
nzdt = 46800, -- NZDT
hkt = 28800, -- HKT
@@ -38,7 +40,6 @@ OFFSET = {
wet = 0, -- WET
acst = 34200, -- ACST
acdt = 37800, -- ACDT
- aest = 36000, -- AEST
awst = 28800, -- AWST
msk = 10800, -- MSK
sst = -39600, -- SST
diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po
index 15949062ca..25598d27aa 100644
--- a/modules/luci-base/po/ar/base.po
+++ b/modules/luci-base/po/ar/base.po
@@ -349,8 +349,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -367,6 +367,10 @@ msgstr ""
msgid "Actions"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -380,12 +384,12 @@ msgid "Active Connections"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -465,6 +469,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -764,12 +776,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -876,7 +888,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr ""
@@ -925,10 +937,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -936,10 +948,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -949,7 +961,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1020,7 +1032,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1098,7 +1110,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1106,7 +1118,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1124,7 +1136,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1191,7 +1203,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1223,10 +1235,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1314,7 +1326,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1339,8 +1351,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1462,7 +1474,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr ""
@@ -1647,6 +1659,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1668,7 +1681,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "قطع الاتصال"
@@ -1711,10 +1725,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1754,8 +1768,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1951,8 +1965,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -1999,7 +2020,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2333,7 +2354,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr ""
@@ -2569,9 +2590,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2595,7 +2616,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2715,7 +2736,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2819,7 +2840,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2957,24 +2978,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3019,7 +3040,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3116,6 +3137,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3146,13 +3177,6 @@ msgstr ""
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 ""
@@ -3178,7 +3202,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3207,18 +3231,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3292,8 +3316,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3458,7 +3482,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3506,7 +3530,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3522,15 +3546,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3560,10 +3584,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3602,7 +3626,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr ""
@@ -3682,8 +3706,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3759,7 +3783,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3881,6 +3905,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3918,7 +3949,7 @@ msgstr ""
msgid "Name"
msgstr "اسم"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3929,15 +3960,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3955,8 +3990,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -3983,6 +4018,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4015,16 +4054,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4080,8 +4119,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4342,24 +4381,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4372,6 +4411,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4383,10 +4426,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4404,18 +4447,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4659,10 +4702,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4844,7 +4887,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4879,11 +4922,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5017,7 +5060,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5033,17 +5076,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5287,7 +5330,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5316,7 +5359,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr ""
@@ -5434,6 +5477,11 @@ msgstr ""
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5481,7 +5529,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5506,14 +5554,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5591,8 +5639,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5753,18 +5801,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5778,18 +5832,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5803,7 +5857,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5812,6 +5866,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5841,6 +5899,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5878,6 +5941,10 @@ msgstr "الحالة"
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5892,7 +5959,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -5990,7 +6057,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6052,7 +6119,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6062,6 +6129,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6147,12 +6220,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6234,8 +6307,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6349,6 +6422,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6384,8 +6461,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6429,7 +6506,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6526,6 +6603,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "مجهول"
@@ -6948,7 +7026,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6956,7 +7034,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6966,6 +7044,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7001,7 +7083,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7032,13 +7114,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7149,7 +7231,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7171,11 +7253,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7222,8 +7304,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7414,8 +7496,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7424,9 +7506,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po
index 0d9d8e5af7..5483a86eda 100644
--- a/modules/luci-base/po/bg/base.po
+++ b/modules/luci-base/po/bg/base.po
@@ -348,8 +348,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -366,6 +366,10 @@ msgstr ""
msgid "Actions"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -379,12 +383,12 @@ msgid "Active Connections"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -464,6 +468,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -763,12 +775,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -875,7 +887,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -924,10 +936,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -935,10 +947,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -948,7 +960,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1019,7 +1031,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1097,7 +1109,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1105,7 +1117,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1123,7 +1135,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1190,7 +1202,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1222,10 +1234,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1313,7 +1325,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1338,8 +1350,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1461,7 +1473,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1646,6 +1658,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1667,7 +1680,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1710,10 +1724,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1753,8 +1767,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1950,8 +1964,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -1998,7 +2019,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2332,7 +2353,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2568,9 +2589,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2594,7 +2615,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2714,7 +2735,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2818,7 +2839,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2956,24 +2977,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3018,7 +3039,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3115,6 +3136,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3145,13 +3176,6 @@ msgstr ""
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 ""
@@ -3177,7 +3201,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3206,18 +3230,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3291,8 +3315,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3457,7 +3481,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3505,7 +3529,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3521,15 +3545,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3559,10 +3583,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3601,7 +3625,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3681,8 +3705,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3758,7 +3782,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3880,6 +3904,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3917,7 +3948,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3928,15 +3959,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3954,8 +3989,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -3982,6 +4017,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4014,16 +4053,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4079,8 +4118,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4341,24 +4380,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4371,6 +4410,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4382,10 +4425,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4403,18 +4446,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4658,10 +4701,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4843,7 +4886,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4878,11 +4921,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5016,7 +5059,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5032,17 +5075,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5286,7 +5329,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5315,7 +5358,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5433,6 +5476,11 @@ msgstr ""
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5480,7 +5528,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5505,14 +5553,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5590,8 +5638,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5752,18 +5800,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5777,18 +5831,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5802,7 +5856,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5811,6 +5865,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5840,6 +5898,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5877,6 +5940,10 @@ msgstr ""
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5891,7 +5958,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -5989,7 +6056,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6051,7 +6118,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6061,6 +6128,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6146,12 +6219,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6233,8 +6306,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6348,6 +6421,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6383,8 +6460,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6428,7 +6505,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6525,6 +6602,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6947,7 +7025,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6955,7 +7033,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6965,6 +7043,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7000,7 +7082,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7031,13 +7113,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7148,7 +7230,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7170,11 +7252,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7221,8 +7303,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7413,8 +7495,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7423,9 +7505,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po
index 8338e42b49..0b77f40361 100644
--- a/modules/luci-base/po/bn_BD/base.po
+++ b/modules/luci-base/po/bn_BD/base.po
@@ -342,8 +342,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -360,6 +360,10 @@ msgstr ""
msgid "Actions"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -373,12 +377,12 @@ msgid "Active Connections"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -458,6 +462,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -757,12 +769,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -869,7 +881,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr ""
@@ -918,10 +930,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -929,10 +941,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -942,7 +954,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1013,7 +1025,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1091,7 +1103,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1099,7 +1111,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1117,7 +1129,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1184,7 +1196,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1216,10 +1228,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1307,7 +1319,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1332,8 +1344,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1455,7 +1467,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr ""
@@ -1640,6 +1652,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1661,7 +1674,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1704,10 +1718,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1747,8 +1761,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1944,8 +1958,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -1992,7 +2013,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2326,7 +2347,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr ""
@@ -2562,9 +2583,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2588,7 +2609,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2708,7 +2729,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2812,7 +2833,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2950,24 +2971,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3012,7 +3033,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3109,6 +3130,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3139,13 +3170,6 @@ msgstr ""
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 ""
@@ -3171,7 +3195,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3200,18 +3224,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3285,8 +3309,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3451,7 +3475,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3499,7 +3523,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3515,15 +3539,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3553,10 +3577,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3595,7 +3619,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr ""
@@ -3675,8 +3699,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3752,7 +3776,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3874,6 +3898,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3911,7 +3942,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3922,15 +3953,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3948,8 +3983,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -3976,6 +4011,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4008,16 +4047,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4073,8 +4112,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4335,24 +4374,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4365,6 +4404,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4376,10 +4419,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4397,18 +4440,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4652,10 +4695,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4837,7 +4880,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4872,11 +4915,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5010,7 +5053,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5026,17 +5069,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5280,7 +5323,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5309,7 +5352,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr ""
@@ -5427,6 +5470,11 @@ msgstr ""
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5474,7 +5522,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5499,14 +5547,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5584,8 +5632,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5746,18 +5794,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5771,18 +5825,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5796,7 +5850,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5805,6 +5859,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5834,6 +5892,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5871,6 +5934,10 @@ msgstr ""
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5885,7 +5952,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -5983,7 +6050,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6045,7 +6112,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6055,6 +6122,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6140,12 +6213,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6227,8 +6300,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6342,6 +6415,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6377,8 +6454,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6422,7 +6499,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6519,6 +6596,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6941,7 +7019,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6949,7 +7027,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6959,6 +7037,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -6994,7 +7076,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7025,13 +7107,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7142,7 +7224,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7164,11 +7246,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7215,8 +7297,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7407,8 +7489,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7417,9 +7499,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po
index bc672b6a81..4e6e5fd392 100644
--- a/modules/luci-base/po/ca/base.po
+++ b/modules/luci-base/po/ca/base.po
@@ -365,8 +365,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -383,6 +383,10 @@ msgstr "Punt d'accés"
msgid "Actions"
msgstr "Accions"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Rutes <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> actives"
@@ -396,12 +400,12 @@ msgid "Active Connections"
msgstr "Connexions actives"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Arrendaments DHCP actius"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Arrendaments DHCPv6 actius"
@@ -482,6 +486,14 @@ msgstr "Afegeix una interfície nova..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Fitxers de Hosts addicionals"
@@ -785,12 +797,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Estacions associades"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -897,7 +909,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -949,10 +961,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -960,10 +972,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -973,7 +985,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Velocitat de bits"
@@ -1044,7 +1056,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1125,7 +1137,7 @@ msgstr "Canvia la paraula clau de l'administrador per accedir al dispositiu"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canal"
@@ -1133,7 +1145,7 @@ msgstr "Canal"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1151,7 +1163,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1226,7 +1238,7 @@ msgstr "Tanca la llista..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1258,10 +1270,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1349,7 +1361,7 @@ msgid "Country Code"
msgstr "Codi de País"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Crea / Assigna zona de tallafocs"
@@ -1374,8 +1386,8 @@ msgstr "Nivell de registre del Cron"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1499,7 +1511,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1686,6 +1698,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1707,7 +1720,8 @@ msgstr "Descarta les respostes RFC1918 des de dalt"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1754,10 +1768,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1797,8 +1811,8 @@ msgstr "Es requereix un domini"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1999,8 +2013,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2047,7 +2068,7 @@ msgstr "Mode d'encapsulació"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Xifratge"
@@ -2381,7 +2402,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2622,9 +2643,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Amfitrió"
@@ -2648,7 +2669,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nom de l’amfitrió"
@@ -2768,7 +2789,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Adreça IPv4"
@@ -2872,7 +2893,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Adreça IPv6"
@@ -3016,24 +3037,24 @@ msgstr "Temps d'espera d'inactivitat"
msgid "Inbound:"
msgstr "Entrant:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3078,7 +3099,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Instal·la extensions de protocol"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3175,6 +3196,16 @@ msgstr "Invàlid"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3205,13 +3236,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Usuari i/o contrasenya invàlids! Si us plau prova-ho de nou."
-#: 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 ""
@@ -3240,7 +3264,7 @@ msgstr "Uneix-te a la xarxa"
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3269,18 +3293,18 @@ msgstr "Clau"
msgid "Key #%d"
msgstr "Clau #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3354,8 +3378,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Temps d'arrendament restant"
@@ -3522,7 +3546,7 @@ msgid "Local IPv4 address"
msgstr "Adreça IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3570,7 +3594,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localitza les peticions"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3586,15 +3610,15 @@ msgstr "Registra les peticions"
msgid "Logging"
msgstr "Registre"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3624,10 +3648,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3666,7 +3690,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3746,8 +3770,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3823,7 +3847,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mode"
@@ -3947,6 +3971,13 @@ msgstr "Mou cap avall"
msgid "Move up"
msgstr "Mou cap amunt"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -3984,7 +4015,7 @@ msgstr "Candidats de servidor NTP"
msgid "Name"
msgstr "Nom"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nom de la nova xarxa"
@@ -3995,15 +4026,19 @@ msgstr "Navegació"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Xarxa"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Utilitats de xarxa"
@@ -4021,8 +4056,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4049,6 +4084,10 @@ msgstr "No"
msgid "No DHCP Server configured for this interface"
msgstr "Cap servidor DHCP configurat en aquesta interfície"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4081,16 +4120,16 @@ msgstr ""
msgid "No files found"
msgstr "Cap fitxer trobat"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "No hi ha informació disponible"
@@ -4146,8 +4185,8 @@ msgstr "Cap zona assignada"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Soroll"
@@ -4408,24 +4447,24 @@ msgstr "Sort."
msgid "Outbound:"
msgstr "Sortint:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4438,6 +4477,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4449,10 +4492,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4470,18 +4513,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4725,10 +4768,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4910,7 +4953,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "Calidad"
@@ -4945,11 +4988,11 @@ msgstr "Llindar RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Velocitat RX"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5085,7 +5128,7 @@ msgstr ""
msgid "Remove"
msgstr "Treu"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Reemplaça la configuració sense fil"
@@ -5101,17 +5144,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5357,7 +5400,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5386,7 +5429,7 @@ msgstr "Claus SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5504,6 +5547,11 @@ msgstr "Serveis"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5551,7 +5599,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5576,14 +5624,14 @@ msgstr "Atura aquesta interfície"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Senyal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5661,8 +5709,8 @@ msgstr "Origen"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5823,18 +5871,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5848,18 +5902,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5873,7 +5927,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Especifiqueu el clau de xifració secret aquí."
@@ -5882,6 +5936,10 @@ msgstr "Especifiqueu el clau de xifració secret aquí."
msgid "Start"
msgstr "Inici"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Prioritat d'inici"
@@ -5911,6 +5969,11 @@ msgstr "Rutes IPv4 estàtiques"
msgid "Static IPv6 Routes"
msgstr "Rutes IPv6 estàtiques"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Leases estàtics"
@@ -5948,6 +6011,10 @@ msgstr "Estat"
msgid "Stop"
msgstr "Atura"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5962,7 +6029,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Envia"
@@ -6060,7 +6127,7 @@ msgstr "Arrel del servidor TFTP"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Velocitat TX"
@@ -6122,7 +6189,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6134,6 +6201,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6222,12 +6295,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6319,8 +6392,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6447,6 +6520,10 @@ msgstr "Sincronització de l'hora"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Zona horària"
@@ -6486,8 +6563,8 @@ msgstr "Rastre de ruta"
msgid "Traffic"
msgstr "Trànsit"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6531,7 +6608,7 @@ msgid "Tx-Power"
msgstr "Potència Tx"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tipus"
@@ -6628,6 +6705,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Desconegut"
@@ -7050,7 +7128,7 @@ msgstr "Sistema obert WEP"
msgid "WEP Shared Key"
msgstr "Clau compartit WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Contrasenya WEP"
@@ -7058,7 +7136,7 @@ msgstr "Contrasenya WEP"
msgid "WMM Mode"
msgstr "Mode WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Contrasenya WPA"
@@ -7070,6 +7148,10 @@ msgstr ""
"La xifratge WPA requereix que sigui instal·lat el wpa_supplicant (pel mode "
"client) o el hostapd (pels modes AP i ad hoc)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Esperant el dispositiu..."
@@ -7105,7 +7187,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Sense fils"
@@ -7136,13 +7218,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "El dispositiu sense fils està inhabilitat"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "El dispositiu sense fils està sense associar"
@@ -7259,7 +7341,7 @@ msgid "bridged"
msgstr "pontejat"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7281,11 +7363,11 @@ msgstr "crea:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7332,8 +7414,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "caducat"
@@ -7526,8 +7608,8 @@ msgstr "desconegut"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "il·limitat"
@@ -7536,9 +7618,9 @@ msgstr "il·limitat"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po
index e59dfd8ff1..dab3548ef0 100644
--- a/modules/luci-base/po/cs/base.po
+++ b/modules/luci-base/po/cs/base.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-03-11 23:48+0000\n"
-"Last-Translator: Koli <lukas.koluch@gmail.com>\n"
+"PO-Revision-Date: 2020-11-02 22:20+0000\n"
+"Last-Translator: Zdeněk Opletal <zdenda81.opletal@gmail.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/luci/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.0-dev\n"
+"X-Generator: Weblate 4.3.2-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -92,7 +92,7 @@ msgstr "-- vyberte --"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
msgctxt "sstp log level value"
msgid "0"
-msgstr ""
+msgstr "0"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
msgid "0 = not using RSSI threshold, 1 = do not change driver default"
@@ -101,7 +101,7 @@ msgstr "0 = nepoužít práh RSSI, 1 = neměnit výchozí nastavení ovladače"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
msgctxt "sstp log level value"
msgid "1"
-msgstr ""
+msgstr "1"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231
msgid "1 Minute Load:"
@@ -114,17 +114,17 @@ msgstr "Vytížení za 15 minut:"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
msgctxt "sstp log level value"
msgid "2"
-msgstr ""
+msgstr "2"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
msgctxt "sstp log level value"
msgid "3"
-msgstr ""
+msgstr "3"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
msgctxt "sstp log level value"
msgid "4"
-msgstr ""
+msgstr "4"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442
msgid "4-character hexadecimal ID"
@@ -304,15 +304,15 @@ msgstr "ARP"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
msgid "ARP IP Targets"
-msgstr ""
+msgstr "Cíle ARP IP"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
msgid "ARP Interval"
-msgstr ""
+msgstr "Interval ARP"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
msgid "ARP Validation"
-msgstr ""
+msgstr "Ověření ARP"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
msgid "ARP mode to consider a slave as being up"
@@ -364,8 +364,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Rozhraní chybí"
@@ -382,6 +382,10 @@ msgstr "Přístupový bod"
msgid "Actions"
msgstr "Akce"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -399,12 +403,12 @@ msgid "Active Connections"
msgstr "Aktivní spojení"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktivní propůjčené DHCP adresy (leases)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktivní propůjčené DHCPv6 adresy (leases)"
@@ -420,11 +424,11 @@ msgstr "Ad-Hoc"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
msgid "Adaptive load balancing (balance-alb, 6)"
-msgstr ""
+msgstr "Adaptivní vyvažování zátěže (balance-alb, 6)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
-msgstr ""
+msgstr "Adaptivní vyvažování přenosové zátěže (balance-tlb, 5)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2167
#: modules/luci-base/htdocs/luci-static/resources/form.js:2170
@@ -484,6 +488,14 @@ msgstr "Přidat rozhraní..."
msgid "Add peer"
msgstr "Přidat protistranu"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Dodatečné Hosts soubory"
@@ -511,7 +523,7 @@ msgstr "Adresa pro přístup k místnímu relay bridge"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
msgid "Addresses"
-msgstr ""
+msgstr "Adresy"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
@@ -535,7 +547,7 @@ msgstr "Celkový vysílací výkon (ACTATP)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
msgid "Aggregation Selection Logic"
-msgstr ""
+msgstr "Logika výběru agregace"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
@@ -595,7 +607,7 @@ msgstr "Povolit vše mimo uvedené"
#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
msgid "Allow full UCI access for legacy applications"
-msgstr ""
+msgstr "Povolit plný přístup UCI pro starší aplikace"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892
msgid "Allow legacy 802.11b rates"
@@ -611,7 +623,7 @@ msgstr "Povolit localhost"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
msgid "Allow rebooting the device"
-msgstr ""
+msgstr "Povolit restartování zařízení"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Allow remote hosts to connect to local SSH forwarded ports"
@@ -625,7 +637,7 @@ msgstr "Povolit přihlašovaní root účtu pomocí hesla"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
msgid "Allow system feature probing"
-msgstr ""
+msgstr "Povolit zkoumání funkcí systému"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
msgid "Allow the <em>root</em> user to login with password"
@@ -646,11 +658,11 @@ msgstr "Vždy oznamovat výchozí směrovač"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
msgid "Always off (kernel: none)"
-msgstr ""
+msgstr "Vždy vypnuto (jádro: žádné)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
msgid "Always on (kernel: default-on)"
-msgstr ""
+msgstr "Vždy zapnuto (jádro: default-on)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
msgid ""
@@ -662,7 +674,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:603
msgid "An error occurred while saving the form:"
-msgstr ""
+msgstr "Při ukládání formuláře došlo k chybě:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
@@ -795,12 +807,12 @@ msgstr ""
"Přiřadit části prefixu pomocí šestnáctkového subprefixového ID k tomuto "
"rozhraní."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Připojení klienti"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Přiřazení"
@@ -911,7 +923,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -963,10 +975,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -974,10 +986,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -987,7 +999,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Přenosová rychlost"
@@ -1060,7 +1072,7 @@ msgstr "Volání se nezdařilo"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1073,19 +1085,19 @@ msgstr "Kategorie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
msgid "Certificate constraint (Domain)"
-msgstr ""
+msgstr "Omezení certifikátu (doména)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
msgid "Certificate constraint (SAN)"
-msgstr ""
+msgstr "Omezení certifikátu (SAN)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513
msgid "Certificate constraint (Subject)"
-msgstr ""
+msgstr "Omezení certifikátu (subjekt)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
msgid "Certificate constraint (Wildcard)"
-msgstr ""
+msgstr "Omezení certifikátu (wildcard)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1513
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571
@@ -1138,7 +1150,7 @@ msgstr "Změní administrátorské heslo pro přístup k zařízení"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanál"
@@ -1146,7 +1158,7 @@ msgstr "Kanál"
msgid "Check filesystems before mount"
msgstr "Zkontrolovat souborové systémy před připojením"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Zaškrtněte toto políčko pro odstranění stávajícících sítí z tohoto rádiového "
@@ -1166,7 +1178,7 @@ msgid "Choose mtdblock"
msgstr "Zvolte 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1244,7 +1256,7 @@ msgstr "Zavřít seznam…"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1281,12 +1293,12 @@ msgstr ""
"robustnosti při vyjednávání klíče, obzvláště v prostředích s velkým síťovým "
"provozem."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
-msgstr ""
+msgstr "Vypočítat odchozí kontrolní součet (volitelné)."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
@@ -1326,7 +1338,7 @@ msgstr "Pokus o připojení se nezdařil"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
msgid "Connection attempt failed."
-msgstr ""
+msgstr "Pokus o připojení se nezdařil."
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
@@ -1375,7 +1387,7 @@ msgid "Country Code"
msgstr "Kód země"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Vytvořit / přiřadit zónu brány firewall"
@@ -1400,8 +1412,8 @@ msgstr "Úroveň protokolování Cronu"
msgid "Current power"
msgstr "Stávající výkon"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1527,7 +1539,7 @@ msgid "DTIM Interval"
msgstr "Interval DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1626,7 +1638,7 @@ msgstr "Cíl"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
msgid "Destination port"
-msgstr ""
+msgstr "Cílový port"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
@@ -1662,7 +1674,7 @@ msgstr "Zařízení se restartuje…"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
msgid "Device not managed by ModemManager."
-msgstr ""
+msgstr "Zařízení není spravováno nástrojem ModemManager."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
msgid "Device unreachable!"
@@ -1716,6 +1728,7 @@ msgid "Disable this network"
msgstr "Vypnout tuto síť"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1737,7 +1750,8 @@ msgstr "Vyřadit upstream RFC1918 odpovědi"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Odpojit"
@@ -1748,7 +1762,7 @@ msgstr "Pokud o odpojení se nezdařil"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
msgid "Disconnection attempt failed."
-msgstr ""
+msgstr "Pokud o odpojení se nezdařil."
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
#: modules/luci-base/htdocs/luci-static/resources/form.js:2861
@@ -1785,10 +1799,10 @@ msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr ""
"Neukládat negativní odpovědi do mezipaměti (např. pro neexistující domény)"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1830,8 +1844,8 @@ msgstr "Vyžadována doména"
msgid "Domain whitelist"
msgstr "Whitelist domén"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Nefragmentovat"
@@ -2038,8 +2052,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Povolit příznak DF (Nefragmentovat) zapouzdřujících paketů."
@@ -2088,7 +2109,7 @@ msgstr "Režim zapouzdřování"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Šifrování"
@@ -2432,7 +2453,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2480,7 +2501,7 @@ msgstr "Metrika brány"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
msgid "General Settings"
-msgstr "Obecné nastavení"
+msgstr "Obecná nastavení"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
@@ -2554,7 +2575,7 @@ msgstr ""
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
msgid "Grant access to SSH configuration"
-msgstr ""
+msgstr "Udělit přístup ke konfiguraci SSH"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
msgid "Grant access to basic LuCI procedures"
@@ -2562,11 +2583,11 @@ msgstr ""
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
msgid "Grant access to crontab configuration"
-msgstr ""
+msgstr "Udělit přístup ke konfiguraci crontab"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
msgid "Grant access to firewall status"
-msgstr ""
+msgstr "Udělit přístup ke stavu brány firewall"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
msgid "Grant access to flash operations"
@@ -2574,47 +2595,47 @@ msgstr ""
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:86
msgid "Grant access to main status display"
-msgstr ""
+msgstr "Udělit přístup k hlavnímu zobrazení stavu"
#: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
msgid "Grant access to mmcli"
-msgstr ""
+msgstr "Udělit přístup k mmcli"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
msgid "Grant access to mount configuration"
-msgstr ""
+msgstr "Udělit přístup ke konfiguraci připojení úložišť"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
msgid "Grant access to network configuration"
-msgstr ""
+msgstr "Udělit přístup ke konfiguraci sítě"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:46
msgid "Grant access to network diagnostic tools"
-msgstr ""
+msgstr "Udělit přístup k síťovým diagnostickým nástrojům"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
msgid "Grant access to network status information"
-msgstr ""
+msgstr "Udělit přístup k informacím o stavu sítě"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
msgid "Grant access to process status"
-msgstr ""
+msgstr "Udělit přístup ke stavu procesů"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
msgid "Grant access to realtime statistics"
-msgstr ""
+msgstr "Udělit přístup ke statistikám v reálném čase"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
msgid "Grant access to startup configuration"
-msgstr ""
+msgstr "Udělit přístup ke konfiguraci spouštění"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
msgid "Grant access to system configuration"
-msgstr ""
+msgstr "Udělit přístup ke konfiguraci systému"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
msgid "Grant access to system logs"
-msgstr ""
+msgstr "Udělit přístup k systémovým protokolům"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
msgid "Grant access to the system route status"
@@ -2622,7 +2643,7 @@ msgstr ""
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
msgid "Grant access to wireless status display"
-msgstr ""
+msgstr "Udělit přístup k zobrazení stavu bezdrátového připojení"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
msgid "Group Password"
@@ -2670,9 +2691,9 @@ msgid "Hide empty chains"
msgstr "Skrýt prázdné řetězy"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Hostitel"
@@ -2697,7 +2718,7 @@ msgstr "Obsah značky Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Název počítače"
@@ -2817,14 +2838,14 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4 adresa"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
msgid "IPv4-Gateway"
-msgstr ""
+msgstr "IPv4 brána"
#: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
@@ -2918,10 +2939,10 @@ msgstr "IPv6 suffix"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
msgid "IPv6 support"
-msgstr ""
+msgstr "Podpora IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6 adresa"
@@ -2955,7 +2976,7 @@ msgstr "Je-li zapnuto, je povoleno 1DES"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
msgid "If checked, adds \"+ipv6\" to the pppd options"
-msgstr ""
+msgstr "Pokud je zaškrtnuto, přidá \"+ipv6\" do možností pppd"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "If checked, encryption is disabled"
@@ -3067,26 +3088,26 @@ msgstr "Časový limit nečinnosti"
msgid "Inbound:"
msgstr "Příchozí:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 ""
+msgstr "Příchozí kontrolní součet"
#: 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 key"
+msgstr "Příchozí klíč"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
-msgstr ""
+msgstr "Příchozí serializace"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
msgid "Info"
@@ -3129,7 +3150,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Instalovat protokolové rozšíření…"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3137,7 +3158,7 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/map.htm:43
msgid "Insufficient permissions to read UCI configuration."
-msgstr ""
+msgstr "Nedostatečná oprávnění ke čtení konfigurace UCI."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:464
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
@@ -3227,6 +3248,16 @@ msgstr "Neplatná vstupní hodnota"
msgid "Invalid Base64 key string"
msgstr "Neplatný Base64 řetězec klíče"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3258,13 +3289,6 @@ msgstr "Neplatná šestnáctková hodnota"
msgid "Invalid username and/or password! Please try again."
msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu."
-#: 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 "Izolovat klienty"
@@ -3292,7 +3316,7 @@ msgstr "Připojit k síti"
msgid "Join Network: Wireless Scan"
msgstr "Připojit k síti: Vyhledání bezdrátových sítí"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Připojování k síti: %q"
@@ -3321,18 +3345,18 @@ msgstr "Klíč"
msgid "Key #%d"
msgstr "Klíč #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3372,7 +3396,7 @@ msgstr "LCP interval upozornění"
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
msgid "LED Configuration"
-msgstr ""
+msgstr "Konfigurace LED"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:974
msgid "LLC"
@@ -3406,8 +3430,8 @@ msgstr "Doba zapůjčení"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Zbývající doba trvání zápůjčky"
@@ -3568,7 +3592,7 @@ msgstr "Načítání zobrazení…"
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
msgid "Local IP address"
-msgstr ""
+msgstr "Místní IP adresa"
#: modules/luci-base/htdocs/luci-static/resources/network.js:12
#: modules/luci-compat/luasrc/model/network.lua:30
@@ -3591,7 +3615,7 @@ msgid "Local IPv4 address"
msgstr "Místní IPv4 adresa"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3645,7 +3669,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lokalizační dotazy"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3661,15 +3685,15 @@ msgstr "Dotazy pro logování"
msgid "Logging"
msgstr "Protokolování"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3699,10 +3723,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3741,7 +3765,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3824,8 +3848,8 @@ msgstr "Maximální vysílací výkon"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3901,7 +3925,7 @@ msgstr "Doména mobility"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mód"
@@ -3933,7 +3957,7 @@ msgstr "Modemové zařízení"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
msgid "Modem disconnection in progress. Please wait."
-msgstr ""
+msgstr "Probíhá odpojování modemu. Počkejte prosím."
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
@@ -4026,6 +4050,13 @@ msgstr "Přesunout dolů"
msgid "Move up"
msgstr "Přesunout nahoru"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4063,7 +4094,7 @@ msgstr "Kandidáti NTP serveru"
msgid "Name"
msgstr "Název"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Název nové sítě"
@@ -4074,15 +4105,19 @@ msgstr "Navigace"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Síť"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Síťové nástroje"
@@ -4100,14 +4135,14 @@ msgstr ""
msgid "Network device is not present"
msgstr "Síťové zařízení není k dispozici"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
-msgstr ""
+msgstr "Síťové rozhraní"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
msgid "New interface for \"%s\" can not be created: %s"
-msgstr ""
+msgstr "Nové rozhraní pro \"%s\" nelze vytvořit: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713
msgid "New interface name…"
@@ -4128,6 +4163,10 @@ msgstr "Ne"
msgid "No DHCP Server configured for this interface"
msgstr "Pro toto rozhraní není nastaven žádný DHCP server"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Bez šifrování"
@@ -4160,16 +4199,16 @@ msgstr "V tomto adresáři nejsou žádné položky"
msgid "No files found"
msgstr "Nebyly nalezeny žádné soubory"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Údaje nejsou k dispozici"
@@ -4225,8 +4264,8 @@ msgstr "Žádná zóna nepřiřazena"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Šum"
@@ -4397,11 +4436,11 @@ msgstr "Provozní frekvence"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1971
#: modules/luci-base/htdocs/luci-static/resources/form.js:3653
msgid "Option \"%s\" contains an invalid input value."
-msgstr ""
+msgstr "Volba \"%s\" obsahuje neplatnou vstupní hodnotu."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1984
msgid "Option \"%s\" must not be empty."
-msgstr ""
+msgstr "Volba \"%s\" nesmí být prázdná."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4037
msgid "Option changed"
@@ -4502,26 +4541,26 @@ msgstr "Ven"
msgid "Outbound:"
msgstr "Odchozí:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
-msgstr ""
+msgstr "Odchozí kontrolní součet"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
-msgstr ""
+msgstr "Odchozí klíč"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
-msgstr ""
+msgstr "Odchozí serializace"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
msgid "Output Interface"
@@ -4532,6 +4571,10 @@ msgstr "Výstupní rozhraní"
msgid "Output zone"
msgstr "Výstupní zóna"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4543,10 +4586,10 @@ msgstr "Přepsat MAC adresu"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4564,18 +4607,18 @@ msgstr "Přepsat MAC adresu"
msgid "Override MTU"
msgstr "Přepsat MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Přepsat TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4821,10 +4864,10 @@ msgstr "Protistrany"
msgid "Perfect Forward Secrecy"
msgstr "Perfektní dopředná bezpečnost"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -5012,7 +5055,7 @@ msgstr "Veřejný prefix směrovaná k tomuto zařízení pro distribuci klient
msgid "QMI Cellular"
msgstr "Mobilní QMI"
-#: 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:140
msgid "Quality"
msgstr "Kvalita"
@@ -5049,11 +5092,11 @@ msgstr "Práh RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "RX Rate"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Rychlost přijímání / vysílání"
@@ -5180,18 +5223,18 @@ msgstr "Vzdálená IPv4 adresa nebo FQDN"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
msgid "Remote IPv6 address"
-msgstr ""
+msgstr "Vzdálená IPv6 adresa"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
msgid "Remote IPv6 address or FQDN"
-msgstr ""
+msgstr "Vzdálená IPv6 adresa nebo FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
msgid "Remove"
msgstr "Odstranit"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Nahradit bezdrátovou konfiguraci"
@@ -5207,17 +5250,17 @@ msgstr "Vyžádat IPv6 prefix délky"
msgid "Request timeout"
msgstr "Časový limit požadavku"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5471,7 +5514,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "Odstup signálu od šumu"
@@ -5500,17 +5543,17 @@ msgstr "SSH klíče"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
msgid "SSTP"
-msgstr ""
+msgstr "SSTP"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
msgid "SSTP Server"
-msgstr ""
+msgstr "Server SSTP"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
msgid "SWAP"
@@ -5623,6 +5666,11 @@ msgstr "Služby"
msgid "Session expired"
msgstr "Sezení vypršelo"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Nastavit VPN jako výchozí trasu"
@@ -5672,7 +5720,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Silně chybné sekundy (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Krátký ochranný interval (GI)"
@@ -5697,14 +5745,14 @@ msgstr "Shodit toho rozhraní"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signál"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Signál / šum"
@@ -5785,10 +5833,10 @@ msgstr "Zdroj"
msgid "Source Address"
msgstr "Zdrojová adresa"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
-msgstr ""
+msgstr "Zdrojové rozhraní"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
msgid ""
@@ -5952,18 +6000,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Zadejte typ služby (ToS, Type of Service)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5979,18 +6033,18 @@ msgstr ""
"Zadejte hodnotu TTL (Time to Live) pro zapouzdřovací paket jiný než výchozí "
"(64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6006,7 +6060,7 @@ msgstr ""
"Zadejte hodnotu MTU (maximální přenosová jednotka) jinou než výchozí (1280 "
"bajtů)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Zde nastavte soukromý šifrovací klíč."
@@ -6015,6 +6069,10 @@ msgstr "Zde nastavte soukromý šifrovací klíč."
msgid "Start"
msgstr "Start"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Priorita spouštění"
@@ -6044,6 +6102,11 @@ msgstr "Statické IPv4 trasy"
msgid "Static IPv6 Routes"
msgstr "Statické IPv6 trasy"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Statické zápůjčky"
@@ -6084,6 +6147,10 @@ msgstr "Stav"
msgid "Stop"
msgstr "Zastavit"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6098,7 +6165,7 @@ msgid "Strong"
msgstr "Silné"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Odeslat"
@@ -6197,7 +6264,7 @@ msgstr "Kořenový adresář TFTP serveru"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Rychlost TX"
@@ -6261,7 +6328,7 @@ msgid ""
"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
msgstr "IPv6 prefix přidělený poskytovatelm většinou končí <code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6273,6 +6340,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "Konfigurační soubor nelze načíst z důvodu následující chyby:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6359,7 +6432,7 @@ msgstr "Délka IPv6 prefixu v bitech"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
msgid "The local IPv4 address"
-msgstr ""
+msgstr "Místní IPv4 adresa"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
@@ -6370,15 +6443,15 @@ msgstr "Lokální IPv4 adresa, přes kterou je tunel vytvořen (volitelné)."
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
msgid "The local IPv4 netmask"
-msgstr ""
+msgstr "Síťová maska místní IPv4 adresy"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Název sítě je již používán"
@@ -6480,8 +6553,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Žádné aktivní zápůjčky"
@@ -6611,7 +6684,7 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet"
-msgstr "Tato sekce zatím neobsahuje žádné hodnoty"
+msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
msgid "Time Synchronization"
@@ -6621,6 +6694,10 @@ msgstr "Synchronizace času"
msgid "Time interval for rekeying GTK"
msgstr "Časový interval pro obnovování klíčů GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Časové pásmo"
@@ -6659,8 +6736,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Provoz"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6704,7 +6781,7 @@ msgid "Tx-Power"
msgstr "Tx-Power"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Typ"
@@ -6783,7 +6860,7 @@ msgstr "Nelze přeložit název hostitele druhé strany"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:284
msgid "Unable to restart firewall: %s"
-msgstr ""
+msgstr "Nelze restartovat bránu firewall: %s"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:342
@@ -6801,6 +6878,7 @@ msgstr "Neočekávaný formát dat odpovědi"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Neznámé"
@@ -7180,7 +7258,7 @@ msgstr ""
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
msgid "VXLANv6 (RFC7348)"
-msgstr ""
+msgstr "VXLANv6 (RFC7348)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556
@@ -7203,7 +7281,7 @@ msgstr ""
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
msgid "Value must not be empty"
-msgstr ""
+msgstr "Hodnota nesmí být prázdná"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
msgid "Vendor"
@@ -7236,7 +7314,7 @@ msgstr "WEP Open System"
msgid "WEP Shared Key"
msgstr "Sdílený klíč WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP heslo"
@@ -7244,7 +7322,7 @@ msgstr "WEP heslo"
msgid "WMM Mode"
msgstr "Režim WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA heslo"
@@ -7256,6 +7334,10 @@ msgstr ""
"Šifrování WPA vyžaduje nainstalovaný wpa_supplicant (pro klientský režim) "
"nebo hostapd (pro AP a ad-hoc režim)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Čekání na zařízení…"
@@ -7294,7 +7376,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Bezdrátová síť"
@@ -7325,13 +7407,13 @@ msgstr "Migrace bezdrátové konfigurace"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Bezdrátová síť vypnuta"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Bezdrátová síť nespojena"
@@ -7448,7 +7530,7 @@ msgid "bridged"
msgstr "přemostěný"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7470,11 +7552,11 @@ msgstr "vytvořit:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7521,8 +7603,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "expirovaná"
@@ -7598,7 +7680,7 @@ msgstr "minuty/minut"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
msgid "netif_carrier_ok()"
-msgstr ""
+msgstr "netif_carrier_ok()"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
msgid "no"
@@ -7715,8 +7797,8 @@ msgstr "neznámý"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "neomezený"
@@ -7725,9 +7807,9 @@ msgstr "neomezený"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -7921,6 +8003,9 @@ msgstr "ano"
msgid "« Back"
msgstr "« Zpět"
+#~ msgid "Invalid value"
+#~ msgstr "Neplatná hodnota"
+
#~ msgid "Enable/Disable"
#~ msgstr "Povolit/Zakázat"
diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po
index d4bef70142..70bce6ffa8 100644
--- a/modules/luci-base/po/de/base.po
+++ b/modules/luci-base/po/de/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 17:57+0200\n"
-"PO-Revision-Date: 2020-10-20 05:26+0000\n"
+"PO-Revision-Date: 2020-11-21 12:21+0000\n"
"Last-Translator: Andreas Götz <agoetz@tdt.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/luci/de/>"
"\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.3.1-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -370,8 +370,8 @@ msgid "ATU-C System Vendor ID"
msgstr "<abbr title=\"Internet Protokoll Version 4\">IPv4</abbr>-Adresse"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Nicht vorhandene Schnittstelle"
@@ -388,6 +388,10 @@ msgstr "Zugangspunkt"
msgid "Actions"
msgstr "Aktionen"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Aktive <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routen"
@@ -401,12 +405,12 @@ msgid "Active Connections"
msgstr "Aktive Verbindungen"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktive DHCP-Leases"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktive DHCPv6-Leases"
@@ -486,6 +490,14 @@ msgstr "Neue Schnittstelle hinzufügen..."
msgid "Add peer"
msgstr "Peer hinzufügen"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Zusätzliche Hosts-Dateien"
@@ -808,12 +820,12 @@ msgstr ""
"Der Schnittstelle zugewiesene Partitionen des Adressraums werden anhand "
"dieser hexadezimalen ID gewählt."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Assoziierte Clients"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Assoziierungen"
@@ -921,7 +933,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -976,10 +988,10 @@ msgstr ""
"Dynamisch an Schnittstellen binden statt die globale Standardadresse zu "
"benutzen (als Standard für Linux-Systeme empfohlen)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -987,10 +999,10 @@ msgstr ""
msgid "Bind interface"
msgstr "An Schnittstelle binden"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1000,7 +1012,7 @@ msgstr "Tunnelendpunkt an diese Schnittstelle binden (optional)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitrate"
@@ -1073,7 +1085,7 @@ msgstr "Anruf fehlgeschlagen"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1161,7 +1173,7 @@ msgstr "Ändert das Administratorpasswort für den Zugriff auf dieses Gerät"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanal"
@@ -1169,7 +1181,7 @@ msgstr "Kanal"
msgid "Check filesystems before mount"
msgstr "Dateisysteme prüfen"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Diese Option setzen um existierende Netzwerke auf dem Radio zu löschen."
@@ -1188,7 +1200,7 @@ msgid "Choose mtdblock"
msgstr "Wähle \"mtdblock\" Datei"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1268,7 +1280,7 @@ msgstr "Schließe Liste..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1304,10 +1316,10 @@ msgstr ""
"Kompatibilitätsprobleme verursachen und die Zuverlässigkeit von "
"Schlüsselerneuerungen in ausgelasteten Umgebungen verringern."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Prüfsummen für zu sendende Pakete berechnet (optional)"
@@ -1402,7 +1414,7 @@ msgid "Country Code"
msgstr "Ländercode"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Firewallzone anlegen / zuweisen"
@@ -1427,8 +1439,8 @@ msgstr "Cron Protokoll-Level"
msgid "Current power"
msgstr "Aktuelle Sendeleistung"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1555,7 +1567,7 @@ msgid "DTIM Interval"
msgstr "DTIM-Intervall"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1744,6 +1756,7 @@ msgid "Disable this network"
msgstr "Dieses Netzwerk deaktivieren"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1765,7 +1778,8 @@ msgstr "Eingehende RFC1918-Antworten verwerfen"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Trennen"
@@ -1815,10 +1829,10 @@ msgstr ""
"Negative Antworten nicht zwischenspeichern, z.B. bei nicht existierenden "
"Domains"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr "Keine Hostroute zum Peer erstellen (optional)."
@@ -1861,8 +1875,8 @@ msgstr "Anfragen nur mit Domain"
msgid "Domain whitelist"
msgstr "Domain-Whitelist"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Nicht fragmentieren"
@@ -1897,7 +1911,7 @@ msgstr "Downstream SNR-Offset"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2620
msgid "Drag to reorder"
-msgstr "Ziehen zum Umsortieren"
+msgstr "Ziehen zur Neuanordnung"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
msgid "Drop Duplicate Frames"
@@ -2072,8 +2086,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "RX-Prüfsumme aktivieren"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Das DF-Bit (Nicht fragmentieren) auf gekapselten Paketen setzen."
@@ -2122,7 +2143,7 @@ msgstr "Kapselung"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Verschlüsselung"
@@ -2466,7 +2487,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2707,9 +2728,9 @@ msgid "Hide empty chains"
msgstr "Leere Chains ausblenden"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Host"
@@ -2733,7 +2754,7 @@ msgstr "\"Host-Uniq\"-Bezeichner"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Hostname"
@@ -2853,7 +2874,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-Adresse"
@@ -2957,7 +2978,7 @@ msgid "IPv6 support"
msgstr "IPv6-Unterstützung"
#: 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-Adresse"
@@ -3108,24 +3129,24 @@ msgstr "Timeout bei Inaktivität"
msgid "Inbound:"
msgstr "Eingehend:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Incoming checksum"
msgstr "Eingehende Prüfsumme"
-#: 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 "Eingehender Schlüssel"
-
#: 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 key"
+msgstr "Eingehender Schlüssel"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Eingehende Serialisierung"
@@ -3170,7 +3191,7 @@ msgstr "Einschränkung für inneres Zertifikat (Wildcard)"
msgid "Install protocol extensions..."
msgstr "Installiere Protokoll-Erweiterungen..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3270,6 +3291,16 @@ msgstr "Ungültige Eingabe"
msgid "Invalid Base64 key string"
msgstr "Ungültige Base64-Zeichenkette"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "Ungültige VLAN ID angegeben! Nur IDs zwischen %d und %d sind erlaubt."
@@ -3303,13 +3334,6 @@ msgid "Invalid username and/or password! Please try again."
msgstr ""
"Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen."
-#: 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 "Ungültiger Wert"
-
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
msgstr "Clients isolieren"
@@ -3337,7 +3361,7 @@ msgstr "Netzwerk beitreten"
msgid "Join Network: Wireless Scan"
msgstr "Netzwerk beitreten: Suche nach Netzwerken"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Trete Netzwerk %q bei"
@@ -3366,18 +3390,18 @@ msgstr "Schlüssel"
msgid "Key #%d"
msgstr "Schlüssel Nr. %d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
msgstr "Schlüssel für eingehende Pakete (optional)."
-#: 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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr "Schlüssel für ausgehende Pakete (optional)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3451,8 +3475,8 @@ msgstr "Laufzeit"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Verbleibende Gültigkeit"
@@ -3635,7 +3659,7 @@ msgid "Local IPv4 address"
msgstr "Lokale IPv4 Adresse"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3690,7 +3714,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lokalisiere Anfragen"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Auf BSSID beschränken"
@@ -3706,8 +3730,8 @@ msgstr "Schreibe Abfragelog"
msgid "Logging"
msgstr "Protokollierung"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3715,8 +3739,8 @@ msgstr ""
"Logisches Netzwerk, aus dem der lokale Endpunkt ausgewählt werden kann, wenn "
"die lokale IPv6-Adresse leer ist und kein WAN-IPv6 verfügbar ist (optional)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
"Logisches Netzwerk, zu dem der Tunnel hinzugefügt wird (überbrückt) "
@@ -3748,10 +3772,10 @@ msgid "MAC Address For The Actor"
msgstr "MAC-Adresse für den Actor"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3790,7 +3814,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3870,8 +3894,8 @@ msgstr "Maximale Sendeleistung"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3947,7 +3971,7 @@ msgstr "Mobilitätsbereich"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Modus"
@@ -4073,6 +4097,13 @@ msgstr "Nach unten schieben"
msgid "Move up"
msgstr "Nach oben schieben"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4110,7 +4141,7 @@ msgstr "NTP Server Kandidaten"
msgid "Name"
msgstr "Name"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Name des neuen Netzwerkes"
@@ -4121,15 +4152,19 @@ msgstr "Navigation"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Netzwerk"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Netzwerk-Werkzeuge"
@@ -4147,8 +4182,8 @@ msgstr "Netzwerkgeräteaktivität (Kernel: netdev)"
msgid "Network device is not present"
msgstr "Netzwerkgerät ist nicht vorhanden"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Netzwerkschnittstelle"
@@ -4175,6 +4210,10 @@ msgstr "Nein"
msgid "No DHCP Server configured for this interface"
msgstr "Kein DHCP Server auf dieser Schnittstelle eingerichtet"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Keine Verschlüsselung"
@@ -4207,16 +4246,16 @@ msgstr "Keine Einträge in diesem Verzeichnis"
msgid "No files found"
msgstr "Keine Dateien gefunden"
-#: 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
+#: 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 "No host route"
msgstr "Keine Hostroute"
#: 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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Keine Informationen verfügbar"
@@ -4273,8 +4312,8 @@ msgstr "Keine Zone zugewiesen"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Rauschen"
@@ -4553,24 +4592,24 @@ msgstr "Aus"
msgid "Outbound:"
msgstr "Ausgehend:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
msgstr "Ausgehende Prüfsumme"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
msgstr "Ausgehender Schlüssel"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Ausgehende Serialisierung"
@@ -4583,6 +4622,10 @@ msgstr "Ausgehende Schnittstelle"
msgid "Output zone"
msgstr "Output-Zone"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4594,10 +4637,10 @@ msgstr "MAC-Adresse überschreiben"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4615,18 +4658,18 @@ msgstr "MAC-Adresse überschreiben"
msgid "Override MTU"
msgstr "MTU-Wert überschreiben"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "TOS-Wert überschreiben"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4819,7 +4862,7 @@ msgstr "Pfad zum CA-Zertifikat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
msgid "Path to Client-Certificate"
-msgstr "Pfad zu Client-Zertifikat"
+msgstr "Pfad zum Client-Zertifikat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
msgid "Path to Private Key"
@@ -4872,10 +4915,10 @@ msgstr "Verbindungspartner"
msgid "Perfect Forward Secrecy"
msgstr "Perfect Forward Secrecy"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Serialisierung ausgehender Pakete durchführen (optional)."
@@ -5072,7 +5115,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Cellular"
-#: 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:140
msgid "Quality"
msgstr "Qualität"
@@ -5110,11 +5153,11 @@ msgstr "RTS/CTS-Schwelle"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "RX-Rate"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "RX-Rate / TX-Rate"
@@ -5252,7 +5295,7 @@ msgstr "Remote-IPv6-Adresse oder FQDN"
msgid "Remove"
msgstr "Entfernen"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "WLAN-Konfiguration ersetzen"
@@ -5268,17 +5311,17 @@ msgstr "IPv6-Präfix dieser Länge anfordern"
msgid "Request timeout"
msgstr "Anfrage-Timeout"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Require incoming checksum (optional)."
msgstr "Eingehende Prüfsumme erforderlich (optional)."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Serialisierung eingehender Pakete erforderlich (optional)."
@@ -5533,7 +5576,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5562,7 +5605,7 @@ msgstr "SSH-Schlüssel"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5687,6 +5730,11 @@ msgstr "Dienste"
msgid "Session expired"
msgstr "Sitzung abgelaufen"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "VPN als Defaultroute benutzen"
@@ -5739,7 +5787,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "schwerwiegende Fehlersekunden (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "kurzes Guardintervall"
@@ -5764,14 +5812,14 @@ msgstr "Diese Schnittstelle herunterfahren"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Signal / Rauschen"
@@ -5853,8 +5901,8 @@ msgstr "Quelle"
msgid "Source Address"
msgstr "Quelladresse"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Quellschnittstelle"
@@ -6061,21 +6109,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Setzt einen spezifischen TOS (Type of Service) Wert."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Geben Sie einen Diensttypen (Type of Service) an. Kann entweder <code>erben</"
-"code> (der äußere Header erbt den Wert des inneren Headers) oder ein "
-"hexadezimaler Wert sein, der mit <code>0x</code> beginnt (optional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6093,21 +6144,18 @@ msgstr ""
"Setzt eine spezifische TTL (Time to Live) für gekapselte Pakete, anstatt der "
"standardmäßigen 64."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
-"Geben Sie eine Traffic-klasse an. Kann entweder <code>erben</code> (der "
-"äußere Header erbt den Wert des inneren Headers) oder ein hexadezimaler Wert "
-"sein, der mit <code>0x</code> beginnt (optional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6125,7 +6173,7 @@ msgstr ""
"Setzt eine spezifische MTU (Maximum Transmission Unit) abweichend von den "
"standardmäßigen 1280 Bytes."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Geben Sie hier den geheimen Netzwerkschlüssel an."
@@ -6134,6 +6182,10 @@ msgstr "Geben Sie hier den geheimen Netzwerkschlüssel an."
msgid "Start"
msgstr "Start"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Startpriorität"
@@ -6163,6 +6215,11 @@ msgstr "Statische IPv4 Routen"
msgid "Static IPv6 Routes"
msgstr "Statische IPv6 Routen"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Statische Einträge"
@@ -6204,6 +6261,10 @@ msgstr "Status"
msgid "Stop"
msgstr "Stopp"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6218,7 +6279,7 @@ msgid "Strong"
msgstr "Stark"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Absenden"
@@ -6320,7 +6381,7 @@ msgstr "TFTP Wurzelverzeichnis"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "TX-Rate"
@@ -6393,7 +6454,7 @@ msgstr ""
"Vom Provider zugewiesenes IPv6-Präfix, endet normalerweise mit <code>::</"
"code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6407,6 +6468,12 @@ msgstr ""
"Die Konfigurationsdatei konnte aufgrund der folgenden Fehler nicht geladen "
"werden:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6512,12 +6579,12 @@ msgid "The local IPv4 netmask"
msgstr "Die lokale IPv4-Netzmaske"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "Die lokale IPv6-Adresse, über die der Tunnel erstellt wird (optional)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Der Netzwerkname wird bereits verwendet"
@@ -6626,8 +6693,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Es gibt keine aktiven Leases"
@@ -6770,6 +6837,10 @@ msgstr "Zeitsynchronisation"
msgid "Time interval for rekeying GTK"
msgstr "Zeitintervall für die neubestimmung des Gruppenschlüssels"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Zeitzone"
@@ -6810,8 +6881,8 @@ msgstr "Routenverfolgung"
msgid "Traffic"
msgstr "Traffic"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Traffic-Klasse"
@@ -6855,7 +6926,7 @@ msgid "Tx-Power"
msgstr "Sendestärke"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Typ"
@@ -6952,6 +7023,7 @@ msgstr "Unerwartetes Antwortdatenformat"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Unbekannt"
@@ -7394,7 +7466,7 @@ msgstr "WEP Open System"
msgid "WEP Shared Key"
msgstr "WEP Shared Key"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP Schlüssel"
@@ -7402,7 +7474,7 @@ msgstr "WEP Schlüssel"
msgid "WMM Mode"
msgstr "WMM Modus"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA Schlüssel"
@@ -7414,6 +7486,10 @@ msgstr ""
"WPA-Verschlüsselung benötigt wpa_supplicant (für Client-Modus) oder hostapd "
"(für AP oder Ad-Hoc Modus)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Warte auf Gerät..."
@@ -7454,7 +7530,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "WLAN"
@@ -7485,13 +7561,13 @@ msgstr "WLAN-Konfiguration migrieren"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "WLAN ist deaktiviert"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "WLAN ist nicht assoziiert"
@@ -7614,7 +7690,7 @@ msgid "bridged"
msgstr "überbrückt"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7636,11 +7712,11 @@ msgstr "erstelle:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7687,8 +7763,8 @@ msgstr "z.B.: abwerfen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "abgelaufen"
@@ -7780,7 +7856,7 @@ msgstr "nicht-leeren Wert"
#: modules/luci-base/htdocs/luci-static/resources/form.js:3007
msgid "none"
-msgstr "keine"
+msgstr "kein"
#: 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
@@ -7881,8 +7957,8 @@ msgstr "unbekannt"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "unlimitiert"
@@ -7891,9 +7967,9 @@ msgstr "unlimitiert"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8087,6 +8163,28 @@ msgstr "ja"
msgid "« Back"
msgstr "« Zurück"
+#~ msgid "Invalid value"
+#~ msgstr "Ungültiger Wert"
+
+#~ 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 ""
+#~ "Geben Sie einen Diensttypen (Type of Service) an. Kann entweder "
+#~ "<code>erben</code> (der äußere Header erbt den Wert des inneren Headers) "
+#~ "oder ein hexadezimaler Wert sein, der mit <code>0x</code> beginnt "
+#~ "(optional)."
+
+#~ 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 ""
+#~ "Geben Sie eine Traffic-klasse an. Kann entweder <code>erben</code> (der "
+#~ "äußere Header erbt den Wert des inneren Headers) oder ein hexadezimaler "
+#~ "Wert sein, der mit <code>0x</code> beginnt (optional)."
+
#~ msgid "default-on (kernel)"
#~ msgstr "standardmäßig aktiv (Kernel)"
diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po
index 947de798b3..f1f6836d57 100644
--- a/modules/luci-base/po/el/base.po
+++ b/modules/luci-base/po/el/base.po
@@ -362,8 +362,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -380,6 +380,10 @@ msgstr "Σημείο Πρόσβασης"
msgid "Actions"
msgstr "Ενέργειες"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -395,12 +399,12 @@ msgid "Active Connections"
msgstr "Ενεργές Συνδέσεις"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -481,6 +485,14 @@ msgstr "Προσθήκη νέας διεπαφής..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Επιπλέον αρχεία Hosts"
@@ -787,12 +799,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Συνδεδεμένοι Σταθμοί"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -899,7 +911,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -952,10 +964,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -963,10 +975,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -976,7 +988,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Ρυθμός δεδομένων"
@@ -1047,7 +1059,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1125,7 +1137,7 @@ msgstr "Αλλάζει τον κωδικό διαχειριστή για πρό
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Κανάλι"
@@ -1133,7 +1145,7 @@ msgstr "Κανάλι"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1151,7 +1163,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1227,7 +1239,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1259,10 +1271,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1350,7 +1362,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Δημιουργία / Ανάθεση ζώνης τείχους προστασίας"
@@ -1376,8 +1388,8 @@ msgstr "Επίπεδο Καταγραφής Cron"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1501,7 +1513,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1690,6 +1702,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1711,7 +1724,8 @@ msgstr "Αγνόησε τις απαντήσεις ανοδικής ροής RFC
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1760,10 +1774,10 @@ 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1805,8 +1819,8 @@ msgstr "Απαίτηση για όνομα τομέα"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -2010,8 +2024,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2058,7 +2079,7 @@ msgstr "Λειτουργία ενθυλάκωσης"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Κρυπτογράφηση"
@@ -2397,7 +2418,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2635,9 +2656,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2662,7 +2683,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Όνομα Υπολογιστή"
@@ -2782,7 +2803,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-Διεύθυνση"
@@ -2886,7 +2907,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -3034,24 +3055,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3096,7 +3117,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Εγκατάσταση επεκτάσεων πρωτοκόλλου..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3193,6 +3214,16 @@ msgstr "Άκυρη τιμή εισόδου"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3223,13 +3254,6 @@ msgstr ""
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 ""
@@ -3258,7 +3282,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3287,18 +3311,18 @@ msgstr "Κλειδί"
msgid "Key #%d"
msgstr "Κλειδί #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3372,8 +3396,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Υπόλοιπο χρόνου Lease"
@@ -3538,7 +3562,7 @@ msgid "Local IPv4 address"
msgstr "Τοπική διεύθυνση IPv4"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3586,7 +3610,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Τοπικά ερωτήματα"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3602,15 +3626,15 @@ msgstr "Καταγραφή ερωτημάτων"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3640,10 +3664,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3682,7 +3706,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3763,8 +3787,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3840,7 +3864,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Λειτουργία"
@@ -3964,6 +3988,13 @@ msgstr "Μετακίνηση κάτω"
msgid "Move up"
msgstr "Μετακίνηση πάνω"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4001,7 +4032,7 @@ msgstr ""
msgid "Name"
msgstr "Όνομα"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Όνομα νέου δικτύου"
@@ -4012,15 +4043,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Εργαλεία Δικτύου"
@@ -4038,8 +4073,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4066,6 +4101,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr "Δεν υπάρχει ρυθμισμένος DHCP εξυπηρετητής για αυτή τη διεπαφή"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4098,16 +4137,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες"
@@ -4163,8 +4202,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Θόρυβος"
@@ -4425,24 +4464,24 @@ msgstr "Έξοδος"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4455,6 +4494,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4466,10 +4509,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4487,18 +4530,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4742,10 +4785,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4928,7 +4971,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4963,11 +5006,11 @@ msgstr "Όριο RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5103,7 +5146,7 @@ msgstr ""
msgid "Remove"
msgstr "Αφαίρεση"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Αντικατάσταση ρυθμίσεων ασύρματης σύνδεσης"
@@ -5119,17 +5162,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5376,7 +5419,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5405,7 +5448,7 @@ msgstr "Κλειδιά SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5523,6 +5566,11 @@ msgstr "Υπηρεσίες"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5570,7 +5618,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5595,14 +5643,14 @@ msgstr "Απενεργοποίηση αυτής της διεπαφής"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Σήμα"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5680,8 +5728,8 @@ msgstr "Πηγή"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5842,18 +5890,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5867,18 +5921,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5892,7 +5946,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Ορίστε το κρυφό κλειδί κρυπτογράφησης."
@@ -5901,6 +5955,10 @@ msgstr "Ορίστε το κρυφό κλειδί κρυπτογράφησης."
msgid "Start"
msgstr "Αρχή"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Προτεραιότητα εκκίνησης"
@@ -5930,6 +5988,11 @@ msgstr "Στατικές Διαδρομές IPv4"
msgid "Static IPv6 Routes"
msgstr "Στατικές Διαδρομές IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Στατικά Leases"
@@ -5967,6 +6030,10 @@ msgstr "Κατάσταση"
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5981,7 +6048,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Υποβολή"
@@ -6079,7 +6146,7 @@ msgstr ""
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6141,7 +6208,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6153,6 +6220,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6240,12 +6313,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6334,8 +6407,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6455,6 +6528,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Ζώνη ώρας"
@@ -6494,8 +6571,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6539,7 +6616,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Τύπος"
@@ -6636,6 +6713,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Άγνωστο"
@@ -7058,7 +7136,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr "Μοιραζόμενο κλειδί WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Κωδική φράση WEP"
@@ -7066,7 +7144,7 @@ msgstr "Κωδική φράση WEP"
msgid "WMM Mode"
msgstr "Υποστήριξη WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Κωδική φράση WPA"
@@ -7076,6 +7154,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7111,7 +7193,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Ασύρματο"
@@ -7142,13 +7224,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Το ασύρματο δίκτυο μη συνδεδεμένο"
@@ -7264,7 +7346,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7286,11 +7368,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7337,8 +7419,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7531,8 +7613,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "απεριόριστα"
@@ -7541,9 +7623,9 @@ msgstr "απεριόριστα"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po
index 6496796cca..22c25f1779 100644
--- a/modules/luci-base/po/en/base.po
+++ b/modules/luci-base/po/en/base.po
@@ -362,8 +362,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -380,6 +380,10 @@ msgstr "Access Point"
msgid "Actions"
msgstr "Actions"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
@@ -393,12 +397,12 @@ msgid "Active Connections"
msgstr "Active Connections"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -478,6 +482,14 @@ msgstr "Add new interface..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Additional Hosts files"
@@ -778,12 +790,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Associated Stations"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -890,7 +902,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -942,10 +954,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -953,10 +965,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -966,7 +978,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitrate"
@@ -1037,7 +1049,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1115,7 +1127,7 @@ msgstr "Changes the administrator password for accessing the device"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Channel"
@@ -1123,7 +1135,7 @@ msgstr "Channel"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1141,7 +1153,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1216,7 +1228,7 @@ msgstr "Close list..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1248,10 +1260,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1339,7 +1351,7 @@ msgid "Country Code"
msgstr "Country Code"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Create / Assign firewall-zone"
@@ -1364,8 +1376,8 @@ msgstr "Cron Log Level"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1489,7 +1501,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr ""
@@ -1677,6 +1689,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1698,7 +1711,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1745,10 +1759,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1788,8 +1802,8 @@ msgstr "Domain required"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1990,8 +2004,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2038,7 +2059,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Encryption"
@@ -2372,7 +2393,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr ""
@@ -2610,9 +2631,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2636,7 +2657,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Hostname"
@@ -2756,7 +2777,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2860,7 +2881,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -3003,24 +3024,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3065,7 +3086,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3162,6 +3183,16 @@ msgstr "Invalid input value"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3192,13 +3223,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Invalid username and/or password! Please try again."
-#: 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 ""
@@ -3227,7 +3251,7 @@ msgstr "Join Network"
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3256,18 +3280,18 @@ msgstr "Key"
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3341,8 +3365,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Lease time remaining"
@@ -3507,7 +3531,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3555,7 +3579,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localise queries"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3571,15 +3595,15 @@ msgstr "Log queries"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3609,10 +3633,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3651,7 +3675,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr ""
@@ -3731,8 +3755,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3808,7 +3832,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mode"
@@ -3932,6 +3956,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -3969,7 +4000,7 @@ msgstr ""
msgid "Name"
msgstr "Name"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Name of the new network"
@@ -3980,15 +4011,19 @@ msgstr "Navigation"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Network"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -4006,8 +4041,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4034,6 +4069,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4066,16 +4105,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4131,8 +4170,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Noise"
@@ -4393,24 +4432,24 @@ msgstr "Out"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4423,6 +4462,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4434,10 +4477,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4455,18 +4498,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4710,10 +4753,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4895,7 +4938,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4930,11 +4973,11 @@ msgstr "RTS/CTS Threshold"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5070,7 +5113,7 @@ msgstr ""
msgid "Remove"
msgstr "Remove"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5086,17 +5129,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5342,7 +5385,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5371,7 +5414,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5489,6 +5532,11 @@ msgstr "Services"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5536,7 +5584,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5561,14 +5609,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5646,8 +5694,8 @@ msgstr "Source"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5808,18 +5856,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5833,18 +5887,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5858,7 +5912,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5867,6 +5921,10 @@ msgstr ""
msgid "Start"
msgstr "Start"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Start priority"
@@ -5896,6 +5954,11 @@ msgstr "Static IPv4 Routes"
msgid "Static IPv6 Routes"
msgstr "Static IPv6 Routes"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Static Leases"
@@ -5933,6 +5996,10 @@ msgstr "Status"
msgid "Stop"
msgstr "Stop"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5947,7 +6014,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Submit"
@@ -6045,7 +6112,7 @@ msgstr ""
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6107,7 +6174,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6117,6 +6184,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6204,12 +6277,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6298,8 +6371,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6417,6 +6490,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Timezone"
@@ -6455,8 +6532,8 @@ msgstr ""
msgid "Traffic"
msgstr "Traffic"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6500,7 +6577,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Type"
@@ -6597,6 +6674,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -7019,7 +7097,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -7027,7 +7105,7 @@ msgstr ""
msgid "WMM Mode"
msgstr "WMM Mode"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -7039,6 +7117,10 @@ msgstr ""
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
"and ad-hoc mode) to be installed."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7074,7 +7156,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7105,13 +7187,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7225,7 +7307,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7247,11 +7329,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7298,8 +7380,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7492,8 +7574,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7502,9 +7584,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po
index 040f4a1cad..91cdeb143d 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-10-20 05:26+0000\n"
+"PO-Revision-Date: 2020-11-15 19:47+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>"
"\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.3.1-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -247,8 +247,8 @@ msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
"Protocol\">DHCP</abbr> leases"
msgstr ""
-"Máximo de concesiones <abbr title=\"Dynamic Host Configuration Protocol\""
-">DHCP</abbr>"
+"Máximo de concesiones <abbr title=\"Dynamic Host Configuration Protocol"
+"\">DHCP</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
msgid ""
@@ -370,8 +370,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ID del proveedor del sistema ATU-C"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Interfaz ausente"
@@ -388,6 +388,10 @@ msgstr "AP"
msgid "Actions"
msgstr "Acciones"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Activo"
+
#: 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 "Rutas <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> activas"
@@ -401,12 +405,12 @@ msgid "Active Connections"
msgstr "Conexiones activas"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:92
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Concesiones DHCP activas"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:94
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Concesiones DHCPv6 activas"
@@ -488,6 +492,14 @@ msgstr "Añadir nueva interfaz..."
msgid "Add peer"
msgstr "Añadir par"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "Añadir a la lista negra"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "Añadir a la lista blanca"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Archivos de hosts adicionales"
@@ -531,7 +543,7 @@ msgstr "Administración"
#: 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 "Configuraciones avanzadas"
+msgstr "Configuración avanzada"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
msgid "Aggregate Transmit Power (ACTATP)"
@@ -807,12 +819,12 @@ msgstr ""
"Asigna partes de prefijo utilizando este ID de subprefijo hexadecimal para "
"esta interfaz."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Dispositivos conectados"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Dispositivos"
@@ -923,7 +935,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -978,10 +990,10 @@ msgstr ""
"Enlace dinámico a las interfaces en lugar de la dirección del comodín "
"(recomendado como linux predeterminado)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -989,10 +1001,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Interfaz de enlace"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1002,7 +1014,7 @@ msgstr "Enlazar el túnel a esta interfaz (opcional)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitrate"
@@ -1074,7 +1086,7 @@ msgstr "Llamada fallida"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1162,7 +1174,7 @@ msgstr "Cambie la contraseña del administrador para acceder al dispositivo"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canal"
@@ -1170,7 +1182,7 @@ msgstr "Canal"
msgid "Check filesystems before mount"
msgstr "Comprobar los sistemas de archivos antes de montar"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "Marque esta opción para eliminar las redes existentes de esta radio."
@@ -1188,7 +1200,7 @@ msgid "Choose mtdblock"
msgstr "Elegir 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1267,7 +1279,7 @@ msgstr "Cerrar lista..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1304,10 +1316,10 @@ msgstr ""
"interoperabilidad y reducir la robustez de la negociación de claves, "
"especialmente en entornos con una gran carga de tráfico."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Calcular la suma de verificación saliente (opcional)."
@@ -1403,7 +1415,7 @@ msgid "Country Code"
msgstr "Código de país"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Crear / Asignar zona de cortafuegos"
@@ -1428,8 +1440,8 @@ msgstr "Nivel de registro de cron"
msgid "Current power"
msgstr "Potencia actual"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1555,7 +1567,7 @@ msgid "DTIM Interval"
msgstr "Intervalo DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1745,6 +1757,7 @@ msgid "Disable this network"
msgstr "Desactivar esta red"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1766,7 +1779,8 @@ msgstr "Descartar las respuestas de RFC1918 aguas arriba"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Desconectar"
@@ -1813,10 +1827,10 @@ msgstr ""
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr "No guardar respuestas negativas, por ejemplo dominios inexistentes"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr "No crear una ruta de host al par (opcional)."
@@ -1858,8 +1872,8 @@ msgstr "Requerir dominio"
msgid "Domain whitelist"
msgstr "Lista blanca de dominios"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "No fragmentar"
@@ -1932,7 +1946,7 @@ msgid ""
"having static leases will be served."
msgstr ""
"Reparte direcciones DHCP dinámicamente a los clientes. Si se desactiva, sólo "
-"se dará a clientes con direcciones estáticas."
+"se dará a clientes con concesiones estáticas."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
msgid "EA-bits length"
@@ -2068,8 +2082,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "Activar suma de verificación rx"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "Activar la compatibilidad con el tráfico de multidifusión (opcional)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2119,7 +2140,7 @@ msgstr "Modo de encapsulado"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Encriptación"
@@ -2464,7 +2485,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2704,9 +2725,9 @@ msgid "Hide empty chains"
msgstr "Ocultar cadenas vacias"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Host"
@@ -2730,7 +2751,7 @@ msgstr "Contenido de la etiqueta Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nombre del host"
@@ -2850,7 +2871,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Dirección IPv4"
@@ -2954,7 +2975,7 @@ msgid "IPv6 support"
msgstr "Soporte IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Dirección IPv6"
@@ -3106,24 +3127,24 @@ msgstr "Espera de inactividad"
msgid "Inbound:"
msgstr "Entrante:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Incoming checksum"
msgstr "Suma de comprobación entrante"
-#: 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 "Clave entrante"
-
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
#: 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 key"
+msgstr "Clave entrante"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Serialización entrante"
@@ -3168,7 +3189,7 @@ msgstr "Restricción de certificado interno (Comodín)"
msgid "Install protocol extensions..."
msgstr "Instalar extensiones de protocolo..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3267,6 +3288,16 @@ msgstr "Inválido"
msgid "Invalid Base64 key string"
msgstr "Cadena de clave Base64 inválida"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr "Valor de TOS no válido, esperado 00..FF o heredado"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+msgstr "Valor de clase de tráfico no válido, esperado 00..FF o heredado"
+
#: 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 "¡ID de VLAN no válido! Sólo se permiten IDs entre %d y %d."
@@ -3299,13 +3330,6 @@ msgstr "Valor hexadecimal inválido"
msgid "Invalid username and/or password! Please try again."
msgstr "¡Nombre de usuario y/o contraseña no válido/s!. Por favor reintente."
-#: 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 "Valor inválido"
-
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
msgstr "Aislar clientes"
@@ -3333,7 +3357,7 @@ msgstr "Conectar"
msgid "Join Network: Wireless Scan"
msgstr "Conectarse a una red: Búsqueda de redes Wi-Fi"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Conectarse a: %q"
@@ -3362,18 +3386,18 @@ msgstr "Clave"
msgid "Key #%d"
msgstr "Clave #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
msgstr "Clave para paquetes entrantes (opcional)."
-#: 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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr "Clave para paquetes salientes (opcional)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3447,8 +3471,8 @@ msgstr "Tiempo de concesión"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:32
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:59
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Tiempo de concesión restante"
@@ -3628,7 +3652,7 @@ msgid "Local IPv4 address"
msgstr "Dirección IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3682,7 +3706,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localizar consultas"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Bloquear a BSSID"
@@ -3698,8 +3722,8 @@ msgstr "Registrar consultas"
msgid "Logging"
msgstr "Inicio de sesión"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3707,8 +3731,8 @@ msgstr ""
"Red lógica desde la cual seleccionar el punto final local si la dirección "
"IPv6 local está vacía y no hay WAN IPv6 disponible (opcional)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Red lógica a la que se agregará al túnel (puenteado) (opcional)."
@@ -3738,10 +3762,10 @@ msgid "MAC Address For The Actor"
msgstr "Dirección MAC para el actor"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3780,7 +3804,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3862,8 +3886,8 @@ msgstr "Máxima potencia de transmisión"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3939,7 +3963,7 @@ msgstr "Dominio de movilidad"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Modo"
@@ -4065,6 +4089,13 @@ msgstr "Mover hacia abajo"
msgid "Move up"
msgstr "Mover hacia arriba"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr "Multidifusión"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4102,7 +4133,7 @@ msgstr "Servidores NTP a consultar"
msgid "Name"
msgstr "Nombre"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nombre de la nueva red"
@@ -4113,15 +4144,19 @@ msgstr "Navegación"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Red"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr "SSID de la red"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Utilidades de red"
@@ -4139,8 +4174,8 @@ msgstr "Actividad del dispositivo de red (kernel: netdev)"
msgid "Network device is not present"
msgstr "El dispositivo de red no está presente"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Interfaz de red"
@@ -4167,6 +4202,10 @@ msgstr "No"
msgid "No DHCP Server configured for this interface"
msgstr "No se ha configurado un servidor DHCP para esta interfaz"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "Sin datos"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Sin encriptación"
@@ -4199,16 +4238,16 @@ msgstr "No hay entradas en este directorio"
msgid "No files found"
msgstr "No se han encontrado archivos"
-#: 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
+#: 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 "No host route"
msgstr "Sin ruta de host"
#: 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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "No hay información disponible"
@@ -4264,8 +4303,8 @@ msgstr "Sin zona asignada"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Ruido"
@@ -4544,24 +4583,24 @@ msgstr "Salida"
msgid "Outbound:"
msgstr "Saliente:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
msgstr "Suma de comprobación saliente"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
msgstr "Clave saliente"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Serialización saliente"
@@ -4574,6 +4613,10 @@ msgstr "Interfaz de salida"
msgid "Output zone"
msgstr "Zona de salida"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+msgstr "Superposición"
+
#: 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
@@ -4585,10 +4628,10 @@ msgstr "Reemplazar dirección MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4606,18 +4649,18 @@ msgstr "Reemplazar dirección MAC"
msgid "Override MTU"
msgstr "Reemplazar MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Reemplazar TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4863,10 +4906,10 @@ msgstr "Pares"
msgid "Perfect Forward Secrecy"
msgstr "Reenvío secreto perfecto"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Realizar la serialización de paquetes salientes (opcional)."
@@ -5061,7 +5104,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Celular"
-#: 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:140
msgid "Quality"
msgstr "Calidad"
@@ -5098,11 +5141,11 @@ msgstr "Umbral RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Tasa RX"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Tasa RX / TX"
@@ -5240,7 +5283,7 @@ msgstr "Dirección IPv6 remota o FQDN"
msgid "Remove"
msgstr "Eliminar"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Cambiar la configuración Wi-Fi"
@@ -5256,17 +5299,17 @@ msgstr "Solicitud IPv6-prefijo de longitud"
msgid "Request timeout"
msgstr "Tiempo de espera de solicitud terminada"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Require incoming checksum (optional)."
msgstr "Requerir suma de comprobación entrante (opcional)."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Requiere la serialización de paquetes entrantes (opcional)."
@@ -5519,7 +5562,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5548,7 +5591,7 @@ msgstr "Claves SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5673,6 +5716,11 @@ msgstr "Servicios"
msgid "Session expired"
msgstr "Sesión expirada"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr "Establecer estática"
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Establecer VPN como ruta predeterminada"
@@ -5723,7 +5771,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Segundos con errores graves (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "GI corto"
@@ -5748,14 +5796,14 @@ msgstr "Apagar esta interfaz"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Señal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Señal / Ruido"
@@ -5836,8 +5884,8 @@ msgstr "Origen"
msgid "Source Address"
msgstr "Dirección de origen"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Interfaz fuente"
@@ -6042,21 +6090,30 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Especifique un TOS (Tipo de Servicio)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Especifique un TOS (Tipo de servicio). Puede ser <code>heredar</code> (el "
+"Especifique un TOS (tipo de servicio). Puede ser <code>heredar</code> (el "
"encabezado externo hereda el valor del encabezado interno) o un valor "
-"hexadecimal que comienza con <code>0x</code> (opcional)."
+"hexadecimal <code>00..FF</code> (opcional)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+"Especifique un TOS (tipo de servicio). Puede ser <code>heredar</code> (el "
+"encabezado externo hereda el valor del encabezado interno), o un valor "
+"hexadecimal <code>00..FF</code> (opcional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6074,21 +6131,21 @@ msgstr ""
"Especifique un TTL (Tiempo de vida) para el paquete de encapsulación que no "
"sea el predeterminado (64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
"Especifique una clase de tráfico. Puede ser <code>heredar</code> (el "
"encabezado externo hereda el valor del encabezado interno) o un valor "
-"hexadecimal que comienza con <code>0x</code> (opcional)."
+"hexadecimal <code>00..FF</code> (opcional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6106,7 +6163,7 @@ msgstr ""
"Especifique una MTU (Unidad de transmisión máxima) distinta de la "
"predeterminada (1280 bytes)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Especifique la clave de encriptación."
@@ -6115,6 +6172,10 @@ msgstr "Especifique la clave de encriptación."
msgid "Start"
msgstr "Iniciar"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr "Iniciar WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Prioridad de inicio"
@@ -6144,6 +6205,11 @@ msgstr "Rutas IPv4 estáticas"
msgid "Static IPv6 Routes"
msgstr "Rutas IPv6 estáticas"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "Concesión estática"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Concesiones estáticas"
@@ -6185,6 +6251,10 @@ msgstr "Estado"
msgid "Stop"
msgstr "Detener"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+msgstr "Detener WPS"
+
#: 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"
@@ -6199,7 +6269,7 @@ msgid "Strong"
msgstr "Fuerte"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Enviar"
@@ -6299,7 +6369,7 @@ msgstr "Raíz del servidor TFTP"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Tasa TX"
@@ -6368,7 +6438,7 @@ msgid ""
msgstr ""
"El prefijo IPv6 asignado por el proveedor, suele termina con <code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6381,6 +6451,14 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
"El archivo de configuración no se pudo cargar debido al siguiente error:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+msgstr ""
+"El SSID correcto debe especificarse manualmente para conectarse a una red Wi-"
+"Fi oculta"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4129
msgid ""
"The device could not be reached within %d seconds after applying the pending "
@@ -6484,12 +6562,12 @@ msgid "The local IPv4 netmask"
msgstr "La máscara de red IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "La dirección IPv6 local sobre la cual se crea el túnel (opcional)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "El nombre de la red ya está en uso"
@@ -6591,8 +6669,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "No hay concesiones activas"
@@ -6728,6 +6806,10 @@ msgstr "Sincronización horaria"
msgid "Time interval for rekeying GTK"
msgstr "Intervalo de tiempo para reprogramar GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "Desconectado"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Zona horaria"
@@ -6767,8 +6849,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Tráfico"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Clase de tráfico"
@@ -6812,7 +6894,7 @@ msgid "Tx-Power"
msgstr "Potencia-TX"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tipo"
@@ -6909,6 +6991,7 @@ msgstr "Formato de datos de respuesta inesperado"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Desconocido"
@@ -7353,7 +7436,7 @@ msgstr "WEP (sistema abierto)"
msgid "WEP Shared Key"
msgstr "WEP (clave compartida)"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Contraseña WEP"
@@ -7361,7 +7444,7 @@ msgstr "Contraseña WEP"
msgid "WMM Mode"
msgstr "Activar WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Contraseña WPA"
@@ -7373,6 +7456,10 @@ msgstr ""
"Para el encriptado WPA se necesita que estén instalados \"wpa_supplicant\" "
"para el modo cliente y/o \"hostapd\" para los modos AP y ad-hoc."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr "Estado de WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Esperando por el dispositivo..."
@@ -7411,7 +7498,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Wi-Fi"
@@ -7442,13 +7529,13 @@ msgstr "Migración de configuración Wi-Fi"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Red Wi-Fi desactivada"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Red Wi-Fi no asociada"
@@ -7570,7 +7657,7 @@ msgid "bridged"
msgstr "Puenteado"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7592,11 +7679,11 @@ msgstr "Crear:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7643,8 +7730,8 @@ msgstr "p. ej: vertedero"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "expirado"
@@ -7837,8 +7924,8 @@ msgstr "Desconocido"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "ilimitado"
@@ -7847,9 +7934,9 @@ msgstr "ilimitado"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8043,6 +8130,27 @@ msgstr "Si"
msgid "« Back"
msgstr "« Volver"
+#~ msgid "Invalid value"
+#~ msgstr "Valor inválido"
+
+#~ 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 ""
+#~ "Especifique un TOS (Tipo de servicio). Puede ser <code>heredar</code> (el "
+#~ "encabezado externo hereda el valor del encabezado interno) o un valor "
+#~ "hexadecimal que comienza con <code>0x</code> (opcional)."
+
+#~ 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 ""
+#~ "Especifique una clase de tráfico. Puede ser <code>heredar</code> (el "
+#~ "encabezado externo hereda el valor del encabezado interno) o un valor "
+#~ "hexadecimal que comienza con <code>0x</code> (opcional)."
+
#~ msgid "default-on (kernel)"
#~ msgstr "defecto en (kernel)"
diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po
index 3c6b5d16ce..7d9e9b0cf5 100644
--- a/modules/luci-base/po/fi/base.po
+++ b/modules/luci-base/po/fi/base.po
@@ -365,8 +365,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C-järjestelmän toimittajan tunnus"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Puuttuva sovitin"
@@ -383,6 +383,10 @@ msgstr "Tukiasema"
msgid "Actions"
msgstr "Toiminnot"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -399,12 +403,12 @@ msgid "Active Connections"
msgstr "Aktiiviset yhteydet"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktiiviset DHCP-lainat"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktiiviset DHCPv6-lainat"
@@ -486,6 +490,14 @@ msgstr "Lisää uusi sovitin..."
msgid "Add peer"
msgstr "Lisää vertaiskone"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Hosts-tiedostot"
@@ -799,12 +811,12 @@ msgstr ""
"Määritä etuliitteiden osat käyttämällä tätä heksadesimaalista "
"alaliitetunnusta tälle sovittimelle."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Liittyneet asemat"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Liitokset"
@@ -912,7 +924,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -967,10 +979,10 @@ msgstr ""
"Yhdistä dynaamisesti sovittimiin yleisosoitteen sijasta (suositellaan linux-"
"oletuksekseksi)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -978,10 +990,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Yhdistä sovitin"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -991,7 +1003,7 @@ msgstr "Yhdistä tunneli tähän sovittimeen."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bittinopeus"
@@ -1062,7 +1074,7 @@ msgstr "Kutsu epäonnistui"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1148,7 +1160,7 @@ msgstr "Muuttaa järjestelmänvalvojan salasanaa"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanava"
@@ -1156,7 +1168,7 @@ msgstr "Kanava"
msgid "Check filesystems before mount"
msgstr "Tarkista tiedostojärjestelmät ennen liittämistä"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Valitse tämä, jos haluat poistaa olemassa olevat verkot tästä radiosta."
@@ -1175,7 +1187,7 @@ msgid "Choose mtdblock"
msgstr "Valitse 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1253,7 +1265,7 @@ msgstr "Sulje luettelo ..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1290,10 +1302,10 @@ msgstr ""
"yhteysneuvottelujen luotettavuutta erityisesti ympäristöissä, joissa "
"liikennekuormitusta on paljon."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Laske lähtevä tarkistussumma."
@@ -1387,7 +1399,7 @@ msgid "Country Code"
msgstr "Maatunnus"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Luo / määritä palomuurivyöhyke"
@@ -1412,8 +1424,8 @@ msgstr "Cron-lokin taso"
msgid "Current power"
msgstr "Nykyinen teho"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1540,7 +1552,7 @@ msgid "DTIM Interval"
msgstr "DTIM-aikaväli"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1729,6 +1741,7 @@ msgid "Disable this network"
msgstr "Poista tämä verkko käytöstä"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1750,7 +1763,8 @@ msgstr "Hylkää ulkoverkosta tulevat RFC1918-vastaukset"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Irroita"
@@ -1798,10 +1812,10 @@ msgstr ""
"Älä tallenna välimuistiin negatiivisia vastauksia, esim. olemattomien "
"domainien osalta"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr "Älä luo reittiä kohteelle (valinnainen)."
@@ -1843,8 +1857,8 @@ msgstr "Vaadi verkkotunnus"
msgid "Domain whitelist"
msgstr "Sallitut verkkotunnukset"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Älä pirstoa"
@@ -2054,8 +2068,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "Ota käyttöön rx-tarkistussumma"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Ota käyttöön kapselointipakettien DF (Don't Fragment) -lippu."
@@ -2104,7 +2125,7 @@ msgstr "Kapselointitila"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Salaus"
@@ -2446,7 +2467,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2685,9 +2706,9 @@ msgid "Hide empty chains"
msgstr "Piilota tyhjät ketjut"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Palvelin"
@@ -2711,7 +2732,7 @@ msgstr "Host-Uniq-tunnisteen sisältö"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Palvelinnimi"
@@ -2831,7 +2852,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-osoite"
@@ -2935,7 +2956,7 @@ msgid "IPv6 support"
msgstr "IPv6 tuki"
#: 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-osoite"
@@ -3081,24 +3102,24 @@ msgstr "Käyttämättömyyden aikakatkaisu"
msgid "Inbound:"
msgstr "Sisään tuleva:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Incoming checksum"
msgstr "Tuleva tarkistussumma"
-#: 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 "Tuleva avain"
-
#: 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 key"
+msgstr "Tuleva avain"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Tuleva sarjoitus"
@@ -3143,7 +3164,7 @@ msgstr "Sisäinen varmennerajoitus (jokerimerkki)"
msgid "Install protocol extensions..."
msgstr "Asenna protokollalaajennukset..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3242,6 +3263,16 @@ msgstr "Virheellinen"
msgid "Invalid Base64 key string"
msgstr "Epäkelpo Base64 merkkijono"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3275,13 +3306,6 @@ msgstr "Virheellinen heksadesimaaliarvo"
msgid "Invalid username and/or password! Please try again."
msgstr "Virheellinen käyttäjätunnus tai salasana! Yritä uudelleen."
-#: 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 "Virheellinen arvo"
-
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
msgstr "Eristä asiakkaat"
@@ -3309,7 +3333,7 @@ msgstr "Liity verkkoon"
msgid "Join Network: Wireless Scan"
msgstr "Liity verkkoon: Langattoman verkon etsintä"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Liittyminen verkkoon: %q"
@@ -3338,18 +3362,18 @@ msgstr "Avain"
msgid "Key #%d"
msgstr "Avain #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
msgstr "Avain tuleville paketeille."
-#: 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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr "Avain lähteville paketeille."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3423,8 +3447,8 @@ msgstr "Laina-aika"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Laina-aikaa jäljellä"
@@ -3604,7 +3628,7 @@ msgid "Local IPv4 address"
msgstr "Paikallinen IPv4-osoite"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3657,7 +3681,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lokalisoi kyselyt"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Lukitse BSSID:hen"
@@ -3673,8 +3697,8 @@ msgstr "Lokikyselyt"
msgid "Logging"
msgstr "Kirjaaminen"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3682,8 +3706,8 @@ msgstr ""
"Looginen verkko, josta valitaan paikallinen päätepiste, jos paikallinen IPv6-"
"osoite on tyhjä eikä WAN IPv6 ole käytettävissä (valinnainen)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Looginen verkko, johon tunneli lisätään (sillataan) (valinnainen)."
@@ -3713,10 +3737,10 @@ msgid "MAC Address For The Actor"
msgstr "Toimijan MAC-osoite"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3755,7 +3779,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "Mhz"
@@ -3837,8 +3861,8 @@ msgstr "Suurin lähetysteho"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3914,7 +3938,7 @@ msgstr "Liikkuvuusalue"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Tila"
@@ -4040,6 +4064,13 @@ msgstr "Siirrä alas"
msgid "Move up"
msgstr "Siirrä ylös"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4077,7 +4108,7 @@ msgstr "NTP-palvelin ehdokkaat"
msgid "Name"
msgstr "Nimi"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Uuden verkon nimi"
@@ -4088,15 +4119,19 @@ msgstr "Siirtyminen"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Verkko"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Verkon apuohjelmat"
@@ -4114,8 +4149,8 @@ msgstr "Verkkolaitteiden toiminta (ydin: netdev)"
msgid "Network device is not present"
msgstr "Verkkolaitetta ei ole"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Sovitin"
@@ -4142,6 +4177,10 @@ msgstr "Ei"
msgid "No DHCP Server configured for this interface"
msgstr "Tälle sovittimille ei ole määritetty DHCP-palvelua"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Ei salausta"
@@ -4174,16 +4213,16 @@ msgstr "Tässä hakemistossa ei ole merkintöjä"
msgid "No files found"
msgstr "Tiedostoja ei löytynyt"
-#: 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
+#: 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 "No host route"
msgstr "Ei reittiä kohteelle"
#: 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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Ei tietoja saatavilla"
@@ -4239,8 +4278,8 @@ msgstr "Vyöhykettä ei ole määritetty"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Kohina"
@@ -4517,24 +4556,24 @@ msgstr "Ulos"
msgid "Outbound:"
msgstr "Lähtevä:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
msgstr "Lähtevä tarkistusumma"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
msgstr "Lähtevä avain"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Lähtevä sarjoitus"
@@ -4547,6 +4586,10 @@ msgstr "Lähtösovitin"
msgid "Output zone"
msgstr "Lähtöalue"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4558,10 +4601,10 @@ msgstr "Ohita MAC-osoite"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4579,18 +4622,18 @@ msgstr "Ohita MAC-osoite"
msgid "Override MTU"
msgstr "Ohita MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Ohita TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4836,10 +4879,10 @@ msgstr "Vertaiskoneet"
msgid "Perfect Forward Secrecy"
msgstr "Perfect Forward Secrecy"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Sarjoita lähtevät paketit."
@@ -5032,7 +5075,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Cellular"
-#: 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:140
msgid "Quality"
msgstr "Laatu"
@@ -5069,11 +5112,11 @@ msgstr "RTS/CTS-kynnysarvo"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "RX-nopeus"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "RX-nopeus / TX-nopeus"
@@ -5211,7 +5254,7 @@ msgstr "Etäpään IPv6 osoite tai verkkonimi"
msgid "Remove"
msgstr "Poista"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Korvaa langattoman verkon määritys"
@@ -5227,17 +5270,17 @@ msgstr "Pyydettävä IPv6-etuliiteen pituus"
msgid "Request timeout"
msgstr "Pyynnön aikakatkaisu"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Require incoming checksum (optional)."
msgstr "Vaadi tarkistussumma tulevalta liikenteeltä."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Vaadi tulevien pakettien sarjoitus."
@@ -5491,7 +5534,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5520,7 +5563,7 @@ msgstr "SSH-avaimet"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5643,6 +5686,11 @@ msgstr "Palvelut"
msgid "Session expired"
msgstr "Istunto on vanhentunut"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Aseta VPN oletusreitiksi"
@@ -5690,7 +5738,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Severely Errored Seconds (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Lyhyt GI"
@@ -5715,14 +5763,14 @@ msgstr "Sulje tämä sovitin"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signaali"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Signaali / Kohina"
@@ -5802,8 +5850,8 @@ msgstr "Lähde"
msgid "Source Address"
msgstr "Lähdeosoite"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Lähde sovitin"
@@ -6002,21 +6050,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Määritä palvelun tyyppi (TOS)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Määritä TOS (palvelun tyyppi). Voi olla joko <code>peritty</code> (ulompi "
-"otsikko perii sisäisen otsikon arvon) tai heksadesimaaliarvon alkaen "
-"<code>0x</code> (valinnainen)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6033,21 +6084,18 @@ msgid ""
msgstr ""
"Määritä TTL (Time to Live) kapselointipaketille, joka ei ole oletusarvo (64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
-"Määritä liikenneluokka. Voi olla joko <code>peritty</code> (ulompi otsikko "
-"perii sisäisen otsikon arvon) tai heksadesimaaliarvon alkaen <code>0x</code> "
-"(valinnainen)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6063,7 +6111,7 @@ msgid ""
"bytes)."
msgstr "Määritä muu MTU (suurin siirtoyksikkö) kuin oletusarvo (1280 tavua)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Määritä salainen salausavain tähän."
@@ -6072,6 +6120,10 @@ msgstr "Määritä salainen salausavain tähän."
msgid "Start"
msgstr "Aloita"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Aloitusprioriteetti"
@@ -6101,6 +6153,11 @@ msgstr "Pysyvät IPv4-reitit"
msgid "Static IPv6 Routes"
msgstr "Pysyvät IPv6-reitit"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Pysyvät lainat"
@@ -6140,6 +6197,10 @@ msgstr "Tila"
msgid "Stop"
msgstr "Pysäytä"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6154,7 +6215,7 @@ msgid "Strong"
msgstr "Vahva"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Lähetä"
@@ -6253,7 +6314,7 @@ msgstr "TFTP-palvelimen pääkansio"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "TX-nopeus"
@@ -6319,7 +6380,7 @@ msgstr ""
"Palveluntarjoajalle osoitettu IPv6-etuliite, päättyy yleensä merkillä "
"<code> :: </code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6331,6 +6392,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "Määritystiedostoa ei voitu ladata seuraavan virheen vuoksi:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6430,12 +6497,12 @@ msgid "The local IPv4 netmask"
msgstr "Paikallinen IPv4-verkkomaski"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "Paikallinen IPv6-osoite, jonka yli tunneli luodaan (valinnainen)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Verkon nimi on jo käytössä"
@@ -6536,8 +6603,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Aktiivisia lainoja ei ole"
@@ -6673,6 +6740,10 @@ msgstr "Ajan synkronointi"
msgid "Time interval for rekeying GTK"
msgstr "Aikaväli GTK:n uusimiseen"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Aikavyöhyke"
@@ -6711,8 +6782,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Liikenne"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Liikenneluokka"
@@ -6756,7 +6827,7 @@ msgid "Tx-Power"
msgstr "Tx-teho"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tyyppi"
@@ -6853,6 +6924,7 @@ msgstr "Odottamaton vastaustietojen muoto"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Tuntematon"
@@ -7294,7 +7366,7 @@ msgstr "WEP Avoin järjestelmä"
msgid "WEP Shared Key"
msgstr "WEP Jaettu avain"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP-tunnuslause"
@@ -7302,7 +7374,7 @@ msgstr "WEP-tunnuslause"
msgid "WMM Mode"
msgstr "WMM-tila"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA-salasana"
@@ -7314,6 +7386,10 @@ msgstr ""
"WPA-salaus vaatii wpa_supplicant (asiakastila) tai hostapd (AP ja ad-hoc-"
"tila) asentamisen."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Odotetaan laitetta..."
@@ -7353,7 +7429,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Langaton"
@@ -7384,13 +7460,13 @@ msgstr "Langattoman verkon asetusten migraatio"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Langaton on poistettu käytöstä"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Langaton liittymättä"
@@ -7509,7 +7585,7 @@ msgid "bridged"
msgstr "sillattu"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7531,11 +7607,11 @@ msgstr "luo:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7582,8 +7658,8 @@ msgstr "esim. dump"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "vanhentunut"
@@ -7778,8 +7854,8 @@ msgstr "tuntematon"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "rajoittamaton"
@@ -7788,9 +7864,9 @@ msgstr "rajoittamaton"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -7983,3 +8059,24 @@ msgstr "kyllä"
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
msgid "« Back"
msgstr "«Takaisin"
+
+#~ msgid "Invalid value"
+#~ msgstr "Virheellinen arvo"
+
+#~ 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 ""
+#~ "Määritä TOS (palvelun tyyppi). Voi olla joko <code>peritty</code> (ulompi "
+#~ "otsikko perii sisäisen otsikon arvon) tai heksadesimaaliarvon alkaen "
+#~ "<code>0x</code> (valinnainen)."
+
+#~ 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 ""
+#~ "Määritä liikenneluokka. Voi olla joko <code>peritty</code> (ulompi "
+#~ "otsikko perii sisäisen otsikon arvon) tai heksadesimaaliarvon alkaen "
+#~ "<code>0x</code> (valinnainen)."
diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po
index da61d76576..7e1467dcb4 100644
--- a/modules/luci-base/po/fr/base.po
+++ b/modules/luci-base/po/fr/base.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-08-08 14:26+0000\n"
-"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
+"PO-Revision-Date: 2020-11-12 02:29+0000\n"
+"Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/luci/fr/>"
"\n"
"Language: fr\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -378,8 +378,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C System Vendor 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Interface manquante"
@@ -396,6 +396,10 @@ msgstr "Point d'accès"
msgid "Actions"
msgstr "Actions"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Actif"
+
#: 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 "Routes <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> actives"
@@ -409,12 +413,12 @@ msgid "Active Connections"
msgstr "Connexions actives"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Baux DHCP actifs"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Baux DHCPv6 actifs"
@@ -495,6 +499,14 @@ msgstr "Ajout d'une nouvelle interface..."
msgid "Add peer"
msgstr "Ajouter un pair"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "Ajouter à la liste noire"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "Ajouter à la liste blanche"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Fichiers hosts supplémentaires"
@@ -522,7 +534,7 @@ msgstr "Adresse pour accéder au pont-relais local"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
msgid "Addresses"
-msgstr ""
+msgstr "Adresses"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
@@ -818,12 +830,12 @@ msgstr ""
"Attribuez des parties de préfixe en utilisant cet ID de sous-préfixe "
"hexadécimal pour cette interface."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Équipements connectés"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Les associations"
@@ -933,7 +945,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -987,10 +999,10 @@ msgstr ""
"Lier dynamiquement les interfaces plutôt que l'adresse joker (recommandé "
"comme défaut pour linux)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -998,10 +1010,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Interface de liaison"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1011,7 +1023,7 @@ msgstr "Lier le tunnel à cette interface (facultatif)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Débit"
@@ -1084,7 +1096,7 @@ msgstr "L'appel a échoué"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1172,7 +1184,7 @@ msgstr "Change le mot de passe administrateur pour accéder à l'équipement"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canal"
@@ -1180,7 +1192,7 @@ msgstr "Canal"
msgid "Check filesystems before mount"
msgstr "Vérifier le système de fichiers avant le montage"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Cocher cette option pour supprimer les réseaux existants de cette interface "
@@ -1200,7 +1212,7 @@ msgid "Choose mtdblock"
msgstr "Choisir le 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1280,7 +1292,7 @@ msgstr "Fermer la liste…"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1317,10 +1329,10 @@ msgstr ""
"d'interopérabilité et réduire la robustesse des négociations de clés, en "
"particulier dans les environnements à forte densité de trafic."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Calculer la somme de contrôle sortante (facultatif)."
@@ -1416,7 +1428,7 @@ msgid "Country Code"
msgstr "Code pays"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Créer / Assigner une zone du pare-feu"
@@ -1441,8 +1453,8 @@ msgstr "Niveau de journalisation de Cron"
msgid "Current power"
msgstr "Puissance actuelle"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1568,7 +1580,7 @@ msgid "DTIM Interval"
msgstr "Intervalle DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1712,7 +1724,7 @@ msgstr "Appareil inaccessible !"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
msgid "Device unreachable! Still waiting for device..."
-msgstr "Appareil inaccessible ! Toujours en attente de l’appareil ..."
+msgstr "Appareil inaccessible ! Toujours en attente de l’appareil …"
#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
msgid "Diagnostics"
@@ -1758,6 +1770,7 @@ msgid "Disable this network"
msgstr "Désactiver ce réseau"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1779,7 +1792,8 @@ msgstr "Rejeter les réponses RFC1918 en amont"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Déconnecter"
@@ -1800,7 +1814,7 @@ msgstr "La tentative de déconnexion a échoué."
#: 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 "Fermer"
+msgstr "Annuler"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Distance Optimization"
@@ -1828,12 +1842,13 @@ msgstr ""
"Ne pas mettre en cache les réponses négatives, par ex. pour des domaines "
"inexistants"
-#: 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
+#: 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
+#, fuzzy
msgid "Do not create host route to peer (optional)."
-msgstr ""
+msgstr "Ne créer pas de route hôte vers le pair (facultatif)."
#: 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"
@@ -1848,11 +1863,11 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
msgid "Do not send a hostname"
-msgstr ""
+msgstr "Ne pas envoyer de nom d’hôte"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
-msgstr "Voulez-vous vraiment supprimer \"%s\" ?"
+msgstr "Voulez-vous vraiment supprimer « %s » ?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:181
msgid "Do you really want to delete the following SSH key?"
@@ -1864,7 +1879,7 @@ msgstr "Voulez-vous vraiment effacer tous les paramètres ?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2753
msgid "Do you really want to recursively delete the directory \"%s\" ?"
-msgstr "Voulez-vous vraiment supprimer récursivement le répertoire \"%s\" ?"
+msgstr "Voulez-vous vraiment supprimer récursivement le répertoire « %s » ?"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
msgid "Domain required"
@@ -1874,8 +1889,8 @@ msgstr "Domaine nécessaire"
msgid "Domain whitelist"
msgstr "Liste blanche de domaines"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Ne pas fragmenter"
@@ -2084,8 +2099,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "Activer rx somme de contrôle"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Activez le drapeau DF (Don’t Fragment) des paquets encapsulants."
@@ -2136,7 +2158,7 @@ msgstr "Mode encapsulé"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Chiffrement"
@@ -2482,7 +2504,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "Ghz"
@@ -2497,15 +2519,15 @@ msgstr "Tunnel GRE sur IPv4"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
msgid "GRE tunnel over IPv6"
-msgstr ""
+msgstr "Tunnel GRE sur IPv6"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
msgid "GRETAP tunnel over IPv4"
-msgstr ""
+msgstr "Tunnel GRETAP sur IPv4"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
msgid "GRETAP tunnel over IPv6"
-msgstr ""
+msgstr "Tunnel GRETAP sur IPv6"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
msgid "Gateway"
@@ -2545,7 +2567,7 @@ msgstr "Générer la configuration"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
msgid "Generate Key"
-msgstr ""
+msgstr "Générer une clé"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
msgid "Generate PMK locally"
@@ -2602,7 +2624,7 @@ msgstr "Permettre l'accès aux procédures LuCI OpenConnect"
#: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
msgid "Grant access to LuCI Wireguard procedures"
-msgstr ""
+msgstr "Accorder l’accès aux procédures LuCI Wireguard"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
msgid "Grant access to SSH configuration"
@@ -2722,9 +2744,9 @@ msgid "Hide empty chains"
msgstr "Cacher les chaînes vides"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Hôte"
@@ -2748,7 +2770,7 @@ msgstr "Contenu du tag Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nom d'hôte"
@@ -2868,7 +2890,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Adresse IPv4"
@@ -2969,10 +2991,10 @@ msgstr "Suffixe IPv6"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
msgid "IPv6 support"
-msgstr ""
+msgstr "Prise en charge d’IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Adresse IPv6"
@@ -3123,26 +3145,26 @@ msgstr "Délai d'inactivité"
msgid "Inbound:"
msgstr "Entrant :"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr "Clé entrante"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
-msgstr ""
+msgstr "Sérialisation entrante"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
msgid "Info"
@@ -3185,7 +3207,7 @@ msgstr "Contrainte du certificat interne (Wildcard)"
msgid "Install protocol extensions..."
msgstr "Installation des extensions de protocole…"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3284,6 +3306,16 @@ msgstr "Erreur : donnée entrée invalide"
msgid "Invalid Base64 key string"
msgstr "Chaîne de clé Base64 invalide"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3317,13 +3349,6 @@ msgstr "Valeur hexadécimale invalide"
msgid "Invalid username and/or password! Please try again."
msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez."
-#: 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 "Isoler les clients"
@@ -3351,7 +3376,7 @@ msgstr "Rejoindre un réseau"
msgid "Join Network: Wireless Scan"
msgstr "Rejoindre un réseau : recherche des réseaux sans-fil"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Rejoindre le réseau : %q"
@@ -3380,19 +3405,19 @@ msgstr "Clé"
msgid "Key #%d"
msgstr "Clé n° %d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
-msgstr ""
+msgstr "Clé pour les paquets entrants (optionnel)."
-#: 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 ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
+msgstr "Clé pour les paquets sortants (optionnel)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
msgid "Kill"
@@ -3465,8 +3490,8 @@ msgstr "Durée du bail"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Durée de validité"
@@ -3625,7 +3650,7 @@ msgstr "Chargement de la vue…"
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
msgid "Local IP address"
-msgstr ""
+msgstr "Adresse IP locale"
#: modules/luci-base/htdocs/luci-static/resources/network.js:12
#: modules/luci-compat/luasrc/model/network.lua:30
@@ -3648,7 +3673,7 @@ msgid "Local IPv4 address"
msgstr "Adresse IPv4 locale"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3702,7 +3727,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localiser les requêtes"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Verrouiller sur BSSID"
@@ -3718,15 +3743,15 @@ msgstr "Journaliser les requêtes"
msgid "Logging"
msgstr "Journalisation"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3758,10 +3783,10 @@ msgid "MAC Address For The Actor"
msgstr "Adresse MAC pour l'acteur"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3800,7 +3825,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3882,8 +3907,8 @@ msgstr "Puissance d'émission maximale"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3959,7 +3984,7 @@ msgstr "Domaine de la mobilité"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mode"
@@ -4006,7 +4031,7 @@ msgstr "Délai max. d'initialisation du modem"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
msgid "Modem is disabled."
-msgstr ""
+msgstr "Le Modem est désactivé."
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
msgid "ModemManager"
@@ -4083,6 +4108,13 @@ msgstr "Descendre"
msgid "Move up"
msgstr "Monter"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4120,7 +4152,7 @@ msgstr "Serveurs NTP candidats"
msgid "Name"
msgstr "Nom"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nom du nouveau réseau"
@@ -4131,15 +4163,19 @@ msgstr "Navigation"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Réseau"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Utilitaires réseau"
@@ -4157,10 +4193,10 @@ msgstr "Activité des périphériques réseau (noyau : netdev)"
msgid "Network device is not present"
msgstr "Le dispositif de réseau n'est pas présent"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
-msgstr ""
+msgstr "Interface réseau"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
msgid "New interface for \"%s\" can not be created: %s"
@@ -4185,6 +4221,10 @@ msgstr "Non"
msgid "No DHCP Server configured for this interface"
msgstr "Aucun serveur DHCP configuré sur cette interface"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "Aucune donnée"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Pas de chiffrement"
@@ -4217,16 +4257,16 @@ msgstr "Aucune entrée dans ce répertoire"
msgid "No files found"
msgstr "Aucun fichier trouvé"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Information indisponible"
@@ -4282,8 +4322,8 @@ msgstr "Aucune zone attribuée"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Bruit"
@@ -4562,24 +4602,24 @@ msgstr "Sortie"
msgid "Outbound:"
msgstr "Sortant :"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
-msgstr ""
+msgstr "Clé sortante"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4592,6 +4632,10 @@ msgstr "Interface de sortie"
msgid "Output zone"
msgstr "Zone de sortie"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4603,10 +4647,10 @@ msgstr "Modifier l'adresse MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4624,18 +4668,18 @@ msgstr "Modifier l'adresse MAC"
msgid "Override MTU"
msgstr "Modifier le MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Remplacer TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4881,10 +4925,10 @@ msgstr "Pairs"
msgid "Perfect Forward Secrecy"
msgstr "Perfect Forward Secrecy (Transfert Parfait du secret)"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -5076,7 +5120,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Cellulaire"
-#: 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:140
msgid "Quality"
msgstr "Qualité"
@@ -5113,11 +5157,11 @@ msgstr "Seuil RTS/CTS"
msgid "RX"
msgstr "Reçu"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Débit en réception"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Taux RX / Taux TX"
@@ -5185,7 +5229,7 @@ msgstr "Redémarrage"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
msgid "Rebooting…"
-msgstr "Redémarrage…"
+msgstr "Redémarrage …"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
msgid "Reboots the operating system of your device"
@@ -5249,13 +5293,13 @@ msgstr "Adresse IPv6 distante"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
msgid "Remote IPv6 address or FQDN"
-msgstr ""
+msgstr "Adresse IPv6 distante ou FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
msgid "Remove"
msgstr "Désinstaller"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Remplacer la configuration sans-fil"
@@ -5271,17 +5315,17 @@ msgstr "Demander le préfixe IPv6 de la longueur"
msgid "Request timeout"
msgstr "Expiration de la demande"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5535,7 +5579,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5564,17 +5608,17 @@ msgstr "Clés SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
msgid "SSTP"
-msgstr ""
+msgstr "SSTP"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
msgid "SSTP Server"
-msgstr ""
+msgstr "Serveur SSTP"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
msgid "SWAP"
@@ -5689,6 +5733,11 @@ msgstr "Services"
msgid "Session expired"
msgstr "La session a expiré"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Définir le VPN comme itinéraire par défaut"
@@ -5739,7 +5788,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Secondes gravement erronées (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "IG court"
@@ -5764,14 +5813,14 @@ msgstr "Arrêter cette interface"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Signal / bruit"
@@ -5853,10 +5902,10 @@ msgstr "Source"
msgid "Source Address"
msgstr "Adresse source"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
-msgstr ""
+msgstr "Interface source"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
msgid ""
@@ -6055,18 +6104,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Spécifiez un TOS (Type de service)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6082,18 +6137,18 @@ msgstr ""
"Spécifiez un TTL (Time to Live) pour le paquet d'encapsulation autre que "
"celui par défaut (64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6109,7 +6164,7 @@ msgstr ""
"Spécifiez une MTU (Maximum Transmission Unit) autre que la valeur par défaut "
"(1280 octets)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Spécifiez ici la clé secrète de chiffrage."
@@ -6118,6 +6173,10 @@ msgstr "Spécifiez ici la clé secrète de chiffrage."
msgid "Start"
msgstr "Démarrer"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Priorité de démarrage"
@@ -6147,6 +6206,11 @@ msgstr "Routes IPv4 statiques"
msgid "Static IPv6 Routes"
msgstr "Routes IPv6 statiques"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Baux Statiques"
@@ -6188,6 +6252,10 @@ msgstr "État"
msgid "Stop"
msgstr "Arrêter"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6202,7 +6270,7 @@ msgid "Strong"
msgstr "Forte"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Soumettre"
@@ -6303,7 +6371,7 @@ msgstr "Racine du serveur TFTP"
msgid "TX"
msgstr "Transmis"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Débit en émission"
@@ -6373,7 +6441,7 @@ msgstr ""
"Le préfixe IPv6 attribué par le fournisseur, se termine généralement par "
"<code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6387,6 +6455,12 @@ msgstr ""
"Le fichier de configuration n'a pas pu être chargé en raison de l'erreur "
"suivante:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6491,12 +6565,12 @@ msgid "The local IPv4 netmask"
msgstr "Le masque de réseau IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "Adresse IPv6 locale sur laquelle le tunnel est créé (facultatif)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Le nom du réseau est déjà utilisé"
@@ -6600,8 +6674,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Aucun bail actif"
@@ -6743,6 +6817,10 @@ msgstr "Synchronisation de l'heure"
msgid "Time interval for rekeying GTK"
msgstr "Intervalle de temps pour retaper GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Fuseau horaire"
@@ -6782,8 +6860,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Trafic"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6827,7 +6905,7 @@ msgid "Tx-Power"
msgstr "Puissance d'émission"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Type"
@@ -6924,12 +7002,13 @@ msgstr "Format de données de réponse inattendu"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Inconnue"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
msgid "Unknown and unsupported connection method."
-msgstr ""
+msgstr "Méthode de connexion inconnue et non prise en charge."
#: modules/luci-base/htdocs/luci-static/resources/network.js:2292
#: modules/luci-compat/luasrc/model/network.lua:1138
@@ -7367,7 +7446,7 @@ msgstr "Système ouvert WEP"
msgid "WEP Shared Key"
msgstr "Clé partagée WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Mot de passe WEP"
@@ -7375,7 +7454,7 @@ msgstr "Mot de passe WEP"
msgid "WMM Mode"
msgstr "Mode WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Mot de passe WPA"
@@ -7387,9 +7466,13 @@ msgstr ""
"Le chiffrage WPA nécessite l'installation du paquet wpa_supplicant (en mode "
"client) ou hostapd (en mode Point d'accès ou Ad-hoc)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
-msgstr "En attente de l'appareil ..."
+msgstr "En attente de l’appareil …"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
@@ -7427,7 +7510,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Sans-fil"
@@ -7458,13 +7541,13 @@ msgstr "Migration de la configuration sans-fil"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Le Wi-Fi est désactivé"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Le Wi-Fi est non associé"
@@ -7587,7 +7670,7 @@ msgid "bridged"
msgstr "ponté"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7609,11 +7692,11 @@ msgstr "créer :"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7652,7 +7735,7 @@ msgstr "pilote par défaut"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81
msgid "e.g: --proxy 10.10.10.10"
-msgstr ""
+msgstr "p. ex. : --proxy 10.10.10.10"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83
msgid "e.g: dump"
@@ -7660,8 +7743,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "expiré"
@@ -7753,7 +7836,7 @@ msgstr "valeur non vide"
#: modules/luci-base/htdocs/luci-static/resources/form.js:3007
msgid "none"
-msgstr "Aucun"
+msgstr "aucun"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
@@ -7817,7 +7900,7 @@ msgstr "mode serveur"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53
msgid "sstpc Log-level"
-msgstr ""
+msgstr "Niveau de journalisation sstpc"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
msgid "stateful-only"
@@ -7854,8 +7937,8 @@ msgstr "inconnu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "non limité"
@@ -7864,9 +7947,9 @@ msgstr "non limité"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8060,6 +8143,9 @@ msgstr "Oui"
msgid "« Back"
msgstr "« Retour"
+#~ msgid "Invalid value"
+#~ msgstr "Valeur non valide"
+
#~ msgid "default-on (kernel)"
#~ msgstr "par défaut (noyau)"
diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po
index 580a4ec229..ec14e18bd2 100644
--- a/modules/luci-base/po/he/base.po
+++ b/modules/luci-base/po/he/base.po
@@ -355,8 +355,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -374,6 +374,10 @@ msgstr "נקודת גישה"
msgid "Actions"
msgstr "פעולות"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -387,12 +391,12 @@ msgid "Active Connections"
msgstr "חיבורים פעילים"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "הרשאות DHCP פעילות"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "הרשאות DHCPv6 פעילות"
@@ -475,6 +479,14 @@ msgstr "הוסף ממשק חדש..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "קבצי מארח נוספים"
@@ -780,12 +792,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "תחנות קשורות"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -892,7 +904,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -944,10 +956,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -955,10 +967,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -968,7 +980,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1040,7 +1052,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1118,7 +1130,7 @@ msgstr "משנה את סיסמת המנהל לגישה למכשיר"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "ערוץ"
@@ -1126,7 +1138,7 @@ msgstr "ערוץ"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1144,7 +1156,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1211,7 +1223,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1243,10 +1255,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1334,7 +1346,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "צור / הקצה תחום-חומת אש"
@@ -1359,8 +1371,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1484,7 +1496,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr ""
@@ -1671,6 +1683,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1692,7 +1705,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1735,10 +1749,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1778,8 +1792,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1977,8 +1991,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2025,7 +2046,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "הצפנה"
@@ -2359,7 +2380,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr ""
@@ -2595,9 +2616,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2621,7 +2642,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2741,7 +2762,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2845,7 +2866,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2983,24 +3004,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3045,7 +3066,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3142,6 +3163,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חוקיים."
@@ -3172,13 +3203,6 @@ msgstr ""
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 ""
@@ -3204,7 +3228,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3233,18 +3257,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3318,8 +3342,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3484,7 +3508,7 @@ msgid "Local IPv4 address"
msgstr "כתובת IPv4 מקומית"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3532,7 +3556,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3548,15 +3572,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3586,10 +3610,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3628,7 +3652,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr ""
@@ -3708,8 +3732,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3785,7 +3809,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3907,6 +3931,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3944,7 +3975,7 @@ msgstr ""
msgid "Name"
msgstr "שם"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3955,15 +3986,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3981,8 +4016,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4009,6 +4044,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4041,16 +4080,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4106,8 +4145,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4368,24 +4407,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4398,6 +4437,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4409,10 +4452,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4430,18 +4473,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4685,10 +4728,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4870,7 +4913,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4905,11 +4948,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "קצב קליטה"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5043,7 +5086,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5059,17 +5102,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5313,7 +5356,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5342,7 +5385,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr ""
@@ -5460,6 +5503,11 @@ msgstr "שירותים"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5507,7 +5555,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5532,14 +5580,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5619,8 +5667,8 @@ msgstr "מקור"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5781,18 +5829,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5806,18 +5860,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5831,7 +5885,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5840,6 +5894,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5869,6 +5927,11 @@ msgstr "ניתובי IPv4 סטטיים"
msgid "Static IPv6 Routes"
msgstr "ניתובי IPv6 סטטיים"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "הקצאות סטטיות"
@@ -5909,6 +5972,10 @@ msgstr "מצב"
msgid "Stop"
msgstr "עצור"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5923,7 +5990,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "שלח"
@@ -6021,7 +6088,7 @@ msgstr ""
msgid "TX"
msgstr "שידור"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "קצב שידור"
@@ -6083,7 +6150,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6093,6 +6160,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6178,12 +6251,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6265,8 +6338,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6380,6 +6453,10 @@ msgstr "סנכרון זמן"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "אזור זמן"
@@ -6416,8 +6493,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6461,7 +6538,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6558,6 +6635,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6980,7 +7058,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "סיסמת WEP"
@@ -6988,7 +7066,7 @@ msgstr "סיסמת WEP"
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "סיסמת WPA"
@@ -6998,6 +7076,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7033,7 +7115,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7064,13 +7146,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7181,7 +7263,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7203,11 +7285,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7254,8 +7336,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7446,8 +7528,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "ללא הגבלה"
@@ -7456,9 +7538,9 @@ msgstr "ללא הגבלה"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po
index 172c9dac58..c1873bd05d 100644
--- a/modules/luci-base/po/hi/base.po
+++ b/modules/luci-base/po/hi/base.po
@@ -350,8 +350,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C सिस्टम विक्रेता पहचान (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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "अनुपस्थित इंटरफ़ेस"
@@ -368,6 +368,10 @@ msgstr "प्रवेश स्थल"
msgid "Actions"
msgstr "चाल-चलन"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -381,12 +385,12 @@ msgid "Active Connections"
msgstr "सक्रिय संबंध"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "सक्रिय DHCP पट्टों"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "सक्रिय DHCPv6 पट्टों"
@@ -466,6 +470,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -765,12 +777,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -877,7 +889,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -926,10 +938,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -937,10 +949,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -950,7 +962,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1021,7 +1033,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1099,7 +1111,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1107,7 +1119,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1125,7 +1137,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1192,7 +1204,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1224,10 +1236,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1315,7 +1327,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1340,8 +1352,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1463,7 +1475,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1648,6 +1660,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1669,7 +1682,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1712,10 +1726,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1755,8 +1769,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1952,8 +1966,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2000,7 +2021,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2334,7 +2355,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2570,9 +2591,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2596,7 +2617,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2716,7 +2737,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2820,7 +2841,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2958,24 +2979,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3020,7 +3041,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3117,6 +3138,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3147,13 +3178,6 @@ msgstr ""
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 ""
@@ -3179,7 +3203,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3208,18 +3232,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3293,8 +3317,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3459,7 +3483,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3507,7 +3531,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3523,15 +3547,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3561,10 +3585,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3603,7 +3627,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3683,8 +3707,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3760,7 +3784,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3882,6 +3906,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3919,7 +3950,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3930,15 +3961,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3956,8 +3991,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -3984,6 +4019,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4016,16 +4055,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4081,8 +4120,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4343,24 +4382,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4373,6 +4412,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4384,10 +4427,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4405,18 +4448,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4660,10 +4703,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4845,7 +4888,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4880,11 +4923,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5018,7 +5061,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5034,17 +5077,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5288,7 +5331,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5317,7 +5360,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5435,6 +5478,11 @@ msgstr ""
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5482,7 +5530,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5507,14 +5555,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5592,8 +5640,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5754,18 +5802,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5779,18 +5833,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5804,7 +5858,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5813,6 +5867,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5842,6 +5900,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5879,6 +5942,10 @@ msgstr ""
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5893,7 +5960,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -5991,7 +6058,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6053,7 +6120,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6063,6 +6130,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6148,12 +6221,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6235,8 +6308,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6350,6 +6423,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6385,8 +6462,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6430,7 +6507,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6527,6 +6604,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6949,7 +7027,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6957,7 +7035,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6967,6 +7045,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7002,7 +7084,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7033,13 +7115,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7150,7 +7232,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7172,11 +7254,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7223,8 +7305,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7415,8 +7497,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7425,9 +7507,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po
index 60c9246f20..32ce707d3c 100644
--- a/modules/luci-base/po/hu/base.po
+++ b/modules/luci-base/po/hu/base.po
@@ -366,8 +366,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C rendszer gyártójának azonosítója"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Hiányzó csatoló"
@@ -384,6 +384,10 @@ msgstr "Hozzáférési pont"
msgid "Actions"
msgstr "Műveletek"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -399,12 +403,12 @@ msgid "Active Connections"
msgstr "Aktív kapcsolatok"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktív DHCP bérletek"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktív DHCPv6 bérletek"
@@ -484,6 +488,14 @@ msgstr "Új csatoló hozzáadása…"
msgid "Add peer"
msgstr "Partner hozzáadása"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "További gépek fájljai"
@@ -800,12 +812,12 @@ msgstr ""
"A hexadecimális alelőtag-azonosító használatával történő előtagrészek "
"hozzárendelése ehhez a csatolóhoz."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Hozzárendelt állomások"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Hozzárendelések"
@@ -914,7 +926,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -969,10 +981,10 @@ msgstr ""
"Kötés dinamikusan a csatolókhoz a helyettesítő címek helyett (ajánlott Linux "
"alapértelmezettként)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -980,10 +992,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Csatoló kötése"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -993,7 +1005,7 @@ msgstr "Az alagút kötése ehhez a csatolóhoz (elhagyható)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitsebesség"
@@ -1066,7 +1078,7 @@ msgstr "Hívás sikertelen"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1152,7 +1164,7 @@ msgstr "Megváltoztatja az eszköz eléréséhez szükséges adminisztrátori je
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Csatorna"
@@ -1160,7 +1172,7 @@ msgstr "Csatorna"
msgid "Check filesystems before mount"
msgstr "Fájlrendszerek ellenőrzése csatolás előtt"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Jelölje be ezt a lehetőséget a meglévő hálózatok törléséhez ebből a rádióból."
@@ -1179,7 +1191,7 @@ msgid "Choose mtdblock"
msgstr "Az mtdblock kiválasztása"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1260,7 +1272,7 @@ msgstr "Lista bezárása…"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1297,10 +1309,10 @@ msgstr ""
"a kulcsegyeztetés robusztusságának csökkentését okozhatja, különösen az erős "
"forgalomterheléssel rendelkező környezetekben."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1392,7 +1404,7 @@ msgid "Country Code"
msgstr "Országkód"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Tűzfalzóna létrehozása vagy hozzárendelése"
@@ -1417,8 +1429,8 @@ msgstr "Cron naplózási szint"
msgid "Current power"
msgstr "Jelenlegi teljesítmény"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1544,7 +1556,7 @@ msgid "DTIM Interval"
msgstr "DTIM időköze"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1734,6 +1746,7 @@ msgid "Disable this network"
msgstr "Hálózat letiltása"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1755,7 +1768,8 @@ msgstr "Külső RFC1918 válaszok elvetése"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Leválasztás"
@@ -1803,10 +1817,10 @@ msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr ""
"Ne gyorsítótárazza a negatív válaszokat, például nem létező tartományoknál"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1848,8 +1862,8 @@ msgstr "Tartomány szükséges"
msgid "Domain whitelist"
msgstr "Tartomány fehérlista"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Ne tördeljen"
@@ -2057,8 +2071,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "A beágyazott csomagok DF (ne tördeljen) jelzőjének engedélyezése."
@@ -2107,7 +2128,7 @@ msgstr "Beágyazási mód"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Titkosítás"
@@ -2449,7 +2470,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2688,9 +2709,9 @@ msgid "Hide empty chains"
msgstr "Üres láncok elrejtése"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Gép"
@@ -2715,7 +2736,7 @@ msgstr "Egyedi gépcímketartalom"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Gépnév"
@@ -2835,7 +2856,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-cím"
@@ -2939,7 +2960,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-cím"
@@ -3092,24 +3113,24 @@ msgstr "Inaktivitási időtúllépés"
msgid "Inbound:"
msgstr "Bejövő:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3154,7 +3175,7 @@ msgstr "Belső tanúsítványkényszer (altartományokra is kibővített)"
msgid "Install protocol extensions..."
msgstr "Protokollkiterjesztések telepítése…"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3253,6 +3274,16 @@ msgstr "Érvénytelen"
msgid "Invalid Base64 key string"
msgstr "Érvénytelen Base64 kulcs karakterlánc"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3287,13 +3318,6 @@ msgstr "Érvénytelen hexadecimális érték"
msgid "Invalid username and/or password! Please try again."
msgstr "Érvénytelen felhasználónév és/vagy jelszó! Próbálja újra."
-#: 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 "Ügyfelek elszigetelése"
@@ -3321,7 +3345,7 @@ msgstr "Csatlakozás a hálózathoz"
msgid "Join Network: Wireless Scan"
msgstr "Csatlakozás hálózathoz: vezeték nélküli keresés"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Csatlakozás hálózathoz: %q"
@@ -3350,18 +3374,18 @@ msgstr "Kulcs"
msgid "Key #%d"
msgstr "%d. kulcs"
-#: 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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3435,8 +3459,8 @@ msgstr "Bérleti idő"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "A bérletből hátralévő idő"
@@ -3616,7 +3640,7 @@ msgid "Local IPv4 address"
msgstr "Helyi IPv4-cím"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3670,7 +3694,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lekérdezések behatárolása"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Zárolás a BSSID-hoz"
@@ -3686,15 +3710,15 @@ msgstr "Lekérdezések naplózása"
msgid "Logging"
msgstr "Naplózás"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3724,10 +3748,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3766,7 +3790,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3848,8 +3872,8 @@ msgstr "Legnagyobb átviteli teljesítmény"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3925,7 +3949,7 @@ msgstr "Mobilitási tartomány"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mód"
@@ -4049,6 +4073,13 @@ msgstr "Mozgatás le"
msgid "Move up"
msgstr "Mozgatás fel"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS-azonosító"
@@ -4086,7 +4117,7 @@ msgstr "NTP-kiszolgáló jelöltek"
msgid "Name"
msgstr "Név"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Az új hálózat neve"
@@ -4097,15 +4128,19 @@ msgstr "Navigáció"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Hálózat"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Hálózati segédprogramok"
@@ -4123,8 +4158,8 @@ msgstr ""
msgid "Network device is not present"
msgstr "A hálózati eszköz nincs jelen"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4151,6 +4186,10 @@ msgstr "Nem"
msgid "No DHCP Server configured for this interface"
msgstr "Nincs DHCP-kiszolgáló beállítva ehhez a csatolóhoz"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Nincs titkosítás"
@@ -4183,16 +4222,16 @@ msgstr "Nincsenek bejegyzések ebben a könyvtárban"
msgid "No files found"
msgstr "Nem találhatók fájlok"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Nincs elérhető információ"
@@ -4248,8 +4287,8 @@ msgstr "Nincs zóna hozzárendelve"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Zaj"
@@ -4526,24 +4565,24 @@ msgstr "Ki"
msgid "Outbound:"
msgstr "Kimenő:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4556,6 +4595,10 @@ msgstr "Kimeneti csatoló"
msgid "Output zone"
msgstr "Kimeneti zóna"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4567,10 +4610,10 @@ msgstr "MAC-cím felülbírálása"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4588,18 +4631,18 @@ msgstr "MAC-cím felülbírálása"
msgid "Override MTU"
msgstr "MTU felülbírálása"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "TOS felülbírálása"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4845,10 +4888,10 @@ msgstr "Partnerek"
msgid "Perfect Forward Secrecy"
msgstr "Sérülés utáni titkosságvédelem"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -5039,7 +5082,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI sejtes"
-#: 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:140
msgid "Quality"
msgstr "Minőség"
@@ -5076,11 +5119,11 @@ msgstr "RTS/CTS küszöbszint"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "RX sebesség"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "RX-sebesség/TX-sebesség"
@@ -5218,7 +5261,7 @@ msgstr ""
msgid "Remove"
msgstr "Eltávolítás"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Vezeték nélküli beállítások cseréje"
@@ -5234,17 +5277,17 @@ msgstr "Kért IPv6-előtag vagy hossz"
msgid "Request timeout"
msgstr "Kérés időkorlátja"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5499,7 +5542,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5528,7 +5571,7 @@ msgstr "SSH kulcsok"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5651,6 +5694,11 @@ msgstr "Szolgáltatások"
msgid "Session expired"
msgstr "A munkamenet lejárt"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "VPN beállítása alapértelmezett útvonalként"
@@ -5701,7 +5749,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Súlyosan hibás másodpercek (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Rövid GI"
@@ -5726,14 +5774,14 @@ msgstr "A csatoló leállítása"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Jel"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Jel/zaj"
@@ -5814,8 +5862,8 @@ msgstr "Forrás"
msgid "Source Address"
msgstr "Forráscím"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5984,18 +6032,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "TOS (Type of Service – szolgáltatástípus) megadása."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6011,18 +6065,18 @@ msgstr ""
"Az alapértelmezett 64-től eltérő TTL (élettartam) meghatározása a beágyazott "
"csomaghoz."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6038,7 +6092,7 @@ msgstr ""
"Egy MTU (Maximum Transmission Unit – legnagyobb átviteli egység) megadása az "
"alapértelmezettől (1280 bájttól) eltérően."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Itt adja meg a titkos titkosító kulcsot."
@@ -6047,6 +6101,10 @@ msgstr "Itt adja meg a titkos titkosító kulcsot."
msgid "Start"
msgstr "Indítás"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Indítási prioritás"
@@ -6076,6 +6134,11 @@ msgstr "Statikus IPv4 útvonalak"
msgid "Static IPv6 Routes"
msgstr "Statikus IPv6-útvonalak"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Statikus bérletek"
@@ -6117,6 +6180,10 @@ msgstr "Állapot"
msgid "Stop"
msgstr "Leállítás"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6131,7 +6198,7 @@ msgid "Strong"
msgstr "Erős"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Elküldés"
@@ -6231,7 +6298,7 @@ msgstr "TFTP-kiszolgáló gyökere"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "TX sebesség"
@@ -6297,7 +6364,7 @@ msgstr ""
"A szolgáltatóhoz rendelt IPv6-előtag, általában <code>::</code> "
"karakterekkel végződik"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6309,6 +6376,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "A beállítófájlt nem sikerült betölteni a következő hiba miatt:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6413,12 +6486,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "A hálózat neve már használatban van"
@@ -6522,8 +6595,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Nincsenek aktív bérletek"
@@ -6663,6 +6736,10 @@ msgstr "Időszinkronizálás"
msgid "Time interval for rekeying GTK"
msgstr "Időköz a GTK újrakulcsolásához"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Időzóna"
@@ -6702,8 +6779,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Forgalom"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6747,7 +6824,7 @@ msgid "Tx-Power"
msgstr "Adóteljesítmény"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Típus"
@@ -6844,6 +6921,7 @@ msgstr "Váratlan válaszadat-formátum"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Ismeretlen"
@@ -7282,7 +7360,7 @@ msgstr "WEP nyílt rendszer"
msgid "WEP Shared Key"
msgstr "WEP megosztott kulcs"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP jelmondat"
@@ -7290,7 +7368,7 @@ msgstr "WEP jelmondat"
msgid "WMM Mode"
msgstr "WMM mód"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA jelmondat"
@@ -7302,6 +7380,10 @@ msgstr ""
"A WPA titkosításához „wpa_supplicant” (ügyfél módnál) vagy "
"„hostapd” (hozzáférési pontnál és eseti módban) telepítése szükséges."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Várakozás az eszközre…"
@@ -7342,7 +7424,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Vezeték nélküli"
@@ -7373,13 +7455,13 @@ msgstr "Vezeték nélküli beállítások költöztetése"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "A vezeték nélküli le van tiltva"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Vezeték nélküli nincs hozzárendelve"
@@ -7499,7 +7581,7 @@ msgid "bridged"
msgstr "áthidalt"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7521,11 +7603,11 @@ msgstr "létrehozás:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7572,8 +7654,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "lejárt"
@@ -7766,8 +7848,8 @@ msgstr "ismeretlen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "korlátlan"
@@ -7776,9 +7858,9 @@ msgstr "korlátlan"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po
index bd68b8da11..0d162f6aa4 100644
--- a/modules/luci-base/po/it/base.po
+++ b/modules/luci-base/po/it/base.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: LuCI\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-06-30 13:41+0000\n"
-"Last-Translator: Marco Minacapelli <marco.minacapelli@gmail.com>\n"
+"PO-Revision-Date: 2020-11-12 02:29+0000\n"
+"Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/luci/it/>"
"\n"
"Language: it\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -366,8 +366,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -384,6 +384,10 @@ msgstr "Punto di Accesso (AP)"
msgid "Actions"
msgstr "Azioni"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -399,12 +403,12 @@ msgid "Active Connections"
msgstr "Connessioni attive"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Lease DHCP attivi"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Lease DHCPv6 attivi"
@@ -484,6 +488,14 @@ msgstr "Aggiungi nuova interfaccia..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "File Hosts aggiuntivo"
@@ -788,13 +800,13 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
#, fuzzy
msgid "Associated Stations"
msgstr "Dispositivi Wi-Fi connessi"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -903,7 +915,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -955,10 +967,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -966,10 +978,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -979,7 +991,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitrate"
@@ -1050,7 +1062,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1128,7 +1140,7 @@ msgstr "Cambia la password di amministratore per accedere al dispositivo"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canale"
@@ -1136,7 +1148,7 @@ msgstr "Canale"
msgid "Check filesystems before mount"
msgstr "Controlla i filesystem prima di montare"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Seleziona questa opzione per cancellare le reti esistenti da questa radio."
@@ -1155,7 +1167,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1232,7 +1244,7 @@ msgstr "Chiudi elenco..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1264,10 +1276,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1355,7 +1367,7 @@ msgid "Country Code"
msgstr "Codice Nazione"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Crea / Assegna zona firewall"
@@ -1380,8 +1392,8 @@ msgstr "Livello di log del Cron"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1505,7 +1517,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1695,6 +1707,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1716,7 +1729,8 @@ msgstr "Scarta risposte RFC1918 upstream"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1763,10 +1777,10 @@ msgstr ""
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr "Non memorizzare le repliche negative, es. per domini non esistenti"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1808,8 +1822,8 @@ msgstr "Dominio richiesto"
msgid "Domain whitelist"
msgstr "Lista domini consentiti"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Non Frammentare"
@@ -2012,8 +2026,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Abilita l'opzione DF (non Frammentare) dei pacchetti incapsulati."
@@ -2060,7 +2081,7 @@ msgstr "Modalità di incapsulamento"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Crittografia"
@@ -2396,7 +2417,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2444,14 +2465,14 @@ 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 "Impostazioni Generali"
+msgstr "Impostazioni generali"
#: 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 "Setup Generale"
+msgstr "Configurazione generale"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
msgid "Generate Config"
@@ -2634,9 +2655,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Host"
@@ -2660,7 +2681,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Hostname"
@@ -2780,7 +2801,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Indirizzo-IPv4"
@@ -2884,7 +2905,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Indirizzo-IPv6"
@@ -3034,24 +3055,24 @@ msgstr "Tempo di inattività"
msgid "Inbound:"
msgstr "In entrata:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3096,7 +3117,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Installa le estensioni del protocollo..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3193,6 +3214,16 @@ msgstr "Valore immesso non valido"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "ID VLAN non valido! Solo gli ID compresi tra %d e %d sono consentiti."
@@ -3223,13 +3254,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Username e/o password non validi! Per favore riprova."
-#: 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 "Isola i Client"
@@ -3258,7 +3282,7 @@ msgstr "Aggiungi Rete"
msgid "Join Network: Wireless Scan"
msgstr "Aggiunta Rete: Rilevamento Wireless"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3287,18 +3311,18 @@ msgstr "Chiave"
msgid "Key #%d"
msgstr "Chiave #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3372,8 +3396,8 @@ msgstr "Tempo di lease"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Tempo di lease rimanente"
@@ -3540,7 +3564,7 @@ msgid "Local IPv4 address"
msgstr "Indirizzo IPv4 locale"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3594,7 +3618,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localizza richieste"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3610,15 +3634,15 @@ msgstr "Logga richieste"
msgid "Logging"
msgstr "Logging"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3648,10 +3672,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3690,7 +3714,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3770,8 +3794,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3847,7 +3871,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Modalità"
@@ -3971,6 +3995,13 @@ msgstr "Muovi giù"
msgid "Move up"
msgstr "Muovi su"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "ID della NAS"
@@ -4008,7 +4039,7 @@ msgstr "Candidati server NTP"
msgid "Name"
msgstr "Nome"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nome della nuova rete"
@@ -4019,15 +4050,19 @@ msgstr "Navigazione"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Rete"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Utilità di Rete"
@@ -4045,8 +4080,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4073,6 +4108,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr "Nessun Server DHCP configurato per questa interfaccia"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4105,16 +4144,16 @@ msgstr ""
msgid "No files found"
msgstr "Nessun file trovato"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Nessuna informazione disponibile"
@@ -4170,8 +4209,8 @@ msgstr "Nessuna zona assegnata"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Rumore"
@@ -4432,24 +4471,24 @@ msgstr "Uscita"
msgid "Outbound:"
msgstr "In uscita:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4462,6 +4501,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4473,10 +4516,10 @@ msgstr "Sovrascrivi indirizzo MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4494,18 +4537,18 @@ msgstr "Sovrascrivi indirizzo MAC"
msgid "Override MTU"
msgstr "Sovrascrivi MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Sovrascrivi TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4751,10 +4794,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4936,7 +4979,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "Qualità"
@@ -4971,11 +5014,11 @@ msgstr "Soglia RTS/CTS"
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Velocità RX"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5111,7 +5154,7 @@ msgstr ""
msgid "Remove"
msgstr "Rimuovi"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Sostituisci configurazione wireless"
@@ -5127,17 +5170,17 @@ msgstr "Richiede prefisso-IPv6 di lunghezza"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5383,7 +5426,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5412,7 +5455,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5530,6 +5573,11 @@ msgstr "Servizi"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5577,7 +5625,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5602,14 +5650,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Segnale"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5691,8 +5739,8 @@ msgstr "Origine"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5857,18 +5905,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5882,18 +5936,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5907,7 +5961,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Specificare la chiave di cifratura qui."
@@ -5916,6 +5970,10 @@ msgstr "Specificare la chiave di cifratura qui."
msgid "Start"
msgstr "Inizio"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Priorità di avvio"
@@ -5945,6 +6003,11 @@ msgstr "Instradamento statico IPv4"
msgid "Static IPv6 Routes"
msgstr "Instradamento statico IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Contratti statici"
@@ -5986,6 +6049,10 @@ msgstr "Stato"
msgid "Stop"
msgstr "Arresta"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6000,7 +6067,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Invia"
@@ -6098,7 +6165,7 @@ msgstr "Server TFTP principale"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Velocità TX"
@@ -6162,7 +6229,7 @@ msgstr ""
"Il prefisso IPv6 assegnati dal provider, si conclude di solito con <code>::</"
"code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6172,6 +6239,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6259,12 +6332,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6353,8 +6426,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6474,6 +6547,10 @@ msgstr "Sincronizzazione Orario"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Fuso orario"
@@ -6512,8 +6589,8 @@ msgstr ""
msgid "Traffic"
msgstr "Traffico"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6557,7 +6634,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tipo"
@@ -6654,6 +6731,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Sconosciuto"
@@ -7082,7 +7160,7 @@ msgstr "Sistema Aperto WEP"
msgid "WEP Shared Key"
msgstr "Chiave Condivisa WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "frase di accesso WEP"
@@ -7090,7 +7168,7 @@ msgstr "frase di accesso WEP"
msgid "WMM Mode"
msgstr "Modalità WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "frase di accesso WPA"
@@ -7102,6 +7180,10 @@ msgstr ""
"La crittografia WPA richiede wpa_supplicant (per la modalità client) o "
"hostapd (per AP e modalità ad hoc) per essere installato."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7137,7 +7219,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Wireless"
@@ -7168,13 +7250,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "La rete Wireless è disattivata"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "La rete Wireless è non associata"
@@ -7292,7 +7374,7 @@ msgid "bridged"
msgstr "ponte"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7314,11 +7396,11 @@ msgstr "crea:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7365,8 +7447,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "scaduto"
@@ -7559,8 +7641,8 @@ msgstr "sconosciuto"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "illimitato"
@@ -7569,9 +7651,9 @@ msgstr "illimitato"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po
index 316ab019b5..3ce1eaccf6 100644
--- a/modules/luci-base/po/ja/base.po
+++ b/modules/luci-base/po/ja/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-10-22 20:30+0000\n"
+"PO-Revision-Date: 2020-11-22 15:35+0000\n"
"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/luci/ja/"
">\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.3.1\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -25,11 +25,11 @@ msgstr "%d ビット"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:3689
msgid "%d invalid field(s)"
-msgstr "無効な入力欄: %d 個"
+msgstr "無効な入力欄: %d個"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
msgid "%s is untagged in multiple VLANs!"
-msgstr "%s は複数のVLANでタグが付けられていません!"
+msgstr "%sは複数のVLANでタグなしに設定されています!"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403
@@ -37,7 +37,7 @@ msgstr "%s は複数のVLANでタグが付けられていません!"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
msgid "(%d minute window, %d second interval)"
-msgstr "(%d 分幅, %d 秒間隔)"
+msgstr "(グラフ表示範囲: %d分、更新間隔: %d秒)"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
@@ -131,7 +131,7 @@ msgstr "4"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442
msgid "4-character hexadecimal ID"
-msgstr "4 文字かつ 16 進数の ID"
+msgstr "4文字の16進数ID"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
@@ -144,31 +144,31 @@ msgstr "過去5分間の負荷:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
msgid "6-octet identifier as a hex string - no colons"
-msgstr "16進数 6オクテットの識別子(コロンを含まない)"
+msgstr "16進数6オクテットの識別子(コロンを含まない)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
msgid "802.11r Fast Transition"
-msgstr "802.11r 高速ローミング"
+msgstr "802.11r高速ローミング"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
msgid "802.11w Association SA Query maximum timeout"
-msgstr "802.11w アソシエーションSAクエリの最大タイムアウト時間"
+msgstr "802.11wアソシエーションSAクエリの最大タイムアウト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
msgid "802.11w Association SA Query retry timeout"
-msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間"
+msgstr "802.11wアソシエーションSAクエリの再試行タイムアウト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
msgid "802.11w Management Frame Protection"
-msgstr "802.11w 管理フレーム保護"
+msgstr "802.11w管理フレーム保護"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
msgid "802.11w maximum timeout"
-msgstr "802.11w 最大タイムアウト"
+msgstr "802.11w最大タイムアウト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1626
msgid "802.11w retry timeout"
-msgstr "802.11w 再試行タイムアウト"
+msgstr "802.11w再試行タイムアウト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
@@ -187,8 +187,8 @@ 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>サー"
-"バーに問い合わせを行います"
+"リゾルバファイルの順番に<abbr title=\"Domain Name System\">DNS</abbr>サーバー"
+"に問い合わせる"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:945
msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
@@ -212,7 +212,8 @@ msgid ""
"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
"(CIDR)"
msgstr ""
-"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-アドレス又はネットワーク(CIDR)"
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-アドレスまたはネット"
+"ワーク(CIDR)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
@@ -220,15 +221,17 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-ゲートウェ
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
-msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス(16進数)"
+msgstr ""
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス(16進"
+"数)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
-msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定"
+msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>設定"
#: 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> 名"
+msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>名"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
@@ -243,36 +246,35 @@ msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
"Protocol\">DHCP</abbr> leases"
msgstr ""
-"<abbr title=\"maximal\">最大</abbr> <abbr title=\"Dynamic Host Configuration "
-"Protocol\">DHCP</abbr> リース"
+"最大<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>リース"
#: 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=\"maximal\">最大</abbr> <abbr title=\"Extension Mechanisms for "
-"Domain Name System\">EDNS0</abbr> パケットサイズ"
+"最大<abbr title=\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>"
+"パケットサイズ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
-msgstr "<abbr title=\"maximal\">最大</abbr> 並列処理クエリ"
+msgstr "最大並列処理クエリ"
#: 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 />注意: 編集前の crontab ファイルが空の場合、手動で cron サービスの再起動"
-"を行う必要があります。"
+"<br />注意: 編集前のcrontabファイルが空の場合、手動でcronサービスを再起動する"
+"必要があります。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2720
msgid "A directory with the same name already exists."
-msgstr "同名のディレクトリが既に存在します。"
+msgstr "同じ名前のディレクトリが既に存在します。"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2670
msgid "A new login is required since the authentication session expired."
-msgstr "認証セッションの期限切れのため、再ログインが必要です。"
+msgstr "認証セッションの期限が切れたため、再ログインが必要です。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:909
msgid "A43C + J43 + A43"
@@ -304,27 +306,27 @@ msgstr "ARP"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
msgid "ARP IP Targets"
-msgstr "ARP IP ターゲット"
+msgstr "ARP IPターゲット"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
msgid "ARP Interval"
-msgstr "ARP 間隔"
+msgstr "ARP間隔"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
msgid "ARP Validation"
-msgstr "ARP 検証"
+msgstr "ARP検証"
#: 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モード"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
msgid "ARP monitoring is not supported for the selected policy!"
-msgstr "選択したポリシーでは ARP モニタリングはサポートされていません!"
+msgstr "選択したポリシーではARPモニタリングはサポートされていません!"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
msgid "ARP retry threshold"
-msgstr "ARP 再試行しきい値"
+msgstr "ARP再試行しきい値"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
msgid "ATM (Asynchronous Transfer Mode)"
@@ -350,6 +352,9 @@ msgid ""
"Linux network interfaces which can be used in conjunction with DHCP or PPP "
"to dial into the provider network."
msgstr ""
+"ATMブリッジは、AAL5接続でカプセル化されたイーサネットを仮想Linuxネットワーク"
+"インターフェイスとして公開し、DHCPまたはPPPと組み合わせて使用し、プロバイダー"
+"ネットワークにダイヤルできます。"
#: 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
@@ -358,11 +363,11 @@ msgstr "ATMデバイス番号"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
msgid "ATU-C System Vendor ID"
-msgstr "ATU-C システム ベンダー ID"
+msgstr "ATU-Cシステムベンダー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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "存在しないインターフェース"
@@ -379,33 +384,35 @@ msgstr "アクセスポイント"
msgid "Actions"
msgstr "操作"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "アクティブ"
+
#: 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 ""
-"稼働中の <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-経路情報"
+msgstr "アクティブな<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>ルート"
#: 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 ""
-"稼働中の <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-経路情報"
+msgstr "アクティブな<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>ルート"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
msgid "Active Connections"
-msgstr "アクティブ コネクション"
+msgstr "アクティブな接続"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "アクティブなDHCPリース"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "アクティブなDHCPv6リース"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
msgid "Active-Backup policy (active-backup, 1)"
-msgstr ""
+msgstr "アクティブ-バックアップポリシー(active-backup、1)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3684
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
@@ -415,11 +422,12 @@ msgstr "アドホック"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
msgid "Adaptive load balancing (balance-alb, 6)"
-msgstr ""
+msgstr "アダプティブロードバランシング(balance-alb、6)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
+#, fuzzy
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
-msgstr ""
+msgstr "アダプティブ送信ロードバランシング(balance-tlb、5)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2167
#: modules/luci-base/htdocs/luci-static/resources/form.js:2170
@@ -442,19 +450,19 @@ msgstr "ATMブリッジを追加"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
msgid "Add IPv4 address…"
-msgstr "IPv4 アドレスを追加…"
+msgstr "IPv4アドレスを追加…"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:207
msgid "Add IPv6 address…"
-msgstr "IPv6 アドレスを追加…"
+msgstr "IPv6アドレスを追加…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
msgid "Add LED action"
-msgstr "LED の動作を追加"
+msgstr "LEDの動作を追加"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
msgid "Add VLAN"
-msgstr "VLAN を追加"
+msgstr "VLANを追加"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
msgid "Add instance"
@@ -468,7 +476,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
@@ -479,13 +487,21 @@ msgstr "インターフェースの新規作成..."
msgid "Add peer"
msgstr "ピアを追加"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "ブラックリストに追加"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "ホワイトリストに追加"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "追加のホストファイル"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
msgid "Additional servers file"
-msgstr "追加のサーバー ファイル"
+msgstr "追加のサーバーファイル"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
@@ -502,7 +518,7 @@ msgstr "アドレス"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
msgid "Address to access local relay bridge"
-msgstr "ローカル リレーブリッジにアクセスするためのIPアドレス"
+msgstr "ローカル リレーブリッジにアクセスするためのアドレス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
msgid "Addresses"
@@ -511,7 +527,7 @@ msgstr "アドレス一覧"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
msgid "Administration"
-msgstr "管理画面"
+msgstr "管理"
#: 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
@@ -526,25 +542,29 @@ msgstr "詳細設定"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
msgid "Aggregate Transmit Power (ACTATP)"
-msgstr ""
+msgstr "総送信電力(ACTATP)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
+#, fuzzy
msgid "Aggregation Selection Logic"
-msgstr ""
+msgstr "アグリゲーション選択ロジック"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
msgstr ""
+"アグリゲーター: すべてのスレーブがダウンしているか、スレーブなし(安定、0)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
msgid ""
"Aggregator: Chosen by the largest number of ports + slave added/removed or "
"state changes (count, 2)"
msgstr ""
+"アグリゲーター: ポートの最大数 + スレーブ追加/削除または状態変更によって変更"
+"(カウント、2)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
-msgstr ""
+msgstr "アグリゲーター: スレーブの追加/削除または状態の変更(帯域幅、1)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
msgid "Alert"
@@ -554,49 +574,49 @@ msgstr "アラート"
#: 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 "エイリアス インターフェース"
+msgstr "エイリアスインターフェース"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:145
msgid "Alias of \"%s\""
-msgstr "\"%s\" のエイリアス"
+msgstr "\"%s\"のエイリアス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
msgid "All Servers"
-msgstr "全てのサーバー"
+msgstr "すべてのサーバー"
#: 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 アドレスを順番に並べ、利用可能な最小のアドレスから開始"
+msgstr "利用可能な最小IPアドレスから順番に割り当てる"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
msgid "Allocate IP sequentially"
-msgstr "連続 IP"
+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"
-msgstr "リスト内の端末からのアクセスを禁止"
+msgstr "リスト内以外のすべてを許可"
#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
msgid "Allow full UCI access for legacy applications"
-msgstr "レガシーアプリケーションに完全な UCI アクセスを許可"
+msgstr "レガシーアプリケーションにUCIのフルアクセスを許可"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892
msgid "Allow legacy 802.11b rates"
-msgstr "レガシー 802.11b レートを許可"
+msgstr "レガシー802.11bレートを許可"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
msgid "Allow listed only"
-msgstr "リスト内の端末からのアクセスを許可"
+msgstr "リスト内のみアクセスを許可"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
msgid "Allow localhost"
@@ -616,24 +636,26 @@ msgstr "パスワードでの root ログインを許可"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
msgid "Allow system feature probing"
-msgstr "システム機能のプローブを許可"
+msgstr "システム機能の調査を許可"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
msgid "Allow the <em>root</em> user to login with password"
-msgstr "パスワードを使用して <em>root</em> 権限へのログインを許可"
+msgstr "パスワードでの <em>root</em> 権限へのログインを許可します"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
msgid ""
"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
-msgstr "上位サーバーからの特定範囲内(127.0.0.0/8)の応答を許可します。例: RBL サービスのため"
+msgstr ""
+"RBLサービスなどで使用される、上位サーバーからの特定範囲内(127.0.0.0/8)の応"
+"答を許可"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:148
msgid "Allowed IPs"
-msgstr "許可されるIP"
+msgstr "許可されたIP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
msgid "Always announce default router"
-msgstr "常にデフォルト ルーターを通知する"
+msgstr "常にデフォルトルーターをアナウンスする"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
msgid "Always off (kernel: none)"
@@ -648,11 +670,12 @@ msgid ""
"Always use 40MHz channels even if the secondary channel overlaps. Using this "
"option does not comply with IEEE 802.11n-2009!"
msgstr ""
-"セカンダリ チャンネルの重複にかかわらず、常に40MHzチャンネルを使用します。このオプションは、IEEE 802.11n-2009に準拠しません!"
+"セカンダリチャンネルの重複にかかわらず、常に40MHzチャンネルを使用します。この"
+"オプションは、IEEE 802.11n-2009に準拠しません!"
#: modules/luci-base/htdocs/luci-static/resources/form.js:603
msgid "An error occurred while saving the form:"
-msgstr "フォームの保存中にエラーが発生:"
+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
@@ -661,92 +684,92 @@ msgstr "Annex"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
msgid "Annex A + L + M (all)"
-msgstr ""
+msgstr "Annex A + L + M(すべて)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
msgid "Annex A G.992.1"
-msgstr ""
+msgstr "Annex A G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
msgid "Annex A G.992.2"
-msgstr ""
+msgstr "Annex A G.992.2"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
msgid "Annex A G.992.3"
-msgstr ""
+msgstr "Annex A G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
msgid "Annex A G.992.5"
-msgstr ""
+msgstr "Annex A G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:892
msgid "Annex B (all)"
-msgstr ""
+msgstr "Annex B(すべて)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:895
msgid "Annex B G.992.1"
-msgstr ""
+msgstr "Annex B G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:896
msgid "Annex B G.992.3"
-msgstr ""
+msgstr "Annex B G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
msgid "Annex B G.992.5"
-msgstr ""
+msgstr "Annex B G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:893
msgid "Annex J (all)"
-msgstr ""
+msgstr "Annex J(すべて)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
msgid "Annex L G.992.3 POTS 1"
-msgstr ""
+msgstr "Annex L G.992.3 POTS 1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
msgid "Annex M (all)"
-msgstr ""
+msgstr "Annex M(すべて)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:904
msgid "Annex M G.992.3"
-msgstr ""
+msgstr "Annex M G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
msgid "Annex M G.992.5"
-msgstr ""
+msgstr "Annex M G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
msgid "Announce as default router even if no public prefix is available."
msgstr ""
-"利用可能なパブリック プレフィクスが無くても、デフォルトのルーターとして通知し"
-"ます。"
+"利用可能なパブリックプレフィックスが無くても、デフォルトのルーターとしてアナ"
+"ウンスします。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:659
msgid "Announced DNS domains"
-msgstr "通知される DNS ドメイン"
+msgstr "アナウンスされたDNSドメイン"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:658
msgid "Announced DNS servers"
-msgstr "通知される DNS サーバー"
+msgstr "アナウンスされたDNSサーバー"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596
msgid "Anonymous Identity"
-msgstr "匿名のアイデンティティ"
+msgstr "匿名アイデンティティ"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
msgid "Anonymous Mount"
-msgstr "アノニマス マウント"
+msgstr "匿名マウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
msgid "Anonymous Swap"
-msgstr "アノニマス スワップ"
+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 "全てのゾーン"
+msgstr "すべてのゾーン"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
msgid "Apply backup?"
@@ -754,16 +777,16 @@ msgstr "バックアップを適用しますか?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
msgid "Apply request failed with status <code>%h</code>"
-msgstr "適用リクエストはステータス <code>%h</code> で失敗しました"
+msgstr "適用リクエストは失敗しました ステータス: <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4142
msgid "Apply unchecked"
-msgstr "チェック無しの適用"
+msgstr "チェックなしの適用"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4215
msgid "Applying configuration changes… %ds"
-msgstr "設定を適用中です… 残り最大%d秒"
+msgstr "設定を適用中… 残り最大%d秒"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
msgid "Architecture"
@@ -774,29 +797,29 @@ msgstr "アーキテクチャ"
msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface"
msgstr ""
-"パブリック IPv6 プレフィクスのうち、指定されたプレフィクス長をこのインター"
-"フェースに割り当てる"
+"パブリックIPv6プレフィックスのうち、指定されたプレフィックス長の一部をこのイ"
+"ンターフェースに割り当てる"
#: 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 ""
-"このサブ プレフィクス ID(16進数)を使用するプレフィクス領域を、このインター"
-"フェースに割り当てます。"
+"このサブプレフィックスID(16進数)を使用するプレフィックス領域を、このイン"
+"ターフェースに割り当てます。"
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
-msgstr "アソシエーション済み端末"
+msgstr "接続済み端末"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
-msgstr "アソシエーション数"
+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
@@ -846,7 +869,7 @@ 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"
@@ -854,15 +877,15 @@ 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"
-msgstr "ファイルシステム 自動マウント"
+msgstr "ファイルシステムを自動的にマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
msgid "Automount Swap"
-msgstr "スワップ 自動マウント"
+msgstr "スワップを自動的にマウント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
msgid "Available"
@@ -897,7 +920,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -939,8 +962,7 @@ msgid ""
"configuration files marked by opkg, essential base files and the user "
"defined backup patterns."
msgstr ""
-"以下は、バックアップの際に含まれるファイルのリストです。このリストは、opkgに"
-"よって認識されている設定ファイル、重要なベースファイル、ユーザーが設定したパ"
+"以下は、バックアップの際に含まれるファイルのリストです。このリストは、変更がopkgに認識されている設定ファイル、重要な基本ファイル、ユーザーが設定したパ"
"ターンに一致したファイルの一覧です。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
@@ -948,24 +970,24 @@ msgid ""
"Bind dynamically to interfaces rather than wildcard address (recommended as "
"linux default)"
msgstr ""
-"ワイルドカード アドレスよりもインターフェースへ動的にバインド(Linux のデフォ"
-"ルトとして推奨されます)"
+"ワイルドカードアドレスよりもインターフェースへ動的にバインド(Linux のデフォ"
+"ルトとして推奨)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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 "インターフェースのバインド"
+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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -975,13 +997,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "ビットレート"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
msgid "Bogus NX Domain Override"
-msgstr "偽の NX ドメイン オーバーライド"
+msgstr "本物でないNXドメインを上書き"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
msgid "Bonding Policy"
@@ -995,19 +1017,19 @@ 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 "ブリッジ インターフェース"
+msgstr "ブリッジインターフェース"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:978
msgid "Bridge unit number"
-msgstr "ブリッジ ユニット番号"
+msgstr "ブリッジユニット番号"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:412
msgid "Bring up on boot"
-msgstr "デフォルトで起動する"
+msgstr "ブート時に起動する"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
msgid "Broadcast policy (broadcast, 3)"
-msgstr ""
+msgstr "ブロードキャストポリシー(broadcast、3)"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2810
#: modules/luci-base/htdocs/luci-static/resources/ui.js:3799
@@ -1016,15 +1038,15 @@ msgstr "参照…"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
msgid "Buffered"
-msgstr "バッファ"
+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"
-msgstr "CLAT の構成に失敗しました"
+msgstr "CLATの構成に失敗しました"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
msgid "CPU usage (%)"
@@ -1046,7 +1068,7 @@ msgstr "呼び出しに失敗しました"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1079,8 +1101,8 @@ msgid ""
"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
"`logread -f` during handshake for actual values"
msgstr ""
-"サブジェクト内の項目によって証明書の制限を行います。(例: /CN=wifi.mycompany."
-"com)<br />実際の値は `logread -f`をハンドシェイク中に確認してください。"
+"証明書制限の一部(例: /CN=wifi.mycompany.com)<br />実際の値については、ハン"
+"ドシェイク中に`logread -f`で確認してください"
#: 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
@@ -1088,6 +1110,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (exact match)"
msgstr ""
+"DNS SAN値に対する証明書の制限(使用可能な場合)<br />またはサブジェクトCN(完"
+"全一致)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
@@ -1095,6 +1119,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (suffix match)"
msgstr ""
+"DNS SAN値に対する証明書の制限(使用可能な場合)<br />またはサブジェクトCN(サ"
+"フィックス一致)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
@@ -1102,8 +1128,8 @@ msgid ""
"Certificate constraint(s) via Subject Alternate Name values<br />(supported "
"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
msgstr ""
-"サブジェクト代替名によって証明書の制限を行います。<br />サポートされる属性: "
-"EMAIL, DNS, URI(例: DNS:wifi.mycompany.com)"
+"サブジェクト代替名によって証明書の制限を行います<br />(サポートされる属性: "
+"EMAIL, DNS, URI(例: DNS:wifi.mycompany.com))"
#: 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
@@ -1121,22 +1147,22 @@ msgstr "変更は取り消されました。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
msgid "Changes the administrator password for accessing the device"
-msgstr "デバイスの管理者パスワードを変更します"
+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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "チャネル"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
msgid "Check filesystems before mount"
-msgstr "マウント前にファイルシステムをチェックする"
+msgstr "マウント前にファイルシステムをチェック"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"この無線から既存のネットワークを削除する場合、このオプションを有効にします。"
@@ -1152,48 +1178,46 @@ msgstr "イメージのチェック中…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:399
msgid "Choose mtdblock"
-msgstr "mtdblock を選択"
+msgstr "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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 ""
-"このインターフェースに設定するファイウォールゾーンを選択してください。<em>設定しない</em>を選択すると、設定済みのゾーンを削除します。また、<em"
-">作成</em>フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインターフェースに設定します。"
+"このインターフェースに割り当てるファイアウォールゾーンを選択してください。<em>設定しない</em>を選択すると、割り当てられたゾーンを削除します。<e"
+"m>カスタム</em>フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインターフェースを追加します。"
#: 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 ""
-"無線インターフェースをアタッチするネットワークを選択してください。または、"
-"<em>作成</em>欄を選択すると新しいネットワークを作成します。"
+"この無線インターフェースを追加するネットワークを選択してください。<em>カスタム</em>フィールドにネットワーク名を入力すると、新しいネットワークを作"
+"成します。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
msgid "Cipher"
-msgstr "暗号化方式"
+msgstr "暗号"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
msgid "Cisco UDP encapsulation"
-msgstr "Cisco UDP カプセル化"
+msgstr "Cisco UDPカプセル化"
#: 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 "\"バックアップアーカイブを生成\" をクリックすると、現在の設定ファイルをtar形式のアーカイブファイルとしてダウンロードします。"
+msgstr "\"アーカイブを生成\"をクリックすると、現在の設定ファイルをtar形式のアーカイブファイルとしてダウンロードします。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
msgid ""
"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
"FEATURE IS FOR PROFESSIONALS! )"
-msgstr ""
-"指定したmtdblockファイルをダウンロードするには、\"mtdblockを保存\"をクリックしてください。(注意: "
-"この機能はプロフェッショナル向けです!)"
+msgstr "\"mtdblockを保存\"をクリックすると、指定したmtdblockファイルをダウンロードします。(注意: この機能はプロ向けです!)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3683
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
@@ -1220,17 +1244,15 @@ msgstr "閉じる"
msgid ""
"Close inactive connection after the given amount of seconds, use 0 to "
"persist connection"
-msgstr ""
-"設定した秒数後に、使用していない接続を閉じます。0を設定した場合、接続を維持し"
-"ます"
+msgstr "設定した秒数後に、非アクティブな接続を閉じます。0を設定した場合、接続を維持します"
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
msgid "Close list..."
-msgstr "リストを閉じる"
+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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1244,7 +1266,7 @@ msgstr "コマンド"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
msgid "Command OK"
-msgstr "コマンド OK"
+msgstr "コマンドOK"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
msgid "Command failed"
@@ -1261,16 +1283,16 @@ msgid ""
"workaround might cause interoperability issues and reduced robustness of key "
"negotiation especially in environments with heavy traffic load."
msgstr ""
-"キーのインストールに使用される EAPOL キーフレームの再送信を無効にすることにより、クライアント サイドの Key Reinstallation "
-"Attacks(KRACK)を困難にします。この回避策は、相互運用性の問題や、特に高負荷のトラフィック環境下におけるキー "
-"ネゴシエーションの信頼性低下の原因となることがあります。"
+"キーのインストールに使用されるEAPOLキーフレームの再送信を無効化することにより、クライアント側のKey Reinstallation Attacks("
+"KRACK)を困難にします。これは互換性の問題を発生させたり、主に高負荷のトラフィック環境下におけるキーネゴシエーションの信頼性低下の原因になることがあり"
+"ます。"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:91
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
-msgstr ""
+msgstr "送信チェックサムを計算します(オプション)。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
@@ -1283,12 +1305,12 @@ msgstr "設定が適用されました。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4128
msgid "Configuration changes have been rolled back!"
-msgstr "設定はロールバックされました!"
+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 "設定が失敗しました"
+msgstr "設定に失敗しました"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:175
msgid "Confirm disconnect"
@@ -1301,20 +1323,20 @@ 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 "接続中"
+msgstr "接続済み"
#: modules/luci-base/htdocs/luci-static/resources/network.js:9
#: modules/luci-compat/luasrc/model/network.lua:27
msgid "Connection attempt failed"
-msgstr "接続の試行が失敗しました"
+msgstr "接続の試行に失敗しました"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
msgid "Connection attempt failed."
-msgstr ""
+msgstr "接続の試行に失敗しました。"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
-msgstr "接続喪失"
+msgstr "接続が失われました"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:117
msgid "Connections"
@@ -1322,11 +1344,11 @@ msgstr "接続数"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
-msgstr ""
+msgstr "すべてのARP IPターゲットが到達可能な場合に、スレーブと見なす(all、1)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
-msgstr ""
+msgstr "任意のARP IPターゲットが到達可能な場合に、スレーブと見なす (any、0)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
@@ -1346,9 +1368,8 @@ msgid ""
"changes. You might need to reconnect if you modified network related "
"settings such as the IP address or wireless security credentials."
msgstr ""
-"設定の変更を適用後、デバイスへのアクセスを回復できませんでした。もし IP アド"
-"レスや無線のセキュリティ認証情報などのネットワーク関連の設定を変更した場合、"
-"再接続が必要かもしれません。"
+"設定の変更を適用後、デバイスに再接続できませんでした。IPアドレスや無線のセキュリティ認証情報などのネットワーク関連の設定を変更した場合、手動で再接続する"
+"必要があるかもしれません。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
msgid "Country"
@@ -1359,9 +1380,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
-msgstr "ファイアウォール ゾーンの作成 / 割り当て"
+msgstr "ファイアウォールゾーンの作成または割り当て"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
msgid "Create interface"
@@ -1378,44 +1399,42 @@ msgstr "重大"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
msgid "Cron Log Level"
-msgstr "Cronのログ出力レベル"
+msgstr "Cronログレベル"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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 "新しいインターフェース"
+msgstr "カスタマイズされたインターフェース"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:36
msgid "Custom delegated IPv6-prefix"
-msgstr ""
+msgstr "カスタムデリゲートされたIPv6プレフィックス"
#: 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 ""
-"カスタム ファイル(証明書, スクリプト)がシステムに残るかもしれません。これを"
-"防ぐには、まず最初に factory-reset を行います。"
+msgstr "カスタムファイル(証明書、スクリプト)がシステムに残ることがあります。これを防ぐには、最初に初期化を行ってください。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
msgid "Custom flash interval (kernel: timer)"
-msgstr "カスタムな点滅間隔(kernel: timer)"
+msgstr "任意の点滅間隔(kernel: timer)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
msgid ""
"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
"\">LED</abbr>s if possible."
msgstr ""
-"デバイスの <abbr title=\"Light Emitting Diode\">LED</abbr> の挙動をカスタマイ"
-"ズします。"
+"デバイスの<abbr title=\"Light Emitting Diode\""
+">LED</abbr>の動作をカスタマイズします(デバイスが対応している場合)。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
msgid "DAE-Client"
@@ -1436,13 +1455,13 @@ msgstr "DHCPサーバー"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
msgid "DHCP and DNS"
-msgstr "DHCP および DNS"
+msgstr "DHCPおよびDNS"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1982
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
#: modules/luci-compat/luasrc/model/network.lua:969
msgid "DHCP client"
-msgstr "DHCP クライアント"
+msgstr "DHCPクライアント"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619
msgid "DHCP-Options"
@@ -1451,7 +1470,7 @@ msgstr "DHCPオプション"
#: 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 "DHCPv6 クライアント"
+msgstr "DHCPv6クライアント"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
msgid "DHCPv6-Mode"
@@ -1483,15 +1502,15 @@ msgstr "DNSSEC"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
msgid "DNSSEC check unsigned"
-msgstr "DNSSEC 未署名チェック"
+msgstr "DNSSEC未署名チェック"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
msgid "DPD Idle Timeout"
-msgstr "DPD アイドル・タイムアウト"
+msgstr "DPDアイドルタイムアウト"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
msgid "DS-Lite AFTR address"
-msgstr "DS-Lite AFTR アドレス"
+msgstr "DS-Lite AFTRアドレス"
#: 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
@@ -1500,18 +1519,18 @@ msgstr "DSL"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
msgid "DSL Status"
-msgstr "DSL ステータス"
+msgstr "DSLステータス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920
msgid "DSL line mode"
-msgstr "DSL 回線モード"
+msgstr "DSL回線モード"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
msgid "DTIM Interval"
-msgstr "DTIM インターバル"
+msgstr "DTIM間隔"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1528,11 +1547,11 @@ msgstr "デバッグ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358
msgid "Default %d"
-msgstr "初期設定 %d"
+msgstr "デフォルト %d"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Default Route"
-msgstr "デフォルト ルート"
+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
@@ -1543,15 +1562,15 @@ msgstr "デフォルト ルート"
#: 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 "デフォルト ゲートウェイ"
+msgstr "デフォルトゲートウェイ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
msgid "Default is stateless + stateful"
-msgstr "デフォルトは ステートレス + ステートフル"
+msgstr "デフォルトはステートレス + ステートフル"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
msgid "Default state"
-msgstr "初期状態"
+msgstr "デフォルト状態"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:619
msgid ""
@@ -1559,8 +1578,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オプションを設定します(例: クライアントに指定のDNSサーバーを通知するには、\"<code>6,192.168.2.1,192.168."
+"2.2</code>\"と設定します)。"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2237
#: modules/luci-base/htdocs/luci-static/resources/form.js:2662
@@ -1576,19 +1595,19 @@ 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 "公開鍵を削除"
+msgstr "鍵を削除"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2769
msgid "Delete request failed: %s"
-msgstr "削除リクエスト失敗: %s"
+msgstr "削除の要求に失敗しました: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:847
msgid "Delete this network"
-msgstr "ネットワークを削除します"
+msgstr "このネットワークを削除"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
msgid "Delivery Traffic Indication Message Interval"
-msgstr "Delivery Traffic Indication Message インターバル"
+msgstr "Delivery Traffic Indication Message(DTIM)間隔"
#: 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
@@ -1637,7 +1656,7 @@ msgstr "デバイス設定"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
msgid "Device is not active"
-msgstr "デバイスがアクティブではありません"
+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
@@ -1650,20 +1669,20 @@ msgstr "モデムマネージャーはデバイスを管理していません。
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
msgid "Device unreachable!"
-msgstr "デバイスに到達できません!"
+msgstr "デバイスにアクセスできません!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
msgid "Device unreachable! Still waiting for device..."
-msgstr "デバイスに接続できません!まだデバイスを待っています..."
+msgstr "デバイスにアクセスできません!まだデバイスを待っています..."
#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
msgid "Diagnostics"
-msgstr "診断機能"
+msgstr "診断"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:93
msgid "Dial number"
-msgstr "番号をダイヤル"
+msgstr "ダイヤル番号"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665
msgid "Directory"
@@ -1679,27 +1698,28 @@ msgid ""
"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
"this interface."
msgstr ""
-"このインターフェースでは<abbr title=\"Dynamic Host Configuration Protocol\""
-">DHCP</abbr>を使用しない。"
+"このインターフェースでの<abbr title=\"Dynamic Host Configuration Protocol\""
+">DHCP</abbr>を無効にする。"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
msgid "Disable DNS lookups"
-msgstr "DNS 逆引きを無効化"
+msgstr "DNS逆引きを無効化"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "Disable Encryption"
-msgstr "暗号化を無効にする"
+msgstr "暗号化を無効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1098
msgid "Disable Inactivity Polling"
-msgstr "非アクティブ状態ポーリングを無効化"
+msgstr "非アクティブ状態のポーリングを無効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837
msgid "Disable this network"
-msgstr "このネットワークを無効にします"
+msgstr "このネットワークを無効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1712,27 +1732,29 @@ msgid "Disabled"
msgstr "無効"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1112
+#, fuzzy
msgid "Disassociate On Low Acknowledgement"
-msgstr "低 Acknowledgement 時のアソシエーション解除"
+msgstr "確認応答が不安定な場合、接続解除"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
msgid "Discard upstream RFC1918 responses"
-msgstr "RFC1918の応答を破棄します"
+msgstr "上りRFC1918の応答を破棄します"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
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 "切断の試行が失敗しました"
+msgstr "切断の試行に失敗しました"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
msgid "Disconnection attempt failed."
-msgstr ""
+msgstr "切断の試行に失敗しました。"
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
#: modules/luci-base/htdocs/luci-static/resources/form.js:2861
@@ -1746,11 +1768,11 @@ msgstr "閉じる"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Distance Optimization"
-msgstr "距離の最適化"
+msgstr "距離最適化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Distance to farthest network member in meters."
-msgstr "最も遠い端末との距離(メートル)を設定してください。"
+msgstr "一番遠い端末との距離(メートル単位)。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
msgid ""
@@ -1759,25 +1781,24 @@ msgid ""
"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
"firewalls"
msgstr ""
-"Dnsmasq は <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
-"サーバーと <abbr title=\"Network Address Translation\">NAT</abbr>ファイア"
-"ウォールの為の <abbr title=\"Domain Name System\">DNS</abbr>フォワーダーを複"
-"合したサービスです"
+"Dnsmasqは、<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
+"abbr>サーバーと<abbr title=\"Network Address Translation\">NAT</"
+"abbr>ファイアウォールのための<abbr title=\"Domain Name System\">DNS</abbr>フォワーダーの両方を提供します"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
msgid "Do not cache negative replies, e.g. for not existing domains"
-msgstr "無効なリプライをキャッシュしない(例: 存在しないドメインからの返答など)"
+msgstr "無効な応答をキャッシュしない(存在しないドメインからの応答など)"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:79
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86
+#: 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 "Do not create host route to peer (optional)."
-msgstr ""
+msgstr "ピアへのホストルートを作成しない(オプション)。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
msgid "Do not forward requests that cannot be answered by public name servers"
-msgstr "パブリックDNSサーバーが返答できなかったリクエストを転送しない"
+msgstr "パブリックDNSサーバーが応答できないリクエストを転送しない"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
msgid "Do not forward reverse lookups for local networks"
@@ -1785,23 +1806,23 @@ msgstr "ローカルネットワークへの逆引きを転送しない"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
msgid "Do not send a hostname"
-msgstr ""
+msgstr "ホスト名を送信しない"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
-msgstr "本当に \"%s\" を削除しますか?"
+msgstr "本当に\"%s\"を削除しますか?"
#: 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 "本当に以下の SSH 公開鍵を削除しますか?"
+msgstr "本当に以下のSSH公開鍵を削除しますか?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
msgid "Do you really want to erase all settings?"
-msgstr "本当に全ての設定を消去しますか?"
+msgstr "本当にすべての設定を消去しますか?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2753
msgid "Do you really want to recursively delete the directory \"%s\" ?"
-msgstr "本当にディレクトリ \"%s\" を再帰的に削除しますか?"
+msgstr "本当にディレクトリ\"%s\"を再帰的に削除しますか?"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
msgid "Domain required"
@@ -1809,21 +1830,21 @@ msgstr "ドメイン必須"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
msgid "Domain whitelist"
-msgstr "ドメイン ホワイトリスト"
+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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
-msgstr "非フラグメント化"
+msgstr "IPフラグメンテーションを行わない"
#: 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 ""
-"<abbr title=\"Domain Name System\">DNS</abbr> 名の無い <abbr title=\"Domain Name "
-"System\">DNS</abbr> リクエストを転送しない"
+"<abbr title=\"Domain Name System\">DNS</abbr> 名の無い <abbr title=\"Domain "
+"Name System\">DNS</abbr> リクエストを転送しない"
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
msgid "Down"
@@ -1831,19 +1852,19 @@ msgstr "ダウン"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
msgid "Down Delay"
-msgstr "ダウン遅延"
+msgstr "ダウンディレイ"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
msgid "Download backup"
-msgstr "バックアップアーカイブのダウンロード"
+msgstr "バックアップをダウンロード"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
msgid "Download mtdblock"
-msgstr "mtdblock のダウンロード"
+msgstr "mtdblockをダウンロード"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
msgid "Downstream SNR offset"
-msgstr ""
+msgstr "下りSNRオフセット"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2620
msgid "Drag to reorder"
@@ -1855,45 +1876,42 @@ msgstr "重複フレームをドロップ"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
msgid "Dropbear Instance"
-msgstr "Dropbear設定"
+msgstr "Dropbearインスタンス"
#: 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 ""
-"Dropbear は <abbr title=\"Secure Shell\">SSH</abbr> ネットワークへのシェルア"
-"クセスと統合された <abbr title=\"Secure Copy\">SCP</abbr> サーバーを提供しま"
-"す"
+"Dropbearは<abbr title=\"Secure Shell\">SSH</abbr>ネットワークへのシェルアクセスと統合された<abbr "
+"title=\"Secure Copy\">SCP</abbr>サーバーを提供します"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
msgid "Dual-Stack Lite (RFC6333)"
-msgstr "DS-Lite(RFC6333)"
+msgstr "Dual-Stack Lite (RFC6333)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:595
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
-msgstr "動的 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
+msgstr "動的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
msgid "Dynamic tunnel"
-msgstr "動的トンネル機能"
+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 ""
-"クライアントに対して動的にDHCPアドレスを割り振ります。無効に設定した場合、静"
-"的リースのみを行います。"
+msgstr "クライアントに対して動的にDHCPアドレスを割り振ります。無効化した場合、静的リースが設定されたクライアントのみ接続できます。"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
msgid "EA-bits length"
-msgstr "EA ビット長"
+msgstr "EAビット長"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1491
msgid "EAP-Method"
-msgstr "EAP メソッド"
+msgstr "EAPメソッド"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2640
#: modules/luci-base/htdocs/luci-static/resources/form.js:2643
@@ -1909,17 +1927,15 @@ msgstr "編集"
msgid ""
"Edit the raw configuration data above to fix any error and hit \"Save\" to "
"reload the page."
-msgstr ""
-"上記の設定データを直接編集してエラーを修正し、 \"保存\" ボタンを押してこの"
-"ページをリロードします。"
+msgstr "上記の設定データを編集してエラーを修正し、\"保存\"ボタンを押してページを再読み込みしてください。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:842
msgid "Edit this network"
-msgstr "ネットワークを編集"
+msgstr "このネットワークを編集"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
msgid "Edit wireless network"
-msgstr "無線ネットワークの編集"
+msgstr "無線ネットワークを編集"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
msgid "Emergency"
@@ -1928,37 +1944,36 @@ 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 "有効化"
#: 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 ""
-"<abbr title=\"Internet Group Management Protocol\">IGMP</abbr> スヌーピングの"
-"有効化"
+"<abbr title=\"Internet Group Management Protocol\">IGMP</abbr>スヌーピングを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460
msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
-msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr>を有効にする"
+msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr>を有効化"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:367
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
msgid "Enable DNS lookups"
-msgstr "DNS 逆引きを有効化"
+msgstr "DNS逆引きを有効化"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
msgid "Enable Dynamic Shuffling Of Flows"
-msgstr ""
+msgstr "フローの動的シャッフルを有効化"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
msgid "Enable HE.net dynamic endpoint update"
-msgstr "HE.netの動的endpoint更新を有効にします"
+msgstr "HE.netの動的エンドポイント更新を有効化"
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
msgid "Enable IPv6 negotiation"
-msgstr "IPv6 ネゴシエーションの有効化"
+msgstr "IPv6ネゴシエーションを有効化"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:93
@@ -1967,39 +1982,40 @@ msgstr "IPv6 ネゴシエーションの有効化"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
msgid "Enable IPv6 negotiation on the PPP link"
-msgstr "PPPリンクのIPv6 ネゴシエーションを有効にする"
+msgstr "PPPリンクのIPv6ネゴシエーションを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
msgid "Enable Jumbo Frame passthrough"
-msgstr "ジャンボフレーム パススルーを有効にする"
+msgstr "ジャンボフレームパススルーを有効化"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:240
msgid "Enable NTP client"
-msgstr "NTPクライアント機能を有効にする"
+msgstr "NTPクライアントを有効化"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
msgid "Enable Single DES"
-msgstr "シングルDESの有効化"
+msgstr "シングルDESを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
msgid "Enable TFTP server"
-msgstr "TFTPサーバーを有効にする"
+msgstr "TFTPサーバーを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
msgid "Enable VLAN functionality"
-msgstr "VLAN機能を有効にする"
+msgstr "VLAN機能を有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
-msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSK/WPA3-SAEが必要"
+msgstr "WPSプッシュボタンを有効にします。WPA(2)-PSK/WPA3-SAEが必要です"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634
msgid "Enable key reinstallation (KRACK) countermeasures"
-msgstr "Key Reinstallation(KRACK)対策の有効化"
+msgstr "Key Reinstallation(KRACK)対策を有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
+#, fuzzy
msgid "Enable learning and aging"
-msgstr "ラーニング エイジング機能を有効にする"
+msgstr "ラーニングエイジング機能を有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
msgid "Enable mirroring of incoming packets"
@@ -2012,29 +2028,34 @@ msgstr "送信パケットのミラーリングを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:882
msgid ""
"Enable packet steering across all CPUs. May help or hinder network speed."
-msgstr ""
-"すべての CPU でパケット・ステアリングを有効にします。 ネットワーク速度を向上"
-"または阻害する可能性があります。"
+msgstr "すべてのCPUでパケットステアリングを有効にします。 ネットワーク速度を向上または低下させることがあります。"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75
msgid "Enable rx checksum"
-msgstr "rx チェックサムを有効化"
+msgstr "rxチェックサムを有効化"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "マルチキャストトラフィックのサポートを有効化(オプション)。"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "カプセル化されたパケットの DF(Don't Fragment)フラグを有効にします。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:837
msgid "Enable this network"
-msgstr "このネットワークを有効にします"
+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 "tx チェックサムを有効化"
+msgstr "txチェックサムを有効化"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
@@ -2044,23 +2065,21 @@ msgstr "有効"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
msgid "Enables IGMP snooping on this bridge"
-msgstr "ブリッジの IGMP スヌーピングを有効にします"
+msgstr "このブリッジのIGMPスヌーピングを有効化"
#: 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 ""
-"同一のモビリティ ドメイン(モビリティ グループ)に属するアクセスポイント間の"
-"高速ローミングを有効化"
+msgstr "同じモビリティドメインを持つアクセスポイント間の高速ローミングを有効化"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:460
msgid "Enables the Spanning Tree Protocol on this bridge"
-msgstr "スパニングツリー プロトコルを有効にする"
+msgstr "このブリッジのスパニングツリープロトコル(STP)を有効化"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
msgid "Encapsulation limit"
-msgstr "カプセル化制限"
+msgstr "カプセル化限度"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:973
@@ -2071,17 +2090,17 @@ msgstr "カプセル化モード"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "暗号化"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:161
msgid "Endpoint Host"
-msgstr "エンドポイント ホスト"
+msgstr "エンドポイントホスト"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:165
msgid "Endpoint Port"
-msgstr "エンドポイント ポート"
+msgstr "エンドポイントポート"
#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
msgid "Enter custom value"
@@ -2106,7 +2125,7 @@ msgstr "エラー"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
msgid "Errored seconds (ES)"
-msgstr ""
+msgstr "エラー秒数(ES)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:2889
#: modules/luci-compat/luasrc/model/network.lua:1433
@@ -2120,23 +2139,24 @@ msgstr "イーサネットスイッチ"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
msgid "Every 30 seconds (slow, 0)"
-msgstr ""
+msgstr "30秒ごと(slow、0)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
msgid "Every second (fast, 1)"
-msgstr ""
+msgstr "毎秒(fast、1)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
msgid "Exclude interfaces"
-msgstr "除外インターフェース"
+msgstr "除外するインターフェース"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
msgid "Expand hosts"
-msgstr "拡張ホスト設定"
+msgstr "拡張ホスト"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:198
+#, fuzzy
msgid "Expecting a hexadecimal assignment hint"
-msgstr "期待される値: 16進数の割り当てヒント"
+msgstr "16進数の割り当てヒントである必要があります"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
@@ -2148,11 +2168,11 @@ msgstr "期待される値: 16進数の割り当てヒント"
#: 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 "期待される値: %s"
+msgstr "%sである必要があります"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
msgid "Expecting: non-empty value"
-msgstr ""
+msgstr "空ではない値である必要があります"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
msgid "Expires"
@@ -2161,7 +2181,7 @@ msgstr "期限切れ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591
msgid ""
"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
-msgstr "リースアドレスの有効時間です。最小値は2分です(<code>2m</code>)。"
+msgstr "リースアドレスの有効期限は、最短で2分です(<code>2m</code>)。"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
msgid "External"
@@ -2169,51 +2189,51 @@ msgstr "外部"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482
msgid "External R0 Key Holder List"
-msgstr ""
+msgstr "外部R0キーホルダーリスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486
msgid "External R1 Key Holder List"
-msgstr ""
+msgstr "外部R1キーホルダーリスト"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:146
msgid "External system log server"
-msgstr "外部システムログ サーバー"
+msgstr "外部システムログサーバー"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:151
msgid "External system log server port"
-msgstr "外部システムログ・サーバー ポート"
+msgstr "外部システムログサーバーポート"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:156
msgid "External system log server protocol"
-msgstr "外部システムログ・サーバー プロトコル"
+msgstr "外部システムログサーバープロトコル"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
msgid "Extra SSH command options"
-msgstr "拡張 SSHコマンドオプション"
+msgstr "拡張SSHコマンドオプション"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83
msgid "Extra pppd options"
-msgstr ""
+msgstr "追加のpppdオプション"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81
msgid "Extra sstpc options"
-msgstr ""
+msgstr "追加のsstpcオプション"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456
msgid "FT over DS"
-msgstr ""
+msgstr "FT over DS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1457
msgid "FT over the Air"
-msgstr ""
+msgstr "FT over the Air"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1454
msgid "FT protocol"
-msgstr "FT プロトコル"
+msgstr "FTプロトコル"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
msgid "Failed to change the system password."
-msgstr "システム パスワードの変更に失敗しました。"
+msgstr "システムパスワードの変更に失敗しました。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4122
msgid "Failed to confirm apply within %ds, waiting for rollback…"
@@ -2221,7 +2241,7 @@ msgstr "%d秒以内に適用できませんでした。ロールバック中で
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
-msgstr "\"/etc/init.d/%s %s\" の実行に失敗しました: %s"
+msgstr "\"/etc/init.d/%s %s\"の実行に失敗しました: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "File"
@@ -2249,20 +2269,21 @@ msgid "Filter private"
msgstr "プライベートフィルター"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
+#, fuzzy
msgid "Filter useless"
-msgstr "役に立たないフィルター"
+msgstr "不要パケットフィルター"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
msgid "Filtering for all slaves, no validation"
-msgstr ""
+msgstr "すべてのスレーブをフィルタリング(検証なし)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
msgid "Filtering for all slaves, validation only for active slave"
-msgstr ""
+msgstr "すべてのスレーブをフィルタリング(アクティブなスレーブのみ検証)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
msgid "Filtering for all slaves, validation only for backup slaves"
-msgstr ""
+msgstr "すべてのスレーブをフィルタリング(バックアップスレーブのみ検証)"
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
@@ -2273,9 +2294,7 @@ msgstr "ファイナライズに失敗しました"
msgid ""
"Find all currently attached filesystems and swap and replace configuration "
"with defaults based on what was detected"
-msgstr ""
-"現在アタッチされている全てのファイルシステムとスワップを検索し、検出結果に基"
-"づいてデフォルト設定を置き換える"
+msgstr "現在接続されているすべてのファイルシステムとスワップを検索し、検索結果に基づいてデフォルト設定に置き換える"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:820
msgid "Find and join network"
@@ -2291,7 +2310,7 @@ msgstr "ファイアウォール"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:102
msgid "Firewall Mark"
-msgstr "ファイアウォール マーク"
+msgstr "ファイアウォールマーク"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:326
msgid "Firewall Settings"
@@ -2299,19 +2318,19 @@ msgstr "ファイアウォール設定"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
msgid "Firewall Status"
-msgstr "ファイアウォール ステータス"
+msgstr "ファイアウォールステータス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
msgid "Firmware File"
-msgstr "ファームウェア ファイル"
+msgstr "ファームウェアファイル"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
msgid "Firmware Version"
-msgstr "ファームウェア バージョン"
+msgstr "ファームウェアバージョン"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
msgid "Fixed source port for outbound DNS queries"
-msgstr "DNSクエリを送信する送信元ポートを固定します"
+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
@@ -2324,11 +2343,11 @@ msgstr "イメージファイルをフラッシュしますか?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
msgid "Flash new firmware image"
-msgstr "ファームウェアの更新"
+msgstr "新しいファームウェアイメージをフラッシュ"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:356
msgid "Flash operations"
-msgstr "更新機能"
+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
@@ -2341,24 +2360,23 @@ msgstr "強制"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
msgid "Force 40MHz mode"
-msgstr "強制 40MHz モード"
+msgstr "強制40MHzモード"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158
msgid "Force CCMP (AES)"
-msgstr "CCMP(AES)"
+msgstr "強制CCMP(AES)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
msgid "Force DHCP on this network even if another server is detected."
-msgstr ""
-"別のDHCPサーバーが検出された場合でも、DHCPサーバー機能を強制的に起動します。"
+msgstr "別のDHCPサーバーが検出された場合でも、このネットワークのDHCPサーバー機能を強制します。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159
msgid "Force TKIP"
-msgstr "TKIP"
+msgstr "強制TKIP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
msgid "Force TKIP and CCMP (AES)"
-msgstr "TKIP 及びCCMP(AES)"
+msgstr "強制TKIP及びCCMP(AES)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
msgid "Force link"
@@ -2370,27 +2388,27 @@ msgstr "強制アップグレード"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
msgid "Force use of NAT-T"
-msgstr "NAT-Tの強制使用"
+msgstr "NAT-Tを強制的に使用"
#: modules/luci-base/luasrc/view/csrftoken.htm:8
msgid "Form token mismatch"
-msgstr "フォーム トークンの不一致"
+msgstr "フォームトークンの不一致"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
msgid "Forward DHCP traffic"
-msgstr "DHCPトラフィックを転送する"
+msgstr "DHCPトラフィックを転送"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
msgid "Forward Error Correction Seconds (FECS)"
-msgstr ""
+msgstr "前方誤り訂正秒(FECS)"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
msgid "Forward broadcast traffic"
-msgstr "ブロードキャスト トラフィックを転送する"
+msgstr "ブロードキャストトラフィックを転送"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
msgid "Forward mesh peer traffic"
-msgstr ""
+msgstr "メッシュピアトラフィックを転送"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
msgid "Forwarding mode"
@@ -2405,12 +2423,12 @@ msgid ""
"Further information about WireGuard interfaces and peers at <a href='http://"
"wireguard.com'>wireguard.com</a>."
msgstr ""
-"WireGuard インターフェースとピアについての詳細情報: <a href=\"http://"
-"wireguard.com\">wireguard.com</a>。"
+"WireGuardインターフェースとピアについての詳細情報については<a href='http://wireguard.com'>wireguard."
+"com</a>を参照してください。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:62
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2421,19 +2439,19 @@ msgstr "GPRSのみ"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
msgid "GRE tunnel over IPv4"
-msgstr ""
+msgstr "IPv4上のGREトンネル"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
msgid "GRE tunnel over IPv6"
-msgstr ""
+msgstr "IPv6上のGREトンネル"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
msgid "GRETAP tunnel over IPv4"
-msgstr ""
+msgstr "IPv4上のGRETAPトンネル"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
msgid "GRETAP tunnel over IPv6"
-msgstr ""
+msgstr "IPv6上のGRETAPトンネル"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
msgid "Gateway"
@@ -2441,12 +2459,12 @@ msgstr "ゲートウェイ"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Gateway Ports"
-msgstr "ゲートウェイ ポート"
+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 "無効なゲートウェイ アドレスです"
+msgstr "無効なゲートウェイアドレス"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124
msgid "Gateway metric"
@@ -2469,23 +2487,23 @@ msgstr "一般設定"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
msgid "Generate Config"
-msgstr "コンフィグ生成"
+msgstr "設定を生成"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
msgid "Generate Key"
-msgstr ""
+msgstr "キーを生成"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
msgid "Generate PMK locally"
-msgstr "ローカルで PMK を生成"
+msgstr "ローカルでPMKを生成"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
msgid "Generate archive"
-msgstr "バックアップアーカイブを生成"
+msgstr "アーカイブを生成"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
msgid "Given password confirmation did not match, password not changed!"
-msgstr "入力したパスワードが一致しません。パスワードは変更されません!"
+msgstr "入力された確認用パスワードが一致していません。パスワードは変更されませんでした!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
msgid "Global Settings"
@@ -2493,7 +2511,7 @@ msgstr "全体設定"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
msgid "Global network options"
-msgstr "グローバル ネットワークオプション"
+msgstr "グローバルネットワークオプション"
#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
@@ -2512,39 +2530,39 @@ msgstr "関連する設定ページへ移動"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:33
msgid "Grant access to DHCP configuration"
-msgstr "DHCP 構成へのアクセスを許可"
+msgstr "DHCP設定へのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:102
msgid "Grant access to DHCP status display"
-msgstr "DHCP ステータス表示へのアクセスを許可"
+msgstr "DHCPステータス表示へのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
msgid "Grant access to DSL status display"
-msgstr "DSL ステータス表示へのアクセスを許可"
+msgstr "DSLステータス表示へのアクセスを許可"
#: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
msgid "Grant access to LuCI OpenConnect procedures"
-msgstr "LuCI OpenConnect プロシージャへのアクセスを許可"
+msgstr "LuCI OpenConnectプロシージャへのアクセスを許可"
#: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
msgid "Grant access to LuCI Wireguard procedures"
-msgstr ""
+msgstr "LuCI Wireguardプロシージャへのアクセスを許可"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
msgid "Grant access to SSH configuration"
-msgstr "SSH 構成へのアクセスを許可"
+msgstr "SSH設定へのアクセスを許可"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
msgid "Grant access to basic LuCI procedures"
-msgstr "基本的な LuCI プロシージャへのアクセスを許可"
+msgstr "基本的なLuCIプロシージャへのアクセスを許可"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
msgid "Grant access to crontab configuration"
-msgstr "crontab 構成へのアクセスを許可"
+msgstr "crontab設定へのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
msgid "Grant access to firewall status"
-msgstr "ファイアウォール・ステータスへのアクセスを許可"
+msgstr "ファイアウォールステータスへのアクセスを許可"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
msgid "Grant access to flash operations"
@@ -2556,15 +2574,15 @@ msgstr "メインステータス表示へのアクセスを許可"
#: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
msgid "Grant access to mmcli"
-msgstr "mmcli へのアクセスを許可"
+msgstr "mmcliへのアクセスを許可"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
msgid "Grant access to mount configuration"
-msgstr "マウント構成へのアクセスを許可"
+msgstr "マウント設定へのアクセスを許可"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
msgid "Grant access to network configuration"
-msgstr "ネットワーク構成へのアクセスを許可"
+msgstr "ネットワーク設定へのアクセスを許可"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:46
msgid "Grant access to network diagnostic tools"
@@ -2572,11 +2590,11 @@ msgstr "ネットワーク診断ツールへのアクセスを許可"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
msgid "Grant access to network status information"
-msgstr "ネットワーク・ステータス情報へのアクセスを許可"
+msgstr "ネットワークステータス情報へのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
msgid "Grant access to process status"
-msgstr "プロセス・ステータスへのアクセスを許可"
+msgstr "プロセスステータスへのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
msgid "Grant access to realtime statistics"
@@ -2584,11 +2602,11 @@ msgstr "リアルタイム統計へのアクセスを許可"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
msgid "Grant access to startup configuration"
-msgstr "スタートアップ構成へのアクセスを許可"
+msgstr "スタートアップ設定へのアクセスを許可"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
msgid "Grant access to system configuration"
-msgstr "システム構成へのアクセスを許可"
+msgstr "システム設定へのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
msgid "Grant access to system logs"
@@ -2596,15 +2614,15 @@ msgstr "システムログへのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
msgid "Grant access to the system route status"
-msgstr "システム・ルート・ステータスへのアクセスを許可"
+msgstr "システムルートステータスへのアクセスを許可"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
msgid "Grant access to wireless status display"
-msgstr "ワイヤレス・ステータス表示へのアクセスを許可"
+msgstr "無線ステータス表示へのアクセスを許可"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
msgid "Group Password"
-msgstr "グループ パスワード"
+msgstr "グループパスワード"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
msgid "Guest"
@@ -2612,19 +2630,19 @@ msgstr "ゲスト"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
msgid "HE.net password"
-msgstr "HE.net パスワード"
+msgstr "HE.netパスワード"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
msgid "HE.net username"
-msgstr "HE.net ユーザー名"
+msgstr "HE.netユーザー名"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
msgid "Hang Up"
-msgstr "再起動"
+msgstr "ハングアップ"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
msgid "Header Error Code Errors (HEC)"
-msgstr ""
+msgstr "ヘッダーエラーコードエラー(HEC)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
msgid "Heartbeat interval (kernel: heartbeat)"
@@ -2634,47 +2652,45 @@ msgstr "ハートビート(kernel: heartbeat)"
msgid ""
"Here you can configure the basic aspects of your device like its hostname or "
"the timezone."
-msgstr ""
-"このページではホスト名やタイムゾーンなどの基本的な設定を行うことが出来ます。"
+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 "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>の隠匿"
+msgstr "<abbr title=\"Extended Service Set Identifier\">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
msgid "Hide empty chains"
-msgstr "空のチェインを非表示"
+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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "ホスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
msgid "Host entries"
-msgstr "ホスト エントリー"
+msgstr "ホストエントリー"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
msgid "Host expiry timeout"
-msgstr "ホスト終了タイムアウト"
+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 ""
-"ホスト<abbr title=\"Internet Protocol Address\">IP</abbr> または ネットワーク"
+msgstr "ホスト<abbr title=\"Internet Protocol Address\">IP</abbr>またはネットワーク"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:102
msgid "Host-Uniq tag content"
-msgstr "Host-Uniq タグ"
+msgstr "Host-Uniqタグコンテンツ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js: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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "ホスト名"
@@ -2695,11 +2711,11 @@ 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 "VXLANの識別に使用される ID"
+msgstr "VXLANの識別に使用されるID"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
-msgstr ""
+msgstr "IEEE 802.3adダイナミックリンクアグリゲーション(802.3ad、4)"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
msgid "IKE DH Group"
@@ -2711,7 +2727,7 @@ msgstr "IPアドレス"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:80
msgid "IP Protocol"
-msgstr "IP プロトコル"
+msgstr "IPプロトコル"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114
msgid "IP Type"
@@ -2724,12 +2740,12 @@ msgstr "IPアドレス"
#: modules/luci-base/htdocs/luci-static/resources/network.js:10
#: modules/luci-compat/luasrc/model/network.lua:28
msgid "IP address is invalid"
-msgstr "無効な IP アドレスです"
+msgstr "無効なIPアドレスです"
#: modules/luci-base/htdocs/luci-static/resources/network.js:13
#: modules/luci-compat/luasrc/model/network.lua:31
msgid "IP address is missing"
-msgstr "IP アドレスがありません"
+msgstr "IPアドレスがありません"
#: 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
@@ -2744,37 +2760,37 @@ msgstr "IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316
msgid "IPv4 Firewall"
-msgstr "IPv4 ファイアウォール"
+msgstr "IPv4ファイアウォール"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
msgid "IPv4 Upstream"
-msgstr "IPv4 アップストリーム"
+msgstr "IPv4上り"
#: 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 "IPv4 アドレス"
+msgstr "IPv4アドレス"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
msgid "IPv4 assignment length"
-msgstr "IPv4 割り当て長"
+msgstr "IPv4割り当て長"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
msgid "IPv4 broadcast"
-msgstr "IPv4 ブロードキャスト"
+msgstr "IPv4ブロードキャスト"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
msgid "IPv4 gateway"
-msgstr "IPv4 ゲートウェイ"
+msgstr "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 "IPv4 ネットマスク"
+msgstr "IPv4ネットマスク"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:291
msgid "IPv4 network in address/netmask notation"
-msgstr "IPv4 ネットワーク(アドレス/ネットマスク 表記)"
+msgstr "IPv4ネットワーク(アドレス/ネットマスク表記)"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
msgid "IPv4 only"
@@ -2782,26 +2798,26 @@ msgstr "IPv4のみ"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
msgid "IPv4 prefix"
-msgstr "IPv4 プレフィクス"
+msgstr "IPv4プレフィックス"
#: 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 "IPv4 プレフィクス長"
+msgstr "IPv4プレフィックス長"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
-msgstr "IPv4 アドレス"
+msgstr "IPv4アドレス"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
msgid "IPv4-Gateway"
-msgstr "IPv4 ゲートウェイ"
+msgstr "IPv4ゲートウェイ"
#: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
@@ -2810,7 +2826,7 @@ msgstr "IPv4-in-IPv4(RFC2003)"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
msgid "IPv4/IPv6 (both - defaults to IPv4)"
-msgstr ""
+msgstr "IPv4/IPv6(両方 - デフォルトはIPv4)"
#: 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
@@ -2830,45 +2846,45 @@ msgstr "IPv6"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319
msgid "IPv6 Firewall"
-msgstr "IPv6 ファイアウォール"
+msgstr "IPv6ファイアウォール"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
msgid "IPv6 Neighbours"
-msgstr "IPv6 隣接装置"
+msgstr "IPv6隣接装置"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
msgid "IPv6 Settings"
-msgstr "IPv6 設定"
+msgstr "IPv6設定"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
msgid "IPv6 ULA-Prefix"
-msgstr "IPv6 ULA-プレフィクス"
+msgstr "IPv6 ULAプレフィックス"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
msgid "IPv6 Upstream"
-msgstr "IPv6 アップストリーム"
+msgstr "IPv6上り"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:205
msgid "IPv6 address"
-msgstr "IPv6 アドレス"
+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
msgid "IPv6 assignment hint"
-msgstr "IPv6 割り当てヒント"
+msgstr "IPv6割り当てヒント"
#: 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 "IPv6 割り当て長"
+msgstr "IPv6割り当て長"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:210
msgid "IPv6 gateway"
-msgstr "IPv6 ゲートウェイ"
+msgstr "IPv6ゲートウェイ"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:296
msgid "IPv6 network in address/netmask notation"
-msgstr "IPv6 ネットワーク(アドレス/ネットマスク 表記)"
+msgstr "IPv6ネットワーク(アドレス/ネットマスク表記)"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
msgid "IPv6 only"
@@ -2877,31 +2893,31 @@ msgstr "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
msgid "IPv6 prefix"
-msgstr "IPv6 プレフィクス"
+msgstr "IPv6プレフィックス"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
msgid "IPv6 prefix length"
-msgstr "IPv6 プレフィクス長"
+msgstr "IPv6プレフィックス長"
#: 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 ""
+msgstr "IPv6ルートプレフィックス"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:218
msgid "IPv6 suffix"
-msgstr "IPv6 サフィックス"
+msgstr "IPv6サフィックス"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
msgid "IPv6 support"
-msgstr ""
+msgstr "IPv6サポート"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
-msgstr "IPv6 アドレス"
+msgstr "IPv6アドレス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
msgid "IPv6-PD"
@@ -2928,31 +2944,28 @@ msgstr "識別子"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
msgid "If checked, 1DES is enabled"
-msgstr ""
+msgstr "チェックを付けると、1DESが有効になります"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
msgid "If checked, adds \"+ipv6\" to the pppd options"
-msgstr ""
+msgstr "チェックを付けると、pppdオプションに\"+ipv6\"が追加されます"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "If checked, encryption is disabled"
-msgstr "チェックした場合、暗号化は無効になります"
+msgstr "チェックを付けると、暗号化が無効になります"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
msgid ""
"If specified, mount the device by its UUID instead of a fixed device node"
-msgstr ""
-"固定のデバイス ノード名のかわりに、設定されたUUIDを使用してマウントします"
+msgstr "固定のデバイスノード名のかわりに、そのUUIDを使用してマウント"
#: 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 ""
-"固定のデバイス ノード名のかわりに、設定されたパーティション ラベルを使用して"
-"マウント"
+msgstr "固定のデバイスノード名のかわりに、パーティションラベルを使用してマウント"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:116
@@ -2974,7 +2987,7 @@ msgstr ""
#: 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 "チェックされていない場合、デフォルト ルートは構成されません"
+msgstr "チェックが付いていない場合、デフォルトルートは構成されません"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:124
@@ -2989,7 +3002,7 @@ msgstr "チェックされていない場合、デフォルト ルートは構
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:100
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:69
msgid "If unchecked, the advertised DNS server addresses are ignored"
-msgstr "チェックされていない場合、通知されたDNSサーバー アドレスを無視します"
+msgstr "チェックが付いていない場合、通知されたDNSサーバーアドレスを無視します"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
msgid ""
@@ -2999,11 +3012,9 @@ msgid ""
"slow process as the swap-device cannot be accessed with the high datarates "
"of the <abbr title=\"Random Access Memory\">RAM</abbr>."
msgstr ""
-"物理メモリが不足する場合、使用されていないデータを一時的にスワップ デバイスに"
-"スワップし、<abbr title=\"Random Access Memory\">RAM</abbr>の使用可能領域を増"
-"やすことができます。ただし、スワップ デバイスは<abbr title=\"Random Access "
-"Memory\">RAM</abbr>から高速にアクセスすることができないため、データのスワップ"
-"は非常に遅い処理であることに注意します。"
+"物理メモリが不足している場合、使用されていないデータを一時的にスワップデバイスに移動し、<abbr title=\"Random Access "
+"Memory\">RAM</abbr>の空き容量を増やすことができます。ただし、スワップデバイスは<abbr title=\"Random Access "
+"Memory\">RAM</abbr>に比べてとても遅いことに注意してください。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
msgid "Ignore <code>/etc/hosts</code>"
@@ -3011,11 +3022,11 @@ msgstr "<code>/etc/hosts</code>を無視"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
msgid "Ignore interface"
-msgstr "インターフェースを無視する"
+msgstr "インターフェースを無視"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
msgid "Ignore resolve file"
-msgstr "リゾルバ ファイルを無視する"
+msgstr "リゾルバファイルを無視"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
msgid "Image"
@@ -3029,9 +3040,7 @@ msgstr "イン"
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 ""
-"システムへの未認証のアクセスを防ぐために、リクエストはブロックされました。以"
-"下の \"続行\" をクリックして、前のページに戻ります。"
+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
@@ -3046,26 +3055,26 @@ msgstr "未使用時タイムアウト"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 ""
+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 key"
+msgstr "受信キー"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
-msgstr ""
+msgstr "受信シリアル化"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
msgid "Info"
@@ -3090,35 +3099,33 @@ msgstr "起動スクリプト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
msgid "Inner certificate constraint (Domain)"
-msgstr ""
+msgstr "内部証明書制約(ドメイン)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
msgid "Inner certificate constraint (SAN)"
-msgstr ""
+msgstr "内部証明書制約(SAN)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571
msgid "Inner certificate constraint (Subject)"
-msgstr ""
+msgstr "内部証明書制約(件名)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
msgid "Inner certificate constraint (Wildcard)"
-msgstr ""
+msgstr "内部証明書制約(ワイルドカード)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:268
msgid "Install protocol extensions..."
-msgstr "プロトコル拡張機能をインストールします..."
+msgstr "プロトコル拡張機能をインストール..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
-msgstr ""
-"一致した SSID のネットワークへの参加に代わり、 BSSID <code>%h</code> にのみ接"
-"続します。"
+msgstr "一致するSSIDのネットワークへの参加ではなく、 BSSID<code>%h</code>にのみ接続します。"
#: modules/luci-compat/luasrc/view/cbi/map.htm:43
msgid "Insufficient permissions to read UCI configuration."
-msgstr "UCI 構成を読み取るための十分な権限がありません。"
+msgstr "UCI設定を読み取るための権限がありません。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:464
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
@@ -3133,8 +3140,7 @@ 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 ""
-"インターフェース %q のデバイスは、 %q から %q へ自動的に移行されました。"
+msgstr "インターフェース%qデバイスは、%qから%qへ自動的に移行されました。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
msgid "Interface Configuration"
@@ -3143,19 +3149,19 @@ 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 "インターフェースで %d 個の変更が保留中です"
+msgstr "インターフェースに%d個の保留中の変更があります"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
msgid "Interface is disabled"
-msgstr "インターフェースが無効です"
+msgstr "インターフェースは無効"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:64
msgid "Interface is marked for deletion"
-msgstr "インターフェースは削除のためマークされています"
+msgstr "インターフェースは削除対象としてマークされています"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:209
msgid "Interface is reconnecting..."
-msgstr "インターフェースを再接続中..."
+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
@@ -3192,25 +3198,35 @@ msgstr "内部"
#: modules/luci-base/luasrc/view/error500.htm:8
msgid "Internal Server Error"
-msgstr "内部サーバー エラー"
+msgstr "内部サーバーエラー"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
msgid "Interval For Sending Learning Packets"
-msgstr ""
+msgstr "学習パケット送信間隔"
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
msgid "Invalid"
-msgstr "入力値が不正です"
+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 "無効な Base64 キー文字列"
+msgstr "無効なBase64キー文字列"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr "無効なTOS値です。00...FFまたは継承する必要があります"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+msgstr "無効なトラフィッククラス値です。00..FFまたは継承する必要があります"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
-msgstr "無効なVLAN IDです! IDは%dから%dまでの値のみ入力可能です。"
+msgstr "無効なVLAN IDです! IDは%dから%dまでのみ許可されています。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
@@ -3224,7 +3240,7 @@ msgstr "無効な引数"
msgid ""
"Invalid bearer list. Possibly too many bearers created. This protocol "
"supports one and only one bearer."
-msgstr ""
+msgstr "無効なベアラーリストです。作成されたベアラーが多すぎる可能性があります。このプロトコルは、1つのベアラーのみサポートします。"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
msgid "Invalid command"
@@ -3232,19 +3248,11 @@ msgstr "無効なコマンド"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:106
msgid "Invalid hexadecimal value"
-msgstr "無効な 16 進数値"
+msgstr "無効な16進数"
#: 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 ""
+msgstr "ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力してください。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
@@ -3254,39 +3262,39 @@ msgstr "クライアント間の分離"
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
-msgstr "更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。イメージファイルを確認してください!"
+msgstr "フラッシュしようとしたイメージファイルはこのフラッシュメモリー向けではありません。イメージファイルを確認してください!"
#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:291
msgid "JavaScript required!"
-msgstr "JavaScriptを有効にしてください!"
+msgstr "JavaScriptが必要です!"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
msgid "Join Network"
-msgstr "ネットワークに接続する"
+msgstr "ネットワークに接続"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
msgid "Join Network: Wireless Scan"
-msgstr "ネットワークに接続する: 無線LANスキャン"
+msgstr "ネットワークに接続: 無線スキャン"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
-msgstr "ネットワークに接続: %q"
+msgstr "ネットワークに接続中: %q"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
msgid "Keep settings and retain the current configuration"
-msgstr "現在の設定を保持"
+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 "カーネル ログ"
+msgstr "カーネルログ"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
msgid "Kernel Version"
-msgstr "カーネル バージョン"
+msgstr "カーネルバージョン"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
msgid "Key"
@@ -3298,21 +3306,21 @@ msgstr "キー"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412
msgid "Key #%d"
-msgstr "キー #%d"
+msgstr "キー#%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
-msgstr ""
+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 ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
+msgstr "送信パケットのキー(オプション)。"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
msgid "Kill"
@@ -3325,11 +3333,11 @@ msgstr "L2TP"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
msgid "L2TP Server"
-msgstr "L2TP サーバー"
+msgstr "L2TPサーバー"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
msgid "LACPDU Packets"
-msgstr "LACPDU パケット"
+msgstr "LACPDUパケット"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
@@ -3338,7 +3346,7 @@ msgstr "LACPDU パケット"
#: 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 "LCP echo 失敗数しきい値"
+msgstr "LCP echo失敗しきい値"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
@@ -3347,11 +3355,11 @@ msgstr "LCP echo 失敗数しきい値"
#: 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 "LCP echo 送信間隔"
+msgstr "LCP echo送信間隔"
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
msgid "LED Configuration"
-msgstr "LED 設定"
+msgstr "LED設定"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:974
msgid "LLC"
@@ -3372,11 +3380,12 @@ msgstr "言語とスタイル"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
msgid "Latency"
-msgstr "レイテンシー"
+msgstr "遅延"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
+#, fuzzy
msgid "Leaf"
-msgstr "Leaf"
+msgstr "葉"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:591
@@ -3385,8 +3394,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "残りリース時間"
@@ -3398,14 +3407,14 @@ msgstr "リースファイル"
#: 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 "空欄の場合、自動検知を行います"
+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 "空欄の場合、現在のWANアドレスを使用します"
+msgstr "空欄の場合、現在のWANアドレスを使用"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4030
msgid "Legend:"
@@ -3413,37 +3422,35 @@ msgstr "凡例:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
msgid "Limit"
-msgstr "割り当て数"
+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 ""
-"DNS サービスを、現在 DNS を提供しているサブネットのインターフェースに限定しま"
-"す。"
+msgstr "DNSサービスを、現在DNSを提供しているサブネットインターフェースに限定します。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
msgid "Limit listening to these interfaces, and loopback."
-msgstr "待ち受けをこれらのインターフェースとループバックに制限します。"
+msgstr "リッスンをこれらのインターフェースに限定し、ループバックします。"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
msgid "Line Attenuation (LATN)"
-msgstr ""
+msgstr "回線減衰(LATN)"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
msgid "Line Mode"
-msgstr "ラインモード"
+msgstr "回線モード"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
msgid "Line State"
-msgstr "ライン状態"
+msgstr "回線状態"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
msgid "Line Uptime"
-msgstr "ライン稼働時間"
+msgstr "回線稼働時間"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
msgid "Link Aggregation (Channel Bonding)"
-msgstr ""
+msgstr "リンクアグリゲーション(チャネルボンディング)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
msgid "Link Monitoring"
@@ -3457,9 +3464,7 @@ msgstr "リンクオン"
msgid ""
"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
"requests to"
-msgstr ""
-"問い合わせを転送する<abbr title=\"Domain Name System\">DNS</abbr> サーバーの"
-"リストを設定します"
+msgstr "リクエストを転送する<abbr title=\"Domain Name System\">DNS</abbr>サーバーのリスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1482
msgid ""
@@ -3469,6 +3474,9 @@ msgid ""
"from the R0KH that the STA used during the Initial Mobility Domain "
"Association."
msgstr ""
+"これは同じモビリティドメイン内のR0KHのリストです。<br />形式: MACアドレス、NAS識別子、128ビットキー(16進数の文字列)<br "
+"/>このリストは、初期モビリティドメインアソシエーションでSTAが使用したR0KHからPMK-R1キーを要求する際に、R0KH-"
+"ID(NAS識別子)を宛先MACアドレスにマッピングするために使用されます。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1486
msgid ""
@@ -3478,40 +3486,41 @@ msgid ""
"R0KH. This is also the list of authorized R1KHs in the MD that can request "
"PMK-R1 keys."
msgstr ""
+"これは同じモビリティドメイン内のR1KHのリストです。<br />形式: MACアドレス、R1KH-"
+"ID(コロン付き6オクテット)、128ビットキー(16進数の文字列)<br />このリストは、R0KHからPMK-R1キーを送信する際に、R1KH-"
+"IDを宛先MACアドレスにマッピングするために使用されます。また、PMK-R1キーを要求できるMD内の許可されたR1KHのリストでもあります。"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
msgid "List of SSH key files for auth"
-msgstr "認証用 SSH暗号キー ファイルのリスト"
+msgstr "認証用SSHキーファイルのリスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
msgid "List of domains to allow RFC1918 responses for"
-msgstr "RFC1918の応答を許可するリスト"
+msgstr "RFC1918の応答を許可するドメインのリスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
msgid "List of domains to force to an IP address."
-msgstr ""
+msgstr "これはIPアドレスに強制的に設定するドメインのリストです。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
msgid "List of hosts that supply bogus NX domain results"
-msgstr "NX ドメインの偽の結果として返されるホストのリスト"
+msgstr "NXドメインの嘘の結果を提供するホストのリスト"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
msgid "Listen Interfaces"
-msgstr "待ち受けインターフェース"
+msgstr "リッスンインターフェース"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
msgid "Listen Port"
-msgstr "待ち受けポート"
+msgstr "リッスンポート"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
msgid "Listen only on the given interface or, if unspecified, on all"
-msgstr ""
-"指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべて対"
-"象"
+msgstr "指定されたインターフェースでのみリッスンを行います。設定しない場合はすべて対象"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
msgid "Listening port for inbound DNS queries"
-msgstr "DNSクエリを受信するポート"
+msgstr "受信DNSクエリをリッスンするポート"
#: 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
@@ -3524,22 +3533,22 @@ msgstr "システム平均負荷"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
msgid "Loading directory contents…"
-msgstr "ディレクトリ内を読み込み中…"
+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 "GUIを準備しています…"
+msgstr "画面表示を読み込み中…"
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
msgid "Local IP address"
-msgstr ""
+msgstr "ローカルIPアドレス"
#: modules/luci-base/htdocs/luci-static/resources/network.js:12
#: modules/luci-compat/luasrc/model/network.lua:30
msgid "Local IP address is invalid"
-msgstr "無効なローカル IP アドレスです"
+msgstr "無効なローカルIPアドレスです"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
msgid "Local IP address to assign"
@@ -3554,15 +3563,15 @@ msgstr "割り当てるローカル IPアドレス"
#: 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 "ローカル IPv4 アドレス"
+msgstr "ローカルIPv4アドレス"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "ローカル IPv6 アドレス"
+msgstr "ローカルIPv6アドレス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
msgid "Local Service Only"
@@ -3570,49 +3579,44 @@ msgstr "ローカルサービスのみ"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
msgid "Local Startup"
-msgstr "ローカル スタートアップ"
+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 "時刻"
+msgstr "現地時間"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
msgid "Local domain"
-msgstr "ローカル ドメイン"
+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 ""
-"ローカル ドメインの定義です。このドメインに一致する名前は転送が行われず、 "
-"DHCP または hosts ファイルのみにより解決されます"
+msgstr "ローカルドメインの定義です。この名前に一致するドメインは転送が行われず、 DHCPまたは hostsファイルのみで解決されます"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
msgid "Local domain suffix appended to DHCP names and hosts file entries"
-msgstr ""
-"DHCP名とhostsファイルのエントリーに付される、ローカルドメイン サフィックス"
+msgstr "DHCP名とhostsファイルの項目に追加される、ローカルドメインサフィックス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
msgid "Local server"
-msgstr "ローカル サーバー"
+msgstr "ローカルサーバー"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
msgid ""
"Localise hostname depending on the requesting subnet if multiple IPs are "
"available"
-msgstr ""
-"複数の IP が利用可能な場合に、ホスト名をリクエスト中のサブネットによってロー"
-"カライズします"
+msgstr "複数のIPが利用可能な場合、リクエスト中のサブネットによってホスト名をローカライズ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
msgid "Localise queries"
-msgstr "ローカライズクエリ"
+msgstr "クエリをローカライズ"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
-msgstr "BSSID へのロック"
+msgstr "BSSIDにロック"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:164
msgid "Log output level"
@@ -3620,23 +3624,23 @@ msgstr "ログ出力レベル"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
msgid "Log queries"
-msgstr "ログ クエリ"
+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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
-msgstr ""
+msgstr "ローカルIPv6アドレスが空かつWAN IPv6が利用できない場合、ローカルエンドポイントを選択する論理ネットワーク(オプション)。"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
-msgstr ""
+msgstr "トンネルが追加される(ブリッジされる)論理ネットワーク(オプション)。"
#: modules/luci-base/luasrc/view/sysauth.htm:38
msgid "Login"
@@ -3648,12 +3652,11 @@ msgstr "ログアウト"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
msgid "Loss of Signal Seconds (LOSS)"
-msgstr ""
+msgstr "信号損失秒数(LOSS)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:581
msgid "Lowest leased address as offset from the network address."
-msgstr ""
-"ネットワークアドレスをオフセットとして、最小のアドレスを設定してください。"
+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
@@ -3661,30 +3664,31 @@ msgid "MAC"
msgstr "MAC"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
+#, fuzzy
msgid "MAC Address For The Actor"
-msgstr ""
+msgstr "アクターのMACアドレス"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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 アドレス"
+msgstr "MACアドレス"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
msgid "MAC-Address Filter"
-msgstr "MAC アドレス フィルタ"
+msgstr "MACアドレスフィルタ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
msgid "MAC-Filter"
-msgstr "MAC-フィルタ"
+msgstr "MACフィルタ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
msgid "MAC-List"
-msgstr "MAC-リスト"
+msgstr "MACリスト"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
@@ -3694,20 +3698,20 @@ msgstr "MAP / LW4over6"
#: 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 "無効な MAP ルールです"
+msgstr "無効なMAPルールです"
#: 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 "メガビット/秒"
+msgstr "Mbps"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3788,13 +3792,13 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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 "メガビット/秒"
+msgstr "Mbps"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
msgid "Medium"
@@ -3865,7 +3869,7 @@ msgstr "モビリティ ドメイン"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "モード"
@@ -3882,6 +3886,7 @@ msgid ""
"Modem connection in progress. Please wait. This process will timeout after 2 "
"minutes."
msgstr ""
+"モデム接続中です。お待ちください。このプロセスは2分後にタイムアウトします。"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
msgid "Modem default"
@@ -3897,7 +3902,7 @@ msgstr "モデム デバイス"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
msgid "Modem disconnection in progress. Please wait."
-msgstr ""
+msgstr "モデム切断中です。お待ちください。"
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
@@ -3912,7 +3917,7 @@ msgstr "モデム初期化タイムアウト"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
msgid "Modem is disabled."
-msgstr ""
+msgstr "モデムは無効です。"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
msgid "ModemManager"
@@ -3933,7 +3938,7 @@ msgstr "さらに表示…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
msgid "Mount Point"
-msgstr "マウント・ポイント"
+msgstr "マウントポイント"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
@@ -3989,6 +3994,13 @@ msgstr "下へ移動"
msgid "Move up"
msgstr "上へ移動"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr "マルチキャスト"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -3999,7 +4011,7 @@ msgstr "NAT-T モード"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
msgid "NAT64 Prefix"
-msgstr "NAT64 プレフィクス"
+msgstr "NAT64 プレフィックス"
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
@@ -4026,7 +4038,7 @@ msgstr "NTPサーバー候補"
msgid "Name"
msgstr "名前"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "新しいネットワークの名前"
@@ -4037,15 +4049,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "ネットワーク ユーティリティ"
@@ -4063,10 +4079,10 @@ msgstr "ネットワークデバイス アクティビティ(kernel: netdev)
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
-msgstr ""
+msgstr "ネットワークインターフェース"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
msgid "New interface for \"%s\" can not be created: %s"
@@ -4091,13 +4107,17 @@ msgstr "いいえ"
msgid "No DHCP Server configured for this interface"
msgstr "このインターフェースにはDHCPサーバーが設定されていません"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "データなし"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
-msgstr "暗号化無し"
+msgstr "暗号化なし"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
msgid "No Host Routes"
-msgstr "ホストの経路情報がありません"
+msgstr "ホストのルートがありません"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
msgid "No NAT-T"
@@ -4113,7 +4133,7 @@ msgstr "クライアントが関連付けられていません"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
-msgstr "受信データ無し"
+msgstr "受信データなし"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2878
msgid "No entries in this directory"
@@ -4123,16 +4143,16 @@ msgstr "ディレクトリ内にエントリーがありません"
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
+#: 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 "No host route"
-msgstr ""
+msgstr "ホストルートなし"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:241
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "情報なし"
@@ -4188,8 +4208,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "ノイズ"
@@ -4261,7 +4281,9 @@ 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 "キャッシュされる DNS エントリーの数です。(最大 10000 件。 0の場合はキャッシュしない)"
+msgstr ""
+"キャッシュされる DNS エントリーの数です。(最大 10000 件。 0の場合はキャッ"
+"シュしない)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
msgid "Number of parallel threads used for compression"
@@ -4273,7 +4295,7 @@ msgstr ""
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
msgid "Obfuscated Group Password"
-msgstr "難読化されたグループ・パスワード"
+msgstr "難読化されたグループパスワード"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
msgid "Obfuscated Password"
@@ -4391,9 +4413,10 @@ msgid ""
"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
"for the interface."
msgstr ""
-"使用できる値: 'eui64', 'random', または '::1' や '::1:2' のような固定値。IPv6 プレフィクス(例: "
-"'a:b:c:d::')を委任サーバーから受信する際、インターフェースの IPv6 "
-"アドレス('a:b:c:d::1')を形成するために使用されるサフィックス(例: '::1')を指定します(オプション) 。"
+"使用できる値: 'eui64', 'random', または '::1' や '::1:2' のような固定値。"
+"IPv6 プレフィックス(例: 'a:b:c:d::')を委任サーバーから受信する際、インター"
+"フェースの IPv6 アドレス('a:b:c:d::1')を形成するために使用されるサフィック"
+"ス(例: '::1')を指定します(オプション) 。"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
msgid ""
@@ -4457,24 +4480,24 @@ msgstr "アウト"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4487,6 +4510,10 @@ msgstr "出力インターフェース"
msgid "Output zone"
msgstr "出力ゾーン"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4498,10 +4525,10 @@ msgstr "MACアドレスを上書きする"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4519,18 +4546,18 @@ msgstr "MACアドレスを上書きする"
msgid "Override MTU"
msgstr "MTUを上書きする"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "TOS を上書き"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4555,7 +4582,7 @@ msgstr ""
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
msgid "Override the table used for internal routes"
-msgstr "内部経路情報に使用されるテーブルを上書き"
+msgstr "内部ルートに使用されるテーブルを上書き"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
msgid "Overview"
@@ -4776,10 +4803,10 @@ msgstr "ピア"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4864,7 +4891,7 @@ msgstr "UMTS を優先"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
msgid "Prefix Delegated"
-msgstr "委任されたプレフィクス(PD)"
+msgstr "委任されたプレフィックス(PD)"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
msgid "Preshared Key"
@@ -4885,7 +4912,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
msgid "Prevent listening on these interfaces."
-msgstr "これらのインターフェースでの待ち受けを停止します。"
+msgstr "これらのインターフェースでのリッスンを停止します。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Prevents client-to-client communication"
@@ -4953,7 +4980,7 @@ msgid ""
"device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
"code> file into the input field."
msgstr ""
-"公開鍵は、プレーン パスワードの使用と比べ、高セキュリティなパスワード無しで"
+"公開鍵は、プレーン パスワードの使用と比べ、高セキュリティなパスワードなしで"
"の SSH ログインを可能とします。新しい鍵をデバイスにアップロードするために、入"
"力欄に OpenSSH 互換の公開鍵(1行)を貼り付けるか、 <code>.pub</code> ファイル"
"をドラッグしてください。"
@@ -4967,7 +4994,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI セルラー"
-#: 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:140
msgid "Quality"
msgstr "クオリティ"
@@ -5004,17 +5031,17 @@ msgstr "RTS/CTSしきい値"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "受信レート"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "受信レート / 送信レート"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
msgid "Radius-Accounting-Port"
-msgstr "Radiusアカウントサーバー ポート番号"
+msgstr "Radiusアカウントサーバーポート番号"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
msgid "Radius-Accounting-Secret"
@@ -5026,7 +5053,7 @@ msgstr "Radiusアカウントサーバー"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
msgid "Radius-Authentication-Port"
-msgstr "Radius認証サーバー ポート番号"
+msgstr "Radius認証サーバーポート番号"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
msgid "Radius-Authentication-Secret"
@@ -5047,8 +5074,8 @@ msgid ""
"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
"Configuration Protocol\">DHCP</abbr>-Server"
msgstr ""
-"<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> サーバーの設"
-"定として <code>/etc/ethers</code> を読み込みます"
+"<code>/etc/ethers</code> を元に <abbr title=\"Dynamic Host Configuration "
+"Protocol\">DHCP</abbr> サーバーを設定"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:402
msgid "Really switch protocol?"
@@ -5060,11 +5087,11 @@ msgstr "リアルタイム グラフ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1448
msgid "Reassociation Deadline"
-msgstr "再アソシエーション制限時間"
+msgstr "再接続制限時間"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
msgid "Rebind protection"
-msgstr "DNSリバインディング・プロテクション"
+msgstr "DNSリバインディングプロテクション"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
@@ -5131,22 +5158,22 @@ msgstr "リモート IPv4アドレス"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
msgid "Remote IPv4 address or FQDN"
-msgstr "リモート IPv4アドレス または FQDN"
+msgstr "リモートIPv4アドレスまたはFQDN"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
msgid "Remote IPv6 address"
-msgstr "リモート IPv6 アドレス"
+msgstr "リモートIPv6アドレス"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
msgid "Remote IPv6 address or FQDN"
-msgstr ""
+msgstr "リモートIPv6アドレスまたはFQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
msgid "Remove"
msgstr "削除"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "無線設定を置換する"
@@ -5156,23 +5183,23 @@ msgstr "IPv6 アドレスのリクエスト"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
msgid "Request IPv6-prefix of length"
-msgstr "リクエストする IPv6 プレフィクス長"
+msgstr "リクエストする IPv6 プレフィックス長"
#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5227,7 +5254,7 @@ msgstr "SAE サポートを含む hostapd が必要"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
msgid "Requires hostapd with WEP support"
-msgstr ""
+msgstr "WEPをサポートしたhostapdが必要"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
msgid ""
@@ -5242,8 +5269,8 @@ msgid ""
"Requires upstream supports DNSSEC; verify unsigned domain responses really "
"come from unsigned domains"
msgstr ""
-"未署名のドメイン レスポンスが、本当にその未署名のドメインから来たものであるか"
-"検証します。上位サーバが DNSSEC をサポートしている必要があります"
+"未署名のドメインレスポンスが、本当にその未署名のドメインから来たものであるか"
+"検証します。上位サーバがDNSSECをサポートしている必要があります"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1253
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1254
@@ -5277,7 +5304,7 @@ msgstr "SAE サポートを含む wpa-supplicant が必要"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252
msgid "Requires wpa-supplicant with WEP support"
-msgstr ""
+msgstr "WEPをサポートしたwpa-supplicantが必要"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
msgid "Reselection policy for primary slave"
@@ -5391,7 +5418,7 @@ msgstr "ルーター パスワード"
#: 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 "経路情報"
+msgstr "ルート"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
msgid ""
@@ -5399,7 +5426,7 @@ msgid ""
"can be reached."
msgstr ""
"特定のホスト又はネットワークに、どのインターフェース及びゲートウェイを通して"
-"通信を行うか、経路情報を設定します。"
+"通信を行うか、ルートを設定します。"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:206
msgid "Rule"
@@ -5422,7 +5449,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5433,11 +5460,11 @@ msgstr "SSH アクセス"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
msgid "SSH server address"
-msgstr "SSH サーバーアドレス"
+msgstr "SSHサーバーアドレス"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
msgid "SSH server port"
-msgstr "SSH サーバーポート"
+msgstr "SSHサーバーポート"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
msgid "SSH username"
@@ -5451,7 +5478,7 @@ msgstr "SSH キー"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5461,7 +5488,7 @@ msgstr "SSTP"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
msgid "SSTP Server"
-msgstr ""
+msgstr "SSTPサーバー"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
msgid "SWAP"
@@ -5551,7 +5578,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
msgid "Send the hostname of this device"
-msgstr ""
+msgstr "このデバイスのホスト名を送信"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
msgid "Server Settings"
@@ -5574,6 +5601,11 @@ msgstr "サービス"
msgid "Session expired"
msgstr "セッションの期限切れ"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "VPN をデフォルト ルートとして設定"
@@ -5622,7 +5654,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Short GI"
@@ -5647,14 +5679,14 @@ msgstr "インターフェースを終了します"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "信号強度"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "信号強度 / ノイズ"
@@ -5713,7 +5745,7 @@ msgstr "申し訳ありません。リクエストされたオブジェクトは
#: modules/luci-base/luasrc/view/error500.htm:9
msgid "Sorry, the server encountered an unexpected error."
-msgstr "申し訳ありません。サーバーに予期せぬエラーが発生しました。"
+msgstr "申し訳ありませんが、サーバーに予期しないエラーが発生しました。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414
msgid ""
@@ -5735,10 +5767,10 @@ msgstr "アクセス元"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
-msgstr ""
+msgstr "ソースインタフェース"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
msgid ""
@@ -5892,6 +5924,8 @@ 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
@@ -5899,22 +5933,30 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "TOS(Type of Service)を指定します。"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
msgstr ""
+"デフォルト(64) 以外のカプセル化パケットのTTL (Time to Live)を指定します"
+"(オプション)。"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
@@ -5922,24 +5964,28 @@ msgstr ""
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64)."
-msgstr "デフォルト値(64)以外のカプセル化パケットの TTL(Time to Live)を指定します。"
+msgstr ""
+"デフォルト値(64)以外のカプセル化パケットの TTL(Time to Live)を指定しま"
+"す。"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
msgstr ""
+"デフォルト(1280 バイト)以外の MTU(最大伝送単位)を指定します(オプショ"
+"ン)。"
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
@@ -5947,9 +5993,11 @@ msgstr ""
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes)."
-msgstr "デフォルト値(1280 bytes)以外の MTU(Maximum Transmission Unit)を指定します。"
+msgstr ""
+"デフォルト値(1280 bytes)以外の MTU(Maximum Transmission Unit)を指定しま"
+"す。"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "暗号鍵を設定します。"
@@ -5958,6 +6006,10 @@ msgstr "暗号鍵を設定します。"
msgid "Start"
msgstr "開始"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr "WPSを開始"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "優先順位"
@@ -5987,6 +6039,11 @@ msgstr "IPv4 静的ルーティング"
msgid "Static IPv6 Routes"
msgstr "IPv6 静的ルーティング"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "静的リース"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "静的リース"
@@ -6027,6 +6084,10 @@ msgstr "ステータス"
msgid "Stop"
msgstr "停止"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+msgstr "WPSを停止"
+
#: 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"
@@ -6041,7 +6102,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "送信"
@@ -6094,7 +6155,7 @@ msgstr "シンボリックリンク"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
msgid "Sync with NTP-Server"
-msgstr "NTP サーバーと同期"
+msgstr "NTPサーバーと同期"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
msgid "Sync with browser"
@@ -6134,14 +6195,14 @@ msgstr "TFTP設定"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
msgid "TFTP server root"
-msgstr "TFTPサーバー・ルート"
+msgstr "TFTPサーバールート"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "送信レート"
@@ -6178,14 +6239,14 @@ msgstr ""
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
msgid "The IPv4 address or the fully-qualified domain name of the remote end."
-msgstr "リモート・エンドの IPv4 アドレスまたは完全修飾ドメイン名です。"
+msgstr "リモートエンドのIPv4アドレスまたは完全修飾ドメイン名です。"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
msgid ""
"The IPv4 address or the fully-qualified domain name of the remote tunnel end."
-msgstr "リモートトンネル・エンドの IPv4 アドレスまたは完全修飾ドメイン名です。"
+msgstr "リモートトンネルエンドのIPv4アドレスまたは完全修飾ドメイン名です。"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
msgid "The IPv6 address or the fully-qualified domain name of the remote end."
@@ -6202,10 +6263,10 @@ msgstr ""
msgid ""
"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
msgstr ""
-"プロバイダに割り当てられる IPv6 プレフィクスです。通常、 <code>::</code> で終"
-"わります"
+"プロバイダに割り当てられる IPv6 プレフィックスです。通常、 <code>::</code> で"
+"終わります"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6217,6 +6278,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "設定ファイルは以下のエラーにより読み込めませんでした:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6229,7 +6296,7 @@ msgid ""
msgstr ""
"保留されている変更を適用後、デバイスへのアクセスが %d 秒以内に到達することが"
"できませんでした。これは、安全上の理由によりロールバックされる設定に起因する"
-"ものです。もしそれでも設定の変更が正しいと思われる場合は、チェック無しの変更"
+"ものです。もしそれでも設定の変更が正しいと思われる場合は、チェックなしの変更"
"の適用を行ってください。もしくは、再度の適用を試行する前にこの警告を閉じて設"
"定内容の編集を行うか、現在動作している設定の状態を維持するために、未適用の変"
"更を取り消すこともできます。"
@@ -6292,12 +6359,13 @@ msgstr "インターフェース名が長すぎます"
msgid ""
"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
"addresses."
-msgstr "IPv4 プレフィクスの長さ(bit)です。残りは IPv6 アドレスで使用されます。"
+msgstr ""
+"IPv4 プレフィックスの長さ(bit)です。残りは IPv6 アドレスで使用されます。"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
msgid "The length of the IPv6 prefix in bits"
-msgstr "IPv6 プレフィクスの長さ(bit)"
+msgstr "IPv6 プレフィックスの長さ(bit)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
msgid "The local IPv4 address"
@@ -6315,12 +6383,12 @@ msgid "The local IPv4 netmask"
msgstr "ローカル IPv4 ネットマスク"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "ネットワーク名は既に使用されています"
@@ -6397,7 +6465,8 @@ msgid ""
"listed below. Press \"Continue\" to restore the backup and reboot, or "
"\"Cancel\" to abort the operation."
msgstr ""
-"アップロードされたバックアップアーカイブは有効であり、以下のファイルを含んでいます。\"続行\"をクリックするとバックアップ復元後に再起動します。"
+"アップロードされたバックアップアーカイブは有効であり、以下のファイルを含んで"
+"います。\"続行\"をクリックするとバックアップ復元後に再起動します。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
msgid "The uploaded backup archive is not readable"
@@ -6418,8 +6487,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "アクティブなリースはありません"
@@ -6458,7 +6527,7 @@ msgid ""
"Name System\">DNS</abbr> servers."
msgstr ""
"このファイルは、特定ドメインまたは全ドメインに対する上位 <abbr title="
-"\"Domain Name System\">DNS</abbr> サーバーを指定するための、 'server=/"
+"\"Domain Name System\">DNS</abbr> サーバーを指定するための、'server=/"
"domain/1.2.3.4' や 'server=1.2.3.4' といった行を含むことができます。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
@@ -6468,8 +6537,9 @@ msgid ""
"include during sysupgrade. Modified files in /etc/config/ and certain other "
"configurations are automatically preserved."
msgstr ""
-"以下は、sysupgrade中にバックアップ対象に含めるファイルとディレクトリのパターンリストです。/etc/config/ "
-"内の設定ファイル及びその他特定の設定ファイルは自動的に保持されます。"
+"以下は、sysupgrade中にバックアップ対象に含めるファイルとディレクトリのパター"
+"ンリストです。/etc/config/ 内の設定ファイル及びその他特定の設定ファイルは自動"
+"的に保持されます。"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
msgid ""
@@ -6482,8 +6552,8 @@ msgid ""
"This is the content of /etc/rc.local. Insert your own commands here (in "
"front of 'exit 0') to execute them at the end of the boot process."
msgstr ""
-"/etc/rc.local を表示しています。実行したいコマンドを'exit "
-"0'行より上に入力してください。これらのコマンドはブートプロセスの最後に実行されます。"
+"/etc/rc.local を表示しています。実行したいコマンドを'exit 0'行より上に入力し"
+"てください。これらのコマンドはブートプロセスの最後に実行されます。"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
msgid ""
@@ -6552,6 +6622,10 @@ msgstr "時刻設定"
msgid "Time interval for rekeying GTK"
msgstr "Group Temporal Key(GTK)再生成間隔"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "タイムアウト"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "タイムゾーン"
@@ -6566,8 +6640,9 @@ msgid ""
"archive here. To reset the firmware to its initial state, click \"Perform "
"reset\" (only possible with squashfs images)."
msgstr ""
-"設定を復元するには、バックアップアーカイブをアップロードしてください。設定のリセットを行う場合、\"初期化実行\"をクリックしてください"
-"(squashfsイメージを使用している場合のみ使用可能)。"
+"設定を復元するには、バックアップアーカイブをアップロードしてください。設定の"
+"リセットを行う場合、\"初期化実行\"をクリックしてください(squashfsイメージを"
+"使用している場合のみ使用可能)。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
msgid "Tone"
@@ -6589,10 +6664,10 @@ msgstr "Traceroute"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
-msgstr ""
+msgstr "トラフィッククラス"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
msgid "Transfer"
@@ -6634,7 +6709,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "タイプ"
@@ -6731,6 +6806,7 @@ msgstr "予期しない応答データ形式"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "不明"
@@ -6972,13 +7048,15 @@ msgstr "ゲートウェイ メトリックを使用する"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96
msgid "Use legacy MAP"
-msgstr ""
+msgstr "従来のMAPを使用"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:96
msgid ""
"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
"instead of RFC7597"
msgstr ""
+"RFC7597の代わりにレガシーMAPインターフェース識別子フォーマット(draft-ietf-"
+"softwire-map-00)を使用"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
msgid "Use routing table"
@@ -7030,11 +7108,12 @@ msgid ""
"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
"needed with normal WPA(2)-PSK."
msgstr ""
-"2つの異なる目的のために使用されています: RADIUS NAS IDと802.11r R0KH-ID。通常のWPA(2)-PSKは必要ありません。"
+"2つの異なる目的のために使用されています: RADIUS NAS IDと802.11r R0KH-ID。通常"
+"のWPA(2)-PSKは必要ありません。"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
msgid "User Group"
-msgstr "ユーザー・グループ"
+msgstr "ユーザーグループ"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
msgid "User certificate (PEM encoded)"
@@ -7080,17 +7159,17 @@ msgstr "VPN ローカルポート"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
msgid "VPN Server"
-msgstr "VPN サーバー"
+msgstr "VPNサーバー"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:99
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
msgid "VPN Server port"
-msgstr "VPN サーバーポート"
+msgstr "VPNサーバーポート"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
msgid "VPN Server's certificate SHA1 hash"
-msgstr "VPN サーバー証明書 SHA1ハッシュ"
+msgstr "VPNサーバー証明書 SHA1ハッシュ"
#: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
@@ -7116,8 +7195,8 @@ msgid ""
"Validate server certificate using built-in system CA bundle,<br />requires "
"the \"ca-bundle\" package"
msgstr ""
-"サーバー証明書をビルトインのシステム CA バンドルを用いて検証します。<br />"
-"\"ca-bundle\" パッケージが必要です。"
+"サーバー証明書をビルトインシステムのCAバンドルを用いて検証します。<br />\"ca-"
+"bundle\" パッケージが必要"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
msgid "Validation for all slaves"
@@ -7166,7 +7245,7 @@ msgstr "WEP オープンシステム"
msgid "WEP Shared Key"
msgstr "WEP 共有キー"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP 暗号フレーズ"
@@ -7174,7 +7253,7 @@ msgstr "WEP 暗号フレーズ"
msgid "WMM Mode"
msgstr "WMM モード"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA 暗号フレーズ"
@@ -7184,7 +7263,12 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
"WPA暗号化を使用する場合、wpa_supplicant(クライアントモードの場合)又は "
-"hostapd(アクセスポイント及びアドホック)がインストールされている必要があります。"
+"hostapd(アクセスポイント及びアドホック)がインストールされている必要がありま"
+"す。"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr "WPSステータス"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
@@ -7224,7 +7308,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "無線"
@@ -7255,15 +7339,15 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "無線LAN機能は無効になっています"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
-msgstr "無線LAN機能がアソシエーションされていません"
+msgstr "ワイヤレス端末は接続されていません"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
msgid "Wireless network is disabled"
@@ -7310,8 +7394,9 @@ msgid ""
"after a device reboot.<br /><strong>Warning: If you disable essential init "
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-"ルーターが起動する際のサービスの有効化/無効化を行うことができます。また、変更は再起動後に適用されます。<br /><strong>警告: "
-"\"network\" のような重要なサービスを無効にするとルーターにアクセスできなくなります!</strong>"
+"ルーターが起動する際のサービスの有効化/無効化を行うことができます。また、変更"
+"は再起動後に適用されます。<br /><strong>警告: \"network\" のような重要なサー"
+"ビスを無効にするとルーターにアクセスできなくなります!</strong>"
#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
@@ -7325,12 +7410,16 @@ msgstr "JavaScriptが有効でない場合、LuCIは正しく動作しません
msgid ""
"You must select a primary interface which is included in selected slave "
"interfaces!"
-msgstr "選択されているスレーブインターフェースに含まれているプライマリインターフェースを選択する必要があります!"
+msgstr ""
+"選択されているスレーブインターフェースに含まれているプライマリインターフェー"
+"スを選択する必要があります!"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
msgid ""
"You must select at least one ARP IP target if ARP monitoring is selected!"
-msgstr "ARP モニタリングが選択されている場合は、少なくとも 1 つの ARP IP ターゲットを選択する必要があります!"
+msgstr ""
+"ARP モニタリングが選択されている場合は、少なくとも 1 つの ARP IP ターゲットを"
+"選択する必要があります!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
msgid "ZRam Compression Algorithm"
@@ -7350,7 +7439,7 @@ msgstr "ZRam サイズ"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
msgid "any"
-msgstr "全て"
+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
@@ -7376,7 +7465,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7398,11 +7487,11 @@ msgstr "作成:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7449,8 +7538,8 @@ msgstr "例: dump"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "期限切れ"
@@ -7602,7 +7691,7 @@ msgstr "秒"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:627
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
msgid "server mode"
-msgstr "サーバー モード"
+msgstr "サーバーモード"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53
msgid "sstpc Log-level"
@@ -7643,8 +7732,8 @@ msgstr "不明"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "無制限"
@@ -7653,9 +7742,9 @@ msgstr "無制限"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -7677,7 +7766,7 @@ msgstr "有効な IP アドレス"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
msgid "valid IP address or prefix"
-msgstr "有効な IP アドレスまたはプレフィクス"
+msgstr "有効な IP アドレスまたはプレフィックス"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:281
msgid "valid IPv4 CIDR"
@@ -7706,7 +7795,7 @@ msgstr "有効な IPv4 または IPv6 CIDR"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
msgid "valid IPv4 prefix value (0-32)"
-msgstr "有効な IPv4 プレフィクス値(0 - 32)"
+msgstr "有効な IPv4 プレフィックス値(0 - 32)"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:286
msgid "valid IPv6 CIDR"
@@ -7719,7 +7808,7 @@ msgstr "有効な IPv6 アドレス"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
msgid "valid IPv6 address or prefix"
-msgstr "有効な IPv6 アドレスまたはプレフィクス"
+msgstr "有効な IPv6 アドレスまたはプレフィックス"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:304
msgid "valid IPv6 host id"
@@ -7731,7 +7820,7 @@ msgstr "有効な IPv6 ネットワーク"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
msgid "valid IPv6 prefix value (0-128)"
-msgstr "有効な IPv6 プレフィクス値(0 - 128)"
+msgstr "有効な IPv6 プレフィックス値(0 - 128)"
#: modules/luci-base/htdocs/luci-static/resources/validation.js:340
msgid "valid MAC address"
@@ -7849,6 +7938,9 @@ msgstr "はい"
msgid "« Back"
msgstr "« 戻る"
+#~ msgid "Invalid value"
+#~ msgstr "不正な値"
+
#~ msgid "Enable/Disable"
#~ msgstr "有効 / 無効"
diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po
index 53cdeee89d..00aa4ea94c 100644
--- a/modules/luci-base/po/ko/base.po
+++ b/modules/luci-base/po/ko/base.po
@@ -365,8 +365,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C 시스템 벤더 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -383,6 +383,10 @@ msgstr "액세스 포인트 (AP)"
msgid "Actions"
msgstr "관리 도구"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -398,12 +402,12 @@ msgid "Active Connections"
msgstr "활성 연결 수"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Active DHCP 임대 목록"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Active DHCPv6 임대 목록"
@@ -483,6 +487,14 @@ msgstr "새로운 인터페이스 추가..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "추가적인 Hosts 파일들"
@@ -784,12 +796,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "연결된 station 들"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -896,7 +908,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -948,10 +960,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -959,10 +971,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -972,7 +984,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1043,7 +1055,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1121,7 +1133,7 @@ msgstr "장비 접근을 위한 관리자 암호를 변경합니다"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1129,7 +1141,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1147,7 +1159,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1222,7 +1234,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1254,10 +1266,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1345,7 +1357,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Firewall-zone 생성 / 할당"
@@ -1370,8 +1382,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1495,7 +1507,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1685,6 +1697,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1706,7 +1719,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1752,10 +1766,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1795,8 +1809,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1996,8 +2010,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2044,7 +2065,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "암호화"
@@ -2378,7 +2399,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2615,9 +2636,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "호스트"
@@ -2641,7 +2662,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "호스트이름"
@@ -2761,7 +2782,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-주소"
@@ -2865,7 +2886,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-주소"
@@ -3003,24 +3024,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3065,7 +3086,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3162,6 +3183,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3192,13 +3223,6 @@ msgstr ""
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 ""
@@ -3224,7 +3248,7 @@ msgstr "네트워크 연결"
msgid "Join Network: Wireless Scan"
msgstr "네트워크 연결: 무선랜 스캔 결과"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "네트워크 연결중: %q"
@@ -3253,18 +3277,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3338,8 +3362,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "남아있는 임대 시간"
@@ -3506,7 +3530,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3554,7 +3578,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3570,15 +3594,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3608,10 +3632,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3650,7 +3674,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3730,8 +3754,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3807,7 +3831,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3929,6 +3953,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3966,7 +3997,7 @@ msgstr "NTP 서버 목록"
msgid "Name"
msgstr "이름"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3977,15 +4008,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "네트워크 유틸리티"
@@ -4003,8 +4038,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4031,6 +4066,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4063,16 +4102,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "이용 가능한 정보가 없습니다"
@@ -4128,8 +4167,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "노이즈"
@@ -4390,24 +4429,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4420,6 +4459,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4431,10 +4474,10 @@ msgstr "MAC 주소 덮어쓰기"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4452,18 +4495,18 @@ msgstr "MAC 주소 덮어쓰기"
msgid "Override MTU"
msgstr "MTU 덮어쓰기"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4709,10 +4752,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4894,7 +4937,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4929,11 +4972,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5069,7 +5112,7 @@ msgstr ""
msgid "Remove"
msgstr "제거"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5085,17 +5128,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5342,7 +5385,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5372,7 +5415,7 @@ msgstr "SSH-Keys"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5493,6 +5536,11 @@ msgstr "서비스"
msgid "Session expired"
msgstr "세션 만료됨"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "VPN 을 기본 라우트로 설정"
@@ -5540,7 +5588,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5565,14 +5613,14 @@ msgstr "이 인터페이스 정지"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "신호"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5650,8 +5698,8 @@ msgstr "소스"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "소스 인터페이스"
@@ -5812,18 +5860,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5837,18 +5891,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5862,7 +5916,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5871,6 +5925,10 @@ msgstr ""
msgid "Start"
msgstr "시작"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "시작 우선순위"
@@ -5900,6 +5958,11 @@ msgstr "정적 IPv4 라우트"
msgid "Static IPv6 Routes"
msgstr "정적 IPv6 라우트"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "정적 임대"
@@ -5940,6 +6003,10 @@ msgstr "상태"
msgid "Stop"
msgstr "정지"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5954,7 +6021,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "제출하기"
@@ -6054,7 +6121,7 @@ msgstr "TFTP 서버 root"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6116,7 +6183,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6128,6 +6195,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "다음과 같은 오류 때문에 구성 파일을 불러오지 못했습니다:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6219,12 +6292,12 @@ msgid "The local IPv4 netmask"
msgstr "로컬 IPv4 넷마스크"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6311,8 +6384,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6434,6 +6507,10 @@ msgstr "시간 동기화"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "시간대"
@@ -6472,8 +6549,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6517,7 +6594,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "유형"
@@ -6614,6 +6691,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "알수없음"
@@ -7041,7 +7119,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -7049,7 +7127,7 @@ msgstr ""
msgid "WMM Mode"
msgstr "WMM Mode"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -7059,6 +7137,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7094,7 +7176,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "무선"
@@ -7125,13 +7207,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "무선이 연결되어 있지 않습니다"
@@ -7246,7 +7328,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7268,11 +7350,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7319,8 +7401,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "만료됨"
@@ -7513,8 +7595,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7523,9 +7605,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po
index f01599419d..d7a0bcc34c 100644
--- a/modules/luci-base/po/mr/base.po
+++ b/modules/luci-base/po/mr/base.po
@@ -348,8 +348,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -366,6 +366,10 @@ msgstr ""
msgid "Actions"
msgstr "क्रिया"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -379,12 +383,12 @@ msgid "Active Connections"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -464,6 +468,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -763,12 +775,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -875,7 +887,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr ""
@@ -924,10 +936,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -935,10 +947,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -948,7 +960,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1019,7 +1031,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1097,7 +1109,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1105,7 +1117,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1123,7 +1135,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1190,7 +1202,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1222,10 +1234,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1313,7 +1325,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1338,8 +1350,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1461,7 +1473,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1646,6 +1658,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1667,7 +1680,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1710,10 +1724,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1753,8 +1767,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1950,8 +1964,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -1998,7 +2019,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2332,7 +2353,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2568,9 +2589,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2594,7 +2615,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "होस्टनाव"
@@ -2714,7 +2735,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2818,7 +2839,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2956,24 +2977,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3018,7 +3039,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3115,6 +3136,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3145,13 +3176,6 @@ msgstr ""
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 ""
@@ -3177,7 +3201,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3206,18 +3230,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3291,8 +3315,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3457,7 +3481,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3505,7 +3529,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3521,15 +3545,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3559,10 +3583,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3601,7 +3625,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3681,8 +3705,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3758,7 +3782,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "मोड"
@@ -3880,6 +3904,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3917,7 +3948,7 @@ msgstr ""
msgid "Name"
msgstr "नाव"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3928,15 +3959,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3954,8 +3989,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -3982,6 +4017,10 @@ msgstr "नाही"
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4014,16 +4053,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4079,8 +4118,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4341,24 +4380,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4371,6 +4410,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4382,10 +4425,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4403,18 +4446,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4658,10 +4701,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4843,7 +4886,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4878,11 +4921,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5016,7 +5059,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5032,17 +5075,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5286,7 +5329,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5315,7 +5358,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5433,6 +5476,11 @@ msgstr "सेवा"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5480,7 +5528,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5505,14 +5553,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5590,8 +5638,8 @@ msgstr "स्रोत"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5752,18 +5800,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5777,18 +5831,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5802,7 +5856,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5811,6 +5865,10 @@ msgstr ""
msgid "Start"
msgstr "प्रारंभ करा"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5840,6 +5898,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5877,6 +5940,10 @@ msgstr "स्थिती"
msgid "Stop"
msgstr "थांबा"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5891,7 +5958,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -5989,7 +6056,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6051,7 +6118,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6061,6 +6128,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6146,12 +6219,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6233,8 +6306,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6348,6 +6421,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6383,8 +6460,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6428,7 +6505,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "प्रकार"
@@ -6525,6 +6602,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "अज्ञात"
@@ -6947,7 +7025,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6955,7 +7033,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6965,6 +7043,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7000,7 +7082,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7031,13 +7113,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7148,7 +7230,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7170,11 +7252,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7221,8 +7303,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7413,8 +7495,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7423,9 +7505,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po
index 993e095902..79b3299056 100644
--- a/modules/luci-base/po/ms/base.po
+++ b/modules/luci-base/po/ms/base.po
@@ -352,8 +352,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -370,6 +370,10 @@ msgstr "Pusat akses"
msgid "Actions"
msgstr "Aksi"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Aktive IPv4-Routen"
@@ -383,12 +387,12 @@ msgid "Active Connections"
msgstr "Sambungan Aktif"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -468,6 +472,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -767,12 +779,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Associated Stesen"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -879,7 +891,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -928,10 +940,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -939,10 +951,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -952,7 +964,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1023,7 +1035,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1101,7 +1113,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Saluran"
@@ -1109,7 +1121,7 @@ msgstr "Saluran"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1127,7 +1139,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1194,7 +1206,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1226,10 +1238,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1317,7 +1329,7 @@ msgid "Country Code"
msgstr "Kod negara"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Buat / Menetapkan dinding api-zon"
@@ -1342,8 +1354,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1465,7 +1477,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1650,6 +1662,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1671,7 +1684,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1719,10 +1733,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1762,8 +1776,8 @@ msgstr "Domain diperlukan"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1960,8 +1974,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2008,7 +2029,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Enkripsi"
@@ -2342,7 +2363,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2580,9 +2601,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2606,7 +2627,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nama Host"
@@ -2726,7 +2747,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2830,7 +2851,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2973,24 +2994,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3035,7 +3056,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3132,6 +3153,16 @@ msgstr "Tak Sah"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3162,13 +3193,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Username dan / atau password tak sah! Sila cuba lagi."
-#: 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 ""
@@ -3198,7 +3222,7 @@ msgstr "Gabung Rangkaian"
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3227,18 +3251,18 @@ msgstr "Kunci"
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3312,8 +3336,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Sisa masa penyewaan"
@@ -3478,7 +3502,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3526,7 +3550,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Soalan tempatan"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3542,15 +3566,15 @@ msgstr "Log soalan"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3580,10 +3604,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3622,7 +3646,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3702,8 +3726,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3779,7 +3803,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mode"
@@ -3903,6 +3927,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -3940,7 +3971,7 @@ msgstr ""
msgid "Name"
msgstr "Nama"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nama rangkaian baru"
@@ -3951,15 +3982,19 @@ msgstr "Navigation"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Rangkaian"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3977,8 +4012,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4005,6 +4040,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4037,16 +4076,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4102,8 +4141,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Kebisingan"
@@ -4364,24 +4403,24 @@ msgstr "Keluar"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4394,6 +4433,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4405,10 +4448,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4426,18 +4469,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4681,10 +4724,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4866,7 +4909,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4902,11 +4945,11 @@ msgstr "RTS/CTS-Ambang"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5040,7 +5083,7 @@ msgstr ""
msgid "Remove"
msgstr "Menghapuskan"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5056,17 +5099,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5312,7 +5355,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5341,7 +5384,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5459,6 +5502,11 @@ msgstr "Perkhidmatan"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5506,7 +5554,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5531,14 +5579,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Isyarat"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5616,8 +5664,8 @@ msgstr "Sumber"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5778,18 +5826,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5803,18 +5857,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5828,7 +5882,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5837,6 +5891,10 @@ msgstr ""
msgid "Start"
msgstr "Mula"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5866,6 +5924,11 @@ msgstr "Laluan IPv4 Statik"
msgid "Static IPv6 Routes"
msgstr "Laluan IPv6 Statik"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Statische Einträge"
@@ -5903,6 +5966,10 @@ msgstr "Status"
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5917,7 +5984,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Menyerahkan"
@@ -6016,7 +6083,7 @@ msgstr ""
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6078,7 +6145,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6090,6 +6157,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6175,12 +6248,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6269,8 +6342,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6388,6 +6461,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Zon masa"
@@ -6423,8 +6500,8 @@ msgstr ""
msgid "Traffic"
msgstr "Lalu lintas"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6468,7 +6545,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Jenis"
@@ -6565,6 +6642,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6987,7 +7065,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6995,7 +7073,7 @@ msgstr ""
msgid "WMM Mode"
msgstr "WMM Mod"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -7007,6 +7085,10 @@ msgstr ""
"WPA-Enkripsi memerlukan pemohan wpa (untuk mod pelanggan) atau hostapd "
"(untuk AP dan mod ad-hoc) yang akan dipasangkan."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7042,7 +7124,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7073,13 +7155,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7190,7 +7272,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7212,11 +7294,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7263,8 +7345,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7455,8 +7537,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7465,9 +7547,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po
index 5038e89f6a..6461b06e6e 100644
--- a/modules/luci-base/po/nb_NO/base.po
+++ b/modules/luci-base/po/nb_NO/base.po
@@ -363,8 +363,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -381,6 +381,10 @@ msgstr "Aksesspunkt"
msgid "Actions"
msgstr "Handlinger"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Aktive <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Ruter"
@@ -394,12 +398,12 @@ msgid "Active Connections"
msgstr "Aktive Tilkoblinger"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktive DHCP Leier"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktive DHCPv6 Leier"
@@ -479,6 +483,14 @@ msgstr "Legg til grensesnitt..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Tilleggs vertsfiler"
@@ -778,12 +790,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Tilkoblede Klienter"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -890,7 +902,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -942,10 +954,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -953,10 +965,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -966,7 +978,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitrate"
@@ -1037,7 +1049,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1115,7 +1127,7 @@ msgstr "Endrer administrator passordet for tilgang til enheten"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanal"
@@ -1123,7 +1135,7 @@ msgstr "Kanal"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1141,7 +1153,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1218,7 +1230,7 @@ msgstr "Lukk liste..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1250,10 +1262,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1341,7 +1353,7 @@ msgid "Country Code"
msgstr "Landskode"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Opprett/Tildel brannmur sone"
@@ -1366,8 +1378,8 @@ msgstr "Cron logg nivå"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1491,7 +1503,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1680,6 +1692,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1701,7 +1714,8 @@ msgstr "Forkast oppstrøms RFC1918 svar"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1748,10 +1762,10 @@ msgstr ""
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr "Ikke cache negative svar, f.eks for ikke eksisterende domener"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1793,8 +1807,8 @@ msgstr "Domene kreves"
msgid "Domain whitelist"
msgstr "Domene hviteliste"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1997,8 +2011,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2045,7 +2066,7 @@ msgstr "Innkapsling modus"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Kryptering"
@@ -2381,7 +2402,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2619,9 +2640,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2646,7 +2667,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Vertsnavn"
@@ -2766,7 +2787,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-Adresse"
@@ -2870,7 +2891,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-Adresse"
@@ -3012,24 +3033,24 @@ msgstr "Tidsavbrudd etter innaktivitet"
msgid "Inbound:"
msgstr "Innkommende:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3074,7 +3095,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Installer protokoll utvidelser..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3171,6 +3192,16 @@ msgstr "Ugyldig"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "Ugyldig VLAN ID gitt! Bare IDer mellom %d og %d er tillatt."
@@ -3201,13 +3232,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen."
-#: 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 ""
@@ -3236,7 +3260,7 @@ msgstr "Koble til nettverket"
msgid "Join Network: Wireless Scan"
msgstr "Koble til nettverk: Trådløs Skanning"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3265,18 +3289,18 @@ msgstr "Nøkkel"
msgid "Key #%d"
msgstr "Nøkkel #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3350,8 +3374,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3519,7 +3543,7 @@ msgid "Local IPv4 address"
msgstr "Lokal IPv4 adresse"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3572,7 +3596,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lokalisere søk"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3588,15 +3612,15 @@ msgstr "Logg spørringer"
msgid "Logging"
msgstr "Logging"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3626,10 +3650,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3668,7 +3692,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3748,8 +3772,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3825,7 +3849,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Modus"
@@ -3949,6 +3973,13 @@ msgstr "Flytt ned"
msgid "Move up"
msgstr "Flytt opp"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -3986,7 +4017,7 @@ msgstr "NTP server kandidater"
msgid "Name"
msgstr "Navn"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Navnet til det nye nettverket"
@@ -3997,15 +4028,19 @@ msgstr "Navigasjon"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Nettverk"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Nettverks Verktøy"
@@ -4023,8 +4058,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4051,6 +4086,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr "Ingen DHCP server er konfigurert for dette grensesnittet"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4083,16 +4122,16 @@ msgstr ""
msgid "No files found"
msgstr "Ingen filer funnet"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Ingen informasjon tilgjengelig"
@@ -4148,8 +4187,8 @@ msgstr "Ingen sone tilknyttet"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Støy"
@@ -4410,24 +4449,24 @@ msgstr "Ut"
msgid "Outbound:"
msgstr "Ugående:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4440,6 +4479,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4451,10 +4494,10 @@ msgstr "Overstyr MAC adresse"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4472,18 +4515,18 @@ msgstr "Overstyr MAC adresse"
msgid "Override MTU"
msgstr "Overstyr MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4729,10 +4772,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4916,7 +4959,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "Kvalitet"
@@ -4951,11 +4994,11 @@ msgstr "RTS/CTS Terskel"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "RX Rate"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5091,7 +5134,7 @@ msgstr ""
msgid "Remove"
msgstr "Avinstaller"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Erstatt trådløs konfigurasjon"
@@ -5107,17 +5150,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5363,7 +5406,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5392,7 +5435,7 @@ msgstr "SSH-Nøkler"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5512,6 +5555,11 @@ msgstr "Tjenester"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5559,7 +5607,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5584,14 +5632,14 @@ msgstr "Slå av dette grensesnittet"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5672,8 +5720,8 @@ msgstr "Kilde"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5835,18 +5883,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5860,18 +5914,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5885,7 +5939,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Angi krypteringsnøkkelen her."
@@ -5894,6 +5948,10 @@ msgstr "Angi krypteringsnøkkelen her."
msgid "Start"
msgstr "Start"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Start prioritet"
@@ -5923,6 +5981,11 @@ msgstr "Statiske IPv4 Ruter"
msgid "Static IPv6 Routes"
msgstr "Statiske IPv6 Ruter"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Statiske Leier"
@@ -5963,6 +6026,10 @@ msgstr "Status"
msgid "Stop"
msgstr "Stop"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5977,7 +6044,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Send"
@@ -6075,7 +6142,7 @@ msgstr "TFTP server roten"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "TX rate"
@@ -6138,7 +6205,7 @@ msgid ""
msgstr ""
"IPv6 prefikset tilordnet mot leverandør, ender som regel med <code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6150,6 +6217,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6237,12 +6310,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6338,8 +6411,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6465,6 +6538,10 @@ msgstr "Tidssynkronisering"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Tidssone"
@@ -6504,8 +6581,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Trafikk"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6549,7 +6626,7 @@ msgid "Tx-Power"
msgstr "Tx-Styrke"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Type"
@@ -6646,6 +6723,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Ukjent"
@@ -7075,7 +7153,7 @@ msgstr "WEP åpent system"
msgid "WEP Shared Key"
msgstr "WEP delt nøkkel"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP passord"
@@ -7083,7 +7161,7 @@ msgstr "WEP passord"
msgid "WMM Mode"
msgstr "WMM Modus"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA passord"
@@ -7095,6 +7173,10 @@ msgstr ""
"WPA-Kryptering krever at wpa_supplicant (for klient-modus) eller hostapd "
"(for AP og ad-hoc-modus) er installert."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7130,7 +7212,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Trådløs"
@@ -7161,13 +7243,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Trådløs er deaktiver"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Trådløs er ikke tilknyttet"
@@ -7284,7 +7366,7 @@ msgid "bridged"
msgstr "brokoblet"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7306,11 +7388,11 @@ msgstr "opprett:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7357,8 +7439,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "utgått"
@@ -7551,8 +7633,8 @@ msgstr "ukjent"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "ubegrenset"
@@ -7561,9 +7643,9 @@ msgstr "ubegrenset"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po
index 1c8bad9e81..c68e6a2bfe 100644
--- a/modules/luci-base/po/nl/base.po
+++ b/modules/luci-base/po/nl/base.po
@@ -1,13 +1,13 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2020-09-27 12:38+0000\n"
-"Last-Translator: G. Allen Morris III <gamthree@gmail.com>\n"
+"PO-Revision-Date: 2020-10-31 10:05+0000\n"
+"Last-Translator: Sepp Jeremiah Morris <Seppdroidgaming@gmx.us>\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"
+"X-Generator: Weblate 4.3.2-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -364,8 +364,8 @@ 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Geen interface"
@@ -382,6 +382,10 @@ msgstr "Toegangspunt"
msgid "Actions"
msgstr "Acties"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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"
@@ -395,12 +399,12 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Actieve DHCPv6 toewijzingen"
@@ -481,6 +485,14 @@ msgstr "Nieuwe interface toevoegen..."
msgid "Add peer"
msgstr "Peer toevoegen"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Aanvullende Hostsbestanden"
@@ -649,7 +661,7 @@ 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 ""
+msgstr "Altijd aan (kernel: altijd-aan)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
msgid ""
@@ -659,7 +671,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:603
msgid "An error occurred while saving the form:"
-msgstr ""
+msgstr "Er is een fout opgetreden bij het opslaan van het formulier:"
#: 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
@@ -728,23 +740,23 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:659
msgid "Announced DNS domains"
-msgstr ""
+msgstr "Aangekondigde DNS domeinen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:658
msgid "Announced DNS servers"
-msgstr ""
+msgstr "Aangekondigde DNS servers"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1596
msgid "Anonymous Identity"
-msgstr ""
+msgstr "Anonieme identiteit"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
msgid "Anonymous Mount"
-msgstr ""
+msgstr "Anoniem Monteren"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
msgid "Anonymous Swap"
-msgstr ""
+msgstr "Anoniem Verwisselen"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
@@ -755,11 +767,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
msgid "Apply backup?"
-msgstr ""
+msgstr "Backup toepassen?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
msgid "Apply request failed with status <code>%h</code>"
-msgstr ""
+msgstr "Aanvraag is mislukt met status <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4142
@@ -772,7 +784,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
msgid "Architecture"
-msgstr ""
+msgstr "Architectuur"
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
@@ -786,14 +798,14 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
-msgstr ""
+msgstr "Associaties"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
msgid "Attempt to enable configured mount points for attached devices"
@@ -802,11 +814,11 @@ 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 ""
+msgstr "Auth Groep"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1535
msgid "Authentication"
-msgstr ""
+msgstr "Authenticatie"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70
@@ -815,18 +827,18 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
msgid "Authoritative"
-msgstr ""
+msgstr "Autoritatieve"
#: modules/luci-base/luasrc/view/sysauth.htm:17
msgid "Authorization Required"
-msgstr ""
+msgstr "Autorisatie Vereist"
#: 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 ""
+msgstr "Automatisch Vernieuwen"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
@@ -838,7 +850,7 @@ msgstr ""
#: 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 ""
+msgstr "Automatisch"
#: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
@@ -867,7 +879,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
msgid "Available"
-msgstr ""
+msgstr "Beschikbaar"
#: 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
@@ -881,7 +893,7 @@ msgstr ""
#: 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 ""
+msgstr "Gemiddelde:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
msgid "B43 + B43C"
@@ -898,26 +910,26 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
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 ""
+msgstr "Terug naar het overzicht"
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
msgid "Back to configuration"
-msgstr ""
+msgstr "Terug naar de configuratie"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:363
msgid "Backup"
-msgstr ""
+msgstr "Backup"
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
msgid "Backup / Flash Firmware"
-msgstr ""
+msgstr "Backup / Flash Firmware"
#: 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
@@ -947,10 +959,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -958,10 +970,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -971,9 +983,9 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
-msgstr ""
+msgstr "Bitrate"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
msgid "Bogus NX Domain Override"
@@ -1024,11 +1036,11 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
msgid "CPU usage (%)"
-msgstr ""
+msgstr "CPU gebruik (%)"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
msgid "Cached"
-msgstr ""
+msgstr "Cached"
#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
@@ -1042,16 +1054,16 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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 ""
+msgstr "Annuleren"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
msgid "Category"
-msgstr ""
+msgstr "Categorie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
msgid "Certificate constraint (Domain)"
@@ -1105,11 +1117,11 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
msgid "Changes"
-msgstr ""
+msgstr "Veranderingen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4311
msgid "Changes have been reverted."
-msgstr ""
+msgstr "Wijzigingen zijn teruggedraaid."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
msgid "Changes the administrator password for accessing the device"
@@ -1120,15 +1132,15 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
-msgstr ""
+msgstr "Kanaal"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1146,7 +1158,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1194,7 +1206,7 @@ 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 ""
+msgstr "Sluiten"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:157
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:141
@@ -1213,7 +1225,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1245,30 +1257,30 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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 ""
+msgstr "Configuratie"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4190
msgid "Configuration changes applied."
-msgstr ""
+msgstr "Configuratiewijzigingen toegepast."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4128
msgid "Configuration changes have been rolled back!"
-msgstr ""
+msgstr "Configuratiewijzigingen zijn teruggedraaid!"
#: 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 ""
+msgstr "Configuratie mislukt"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:175
msgid "Confirm disconnect"
@@ -1281,7 +1293,7 @@ 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 ""
+msgstr "Verbonden"
#: modules/luci-base/htdocs/luci-static/resources/network.js:9
#: modules/luci-compat/luasrc/model/network.lua:27
@@ -1318,7 +1330,7 @@ msgstr ""
#: 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 ""
+msgstr "Doorgaan"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4164
msgid ""
@@ -1329,14 +1341,14 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
msgid "Country"
-msgstr ""
+msgstr "Land"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1361,8 +1373,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1396,7 +1408,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358
msgid "DAE-Port"
-msgstr ""
+msgstr "DAE-Poort"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1363
msgid "DAE-Secret"
@@ -1484,7 +1496,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr ""
@@ -1542,12 +1554,12 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
msgid "Delete"
-msgstr ""
+msgstr "Verwijderen"
#: 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 ""
+msgstr "Verwijder toets"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2769
msgid "Delete request failed: %s"
@@ -1564,7 +1576,7 @@ 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 ""
+msgstr "Omschrijving"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2868
msgid "Deselect"
@@ -1669,6 +1681,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1690,7 +1703,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1733,10 +1747,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1776,8 +1790,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1973,8 +1987,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2021,7 +2042,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2355,7 +2376,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr ""
@@ -2591,9 +2612,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2617,7 +2638,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2737,7 +2758,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2841,7 +2862,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2979,24 +3000,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3041,7 +3062,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3138,6 +3159,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3168,13 +3199,6 @@ msgstr ""
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 ""
@@ -3200,7 +3224,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3229,18 +3253,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3314,8 +3338,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3480,7 +3504,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3528,7 +3552,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3544,15 +3568,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3582,10 +3606,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3624,7 +3648,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr ""
@@ -3704,8 +3728,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3781,7 +3805,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3903,6 +3927,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3940,7 +3971,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3951,15 +3982,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3977,8 +4012,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4005,6 +4040,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4037,16 +4076,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4102,8 +4141,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4364,24 +4403,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4394,6 +4433,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4405,10 +4448,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4426,18 +4469,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4681,10 +4724,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4866,7 +4909,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4901,11 +4944,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5039,7 +5082,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5055,17 +5098,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5309,7 +5352,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5338,7 +5381,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr ""
@@ -5456,6 +5499,11 @@ msgstr ""
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5503,7 +5551,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5528,14 +5576,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5613,8 +5661,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5775,18 +5823,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5800,18 +5854,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5825,7 +5879,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5834,6 +5888,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5863,6 +5921,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5900,6 +5963,10 @@ msgstr ""
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5914,7 +5981,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -6012,7 +6079,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6074,7 +6141,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6084,6 +6151,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6169,12 +6242,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6256,8 +6329,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6371,6 +6444,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6406,8 +6483,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6451,7 +6528,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6548,6 +6625,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6970,7 +7048,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6978,7 +7056,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6988,6 +7066,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7023,7 +7105,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7054,13 +7136,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7171,7 +7253,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7193,11 +7275,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7244,8 +7326,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7436,8 +7518,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7446,9 +7528,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po
index 03e8204a92..7713630c62 100644
--- a/modules/luci-base/po/pl/base.po
+++ b/modules/luci-base/po/pl/base.po
@@ -3,8 +3,8 @@ 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-10-05 18:26+0000\n"
-"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
+"PO-Revision-Date: 2020-11-09 12:30+0000\n"
+"Last-Translator: Wojtek Sobczak <mister.adalbert@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>"
"\n"
"Language: pl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.3.2\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -368,8 +368,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ID dostawcy systemu ATU-C"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Nieaktywny interfejs"
@@ -387,6 +387,10 @@ msgstr "Punkt dostępowy"
msgid "Actions"
msgstr "Akcje"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Aktywny"
+
#: 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 "Aktywne trasy <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
@@ -400,12 +404,12 @@ msgid "Active Connections"
msgstr "Aktywne połączenia"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktywne dzierżawy DHCP"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktywne dzierżawy DHCPv6"
@@ -485,6 +489,14 @@ msgstr "Dodaj nowy interfejs..."
msgid "Add peer"
msgstr "Dodaj peera"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "Dodaj do czarnej listy"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "Dodaj do białej listy"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Dodatkowe pliki hosts"
@@ -803,12 +815,12 @@ msgstr ""
"Przypisz cześć prefiksu za pomocą szesnastkowego ID subprefiksu dla tego "
"interfejsu."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Połączone Urządzenia"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Połączeni"
@@ -917,7 +929,7 @@ msgstr "BR/DMR/AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -971,10 +983,10 @@ msgstr ""
"Dynamiczne powiązanie z interfejsami, a nie z adresami zastępczymi (zalecane "
"jako domyślne ustawienie linuksa)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -982,10 +994,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Interfejs wiązań"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -995,7 +1007,7 @@ msgstr "Połącz tunel z tym interfejsem (opcjonalnie)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Szybkość transmisji"
@@ -1067,7 +1079,7 @@ msgstr "Połączenie nieudane"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1153,7 +1165,7 @@ msgstr "Zmienia hasło administratora umożliwiające dostęp do urządzenia"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanał"
@@ -1161,7 +1173,7 @@ msgstr "Kanał"
msgid "Check filesystems before mount"
msgstr "Sprawdź system plików przed zamontowaniem"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "Zaznacz opcję, jeśli chcesz usunąć istniejące sieci z tego radia."
@@ -1179,7 +1191,7 @@ msgid "Choose mtdblock"
msgstr "Wybierz 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1258,7 +1270,7 @@ msgstr "Zamknij listę..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1295,10 +1307,10 @@ msgstr ""
"odporność kluczowych negocjacji, szczególnie w środowiskach o dużym "
"natężeniu ruchu."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Obliczanie sumy kontrolnej wychodzącej (opcjonalnie)."
@@ -1391,7 +1403,7 @@ msgid "Country Code"
msgstr "Kod kraju"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Utwórz/Przypisz strefę zapory sieciowej"
@@ -1416,8 +1428,8 @@ msgstr "Poziom logowania Cron`a"
msgid "Current power"
msgstr "Aktualna moc nadawania"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1543,7 +1555,7 @@ msgid "DTIM Interval"
msgstr "Interwał DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1732,6 +1744,7 @@ msgid "Disable this network"
msgstr "Wyłącz tą sieć"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1753,7 +1766,8 @@ msgstr "Odrzuć wychodzące odpowiedzi RFC1918"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Rozłącz"
@@ -1800,10 +1814,10 @@ msgstr ""
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr "Nie buforuj odpowiedzi negatywnych, np. dla nieistniejących domen"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr "Nie twórz trasy hosta do peera (opcjonalnie)."
@@ -1847,8 +1861,8 @@ msgstr "Wymagana domena"
msgid "Domain whitelist"
msgstr "Białe listy (Dozwolone domeny)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Nie Fragmentuj"
@@ -2058,8 +2072,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "Włącz sumę kontrolną rx"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "Włącz wsparcie dla ruchu multicast (opcjonalne)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Włącz flagę DF (Nie fragmentuj) pakietów szyfrujących."
@@ -2110,7 +2131,7 @@ msgstr "Sposób enkapsulacji"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Szyfrowanie"
@@ -2454,7 +2475,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2694,9 +2715,9 @@ msgid "Hide empty chains"
msgstr "Ukryj puste łańcuchy"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Host"
@@ -2720,7 +2741,7 @@ msgstr "Zawartość znacznika Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nazwa hosta"
@@ -2840,7 +2861,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Adres IPv4"
@@ -2944,7 +2965,7 @@ msgid "IPv6 support"
msgstr "Obsługa IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Adres IPv6"
@@ -3095,24 +3116,24 @@ msgstr "Czas bezczynności"
msgid "Inbound:"
msgstr "Przychodzący:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Incoming checksum"
msgstr "Przychodząca suma kontrolna"
-#: 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 "Klucz przychodzący"
-
#: 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 key"
+msgstr "Klucz przychodzący"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Przychodząca serializacja"
@@ -3157,7 +3178,7 @@ msgstr "Ograniczenie wewnętrznego certyfikatu (Wildcard)"
msgid "Install protocol extensions..."
msgstr "Instaluj rozszerzenia protokołów..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3256,6 +3277,16 @@ msgstr "Niewłaściwy"
msgid "Invalid Base64 key string"
msgstr "Nieprawidłowy ciąg klucza Base64"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr "Nieprawidłowa wartość TOS, oczekiwana 00..FF lub pochodna"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+msgstr "Nieprawidłowa wartość klasy ruchu, spodziewane 00..FF lub pochodna"
+
#: 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 "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko ID pomiędzy %d a %d."
@@ -3288,13 +3319,6 @@ msgstr "Nieprawidłowa wartość szesnastkowa"
msgid "Invalid username and/or password! Please try again."
msgstr "Niewłaściwy login i/lub hasło! Spróbuj ponownie."
-#: 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 "Nieprawidłowa wartość"
-
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
msgstr "Izoluj klientów"
@@ -3322,7 +3346,7 @@ msgstr "Połącz z siecią"
msgid "Join Network: Wireless Scan"
msgstr "Przyłącz do sieci: Skanuj sieci WiFi"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Przyłączanie do sieci: %q"
@@ -3351,18 +3375,18 @@ msgstr "Klucz"
msgid "Key #%d"
msgstr "Klucz #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
msgstr "Klucz do pakietów przychodzących (opcjonalnie)."
-#: 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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr "Klucz do pakietów wychodzących (opcjonalnie)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3436,8 +3460,8 @@ msgstr "Czas dzierżawy"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Pozostały czas dzierżawy"
@@ -3616,7 +3640,7 @@ msgid "Local IPv4 address"
msgstr "Lokalny adres IPv4"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3669,7 +3693,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Zapytania lokalizujące"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Zablokuj na BSSID"
@@ -3685,8 +3709,8 @@ msgstr "Loguj zapytania"
msgid "Logging"
msgstr "Logowanie"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3694,8 +3718,8 @@ msgstr ""
"Sieć logiczna, z której można wybrać lokalny punkt końcowy, jeśli lokalny "
"adres IPv6 jest pusty i nie jest dostępna usługa WAN IPv6 (opcjonalnie)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
"Sieć logiczna, do której tunel zostanie dodany (zmostkowy) (opcjonalnie)."
@@ -3726,10 +3750,10 @@ msgid "MAC Address For The Actor"
msgstr "Adres MAC dla aktora"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3768,7 +3792,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3850,8 +3874,8 @@ msgstr "Maksymalna moc nadawania"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3927,7 +3951,7 @@ msgstr "Domena mobilna"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Tryb"
@@ -4053,6 +4077,13 @@ msgstr "Przesuń w dół"
msgid "Move up"
msgstr "Przesuń w górę"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr "Multicast"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4090,7 +4121,7 @@ msgstr "Lista serwerów NTP"
msgid "Name"
msgstr "Nazwa"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nazwa nowej sieci"
@@ -4101,15 +4132,19 @@ msgstr "Nawigacja"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Sieć"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Narzędzia sieciowe"
@@ -4127,8 +4162,8 @@ msgstr "Aktywność urządzenia sieciowego (kernel: netdev)"
msgid "Network device is not present"
msgstr "Urządzenie sieciowe nie jest obecne"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Interfejs sieciowy"
@@ -4155,6 +4190,10 @@ msgstr "Nie"
msgid "No DHCP Server configured for this interface"
msgstr "Brak skonfigurowanego serwera DHCP dla tego interfejsu"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "Brak danych"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Brak szyfrowania"
@@ -4187,16 +4226,16 @@ msgstr "Brak wpisów w tym katalogu"
msgid "No files found"
msgstr "Nie znaleziono plików"
-#: 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
+#: 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 "No host route"
msgstr "Brak trasy hosta"
#: 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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Brak dostępnych informacji"
@@ -4252,8 +4291,8 @@ msgstr "Brak przypisanej strefy"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Szum"
@@ -4530,24 +4569,24 @@ msgstr "Wychodzące"
msgid "Outbound:"
msgstr "Wychodzący:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
msgstr "Wychodząca suma kontrolna"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
msgstr "Klucz wychodzący"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Serializacja wychodząca"
@@ -4560,6 +4599,10 @@ msgstr "Interfejs wyjściowy"
msgid "Output zone"
msgstr "Strefa wyjściowa"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+msgstr "Nakładanie się"
+
#: 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
@@ -4571,10 +4614,10 @@ msgstr "Nadpisz adres MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4592,18 +4635,18 @@ msgstr "Nadpisz adres MAC"
msgid "Override MTU"
msgstr "Nadpisz MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Nadpisz TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4850,10 +4893,10 @@ msgstr "Peers"
msgid "Perfect Forward Secrecy"
msgstr "Doskonałe tajne przekazywanie"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Wykonaj serializację wychodzących pakietów (opcjonalnie)."
@@ -5046,7 +5089,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "Komórkowy QMI"
-#: 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:140
msgid "Quality"
msgstr "Jakość"
@@ -5083,11 +5126,11 @@ msgstr "Próg RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Szybkość RX"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Szybkość: RX/TX"
@@ -5225,7 +5268,7 @@ msgstr "Zdalny adres IPv6 lub FQDN"
msgid "Remove"
msgstr "Usuń"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Zamień konfigurację WiFi"
@@ -5241,17 +5284,17 @@ msgstr "Zażądaj długość prefiksu IPv6"
msgid "Request timeout"
msgstr "Limit czasu żądania"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Require incoming checksum (optional)."
msgstr "Wymagaj przychodzącej sumy kontrolnej (opcjonalnie)."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Wymagaj serializacji pakietów przychodzących (opcjonalnie)."
@@ -5504,7 +5547,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5533,7 +5576,7 @@ msgstr "Klucze SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5658,6 +5701,11 @@ msgstr "Usługi"
msgid "Session expired"
msgstr "Sesja wygasła"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr "Ustaw statycznie"
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Wybierz VPN jako domyślną trasę"
@@ -5707,7 +5755,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Ilość poważnych błedów (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Krótki GI"
@@ -5732,14 +5780,14 @@ msgstr "Wyłącz ten interfejs"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Sygnał"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Sygnał/Szum"
@@ -5820,8 +5868,8 @@ msgstr "Źródło"
msgid "Source Address"
msgstr "Adres Źródłowy"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Interfejs źródłowy"
@@ -6024,21 +6072,30 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Określ TOS (Type of Service)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+"Określ tos (typ usługi). Może to być <code>inherit</code> (zewnętrzny "
+"nagłówek dziedziczy wartość nagłówka wewnętrznego) lub wartość szesnastkowa "
+"<code>00..FF</code> (opcjonalnie)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Określ TOS (typ usługi). Może mieć wartość <code>dziedziczyć</code> "
-"(nagłówek zewnętrzny dziedziczy wartość nagłówka wewnętrznego) lub wartość "
-"szesnastkową zaczynającą się od <code>0x</code> (opcjonalnie)."
+"Określ tos (typ usługi). Może to być <code>inherit</code> (nagłówek "
+"zewnętrzny dziedziczy wartość nagłówka wewnętrznego) lub wartość "
+"szesnastkowa <code>00..FF</code> (opcjonalnie)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6056,21 +6113,21 @@ msgstr ""
"Określ TTL (Time to Live) dla pakietu enkapsulującego innego niż domyślny "
"(64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
-"Określ klasę ruchu. Może to być <code>inherit</code> (nagłówek zewnętrzny "
-"dziedziczy wartość nagłówka wewnętrznego) lub wartość szesnastkową "
-"rozpoczynającą się od <code>0x</code> (opcjonalnie)."
+"Określ klasę ruchu. Może to być <code>inherit</code> (zewnętrzny nagłówek "
+"dziedziczy wartość nagłówka wewnętrznego) lub wartość szesnastkowa <code>00.."
+"FF</code> (opcjonalnie)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6087,7 +6144,7 @@ msgid ""
msgstr ""
"Określ MTU (Maximum Transmission Unit) inną niż domyślna (1280 bajtów)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Określ tajny klucz szyfrowania."
@@ -6096,6 +6153,10 @@ msgstr "Określ tajny klucz szyfrowania."
msgid "Start"
msgstr "Uruchom"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr "Uruchom WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Priorytet uruchamiania"
@@ -6125,6 +6186,11 @@ msgstr "Statyczne trasy IPv4"
msgid "Static IPv6 Routes"
msgstr "Statyczne trasy IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "Dzierżawa statyczna"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Dzierżawy statyczne"
@@ -6166,6 +6232,10 @@ msgstr "Status"
msgid "Stop"
msgstr "Zatrzymaj"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+msgstr "Zatrzymaj WPS"
+
#: 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"
@@ -6180,7 +6250,7 @@ msgid "Strong"
msgstr "Silne"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Prześlij"
@@ -6280,7 +6350,7 @@ msgstr "Katalog główny serwera TFTP"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Szybkość TX"
@@ -6347,7 +6417,7 @@ msgid ""
msgstr ""
"Prefiks IPv6 przypisany do dostawcy, zazwyczaj kończy się <code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6360,6 +6430,12 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
"Plik konfiguracyjny nie mógł zostać załadowany z powodu następującego błędu:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6462,12 +6538,12 @@ msgid "The local IPv4 netmask"
msgstr "Lokalna maska dla IPv4"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "Lokalny adres IPv6, na którym tworzony jest tunel (opcjonalnie)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Nazwa sieci jest już w użyciu"
@@ -6566,8 +6642,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Nie ma aktywnych dzierżaw"
@@ -6705,6 +6781,10 @@ msgstr "Synchronizacja czasu"
msgid "Time interval for rekeying GTK"
msgstr "Odstęp czasowy dla wznowienia kluczy GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "Przekroczono limit czasu"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Strefa czasowa"
@@ -6743,8 +6823,8 @@ msgstr "Śledzenie trasy"
msgid "Traffic"
msgstr "Ruch"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Klasa ruchu"
@@ -6788,7 +6868,7 @@ msgid "Tx-Power"
msgstr "Moc nadawania"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Typ"
@@ -6885,6 +6965,7 @@ msgstr "Nieprzewidziany format danych odpowiedzi"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Nieznany"
@@ -7327,7 +7408,7 @@ msgstr "Otwarty system WEP"
msgid "WEP Shared Key"
msgstr "Współdzielony klucz WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Hasło WEP"
@@ -7335,7 +7416,7 @@ msgstr "Hasło WEP"
msgid "WMM Mode"
msgstr "Tryb WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Hasło WPA"
@@ -7347,6 +7428,10 @@ msgstr ""
"Kodowanie WPA wymaga zainstalowanych modułów wpa_supplicant (tryb klienta) "
"lub hostapd (tryb AP lub ad-hoc)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr "Status WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Oczekiwanie na urządzenie..."
@@ -7387,7 +7472,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Sieć bezprzewodowa"
@@ -7418,13 +7503,13 @@ msgstr "Migracja konfiguracji bezprzewodowej"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Sieć bezprzewodowa jest wyłączona"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Sieć bezprzewodowa nie jest podłączona"
@@ -7546,7 +7631,7 @@ msgid "bridged"
msgstr "zmostkowany"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7568,11 +7653,11 @@ msgstr "utwórz:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7619,8 +7704,8 @@ msgstr "np: dump"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "nieważny"
@@ -7814,8 +7899,8 @@ msgstr "nieznane"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "nielimitowane"
@@ -7824,9 +7909,9 @@ msgstr "nielimitowane"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8020,6 +8105,27 @@ msgstr "tak"
msgid "« Back"
msgstr "« Wróć"
+#~ msgid "Invalid value"
+#~ msgstr "Nieprawidłowa wartość"
+
+#~ 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 ""
+#~ "Określ TOS (typ usługi). Może mieć wartość <code>dziedziczyć</code> "
+#~ "(nagłówek zewnętrzny dziedziczy wartość nagłówka wewnętrznego) lub "
+#~ "wartość szesnastkową zaczynającą się od <code>0x</code> (opcjonalnie)."
+
+#~ 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 ""
+#~ "Określ klasę ruchu. Może to być <code>inherit</code> (nagłówek zewnętrzny "
+#~ "dziedziczy wartość nagłówka wewnętrznego) lub wartość szesnastkową "
+#~ "rozpoczynającą się od <code>0x</code> (opcjonalnie)."
+
#~ msgid "default-on (kernel)"
#~ msgstr "domyślnie włączone (kernel)"
diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po
index 697a1f1705..83ae0645b0 100644
--- a/modules/luci-base/po/pt/base.po
+++ b/modules/luci-base/po/pt/base.po
@@ -3,8 +3,8 @@ 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-10-14 08:09+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
+"PO-Revision-Date: 2020-11-15 19:47+0000\n"
+"Last-Translator: Ricardo Nunes <ricardofsonunes@gmail.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/luci/"
"pt/>\n"
"Language: pt\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -373,8 +373,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ID do vendedor de sistema ATU-C"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Interface ausente"
@@ -391,6 +391,10 @@ msgstr "Ponto de Acesso"
msgid "Actions"
msgstr "Ações"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Ativo"
+
#: 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 ""
@@ -406,12 +410,12 @@ msgid "Active Connections"
msgstr "Ligações Ativas"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Concessões DHCP Ativas"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Concessões DHCPv6 Ativas"
@@ -492,6 +496,14 @@ msgstr "Adicionar uma nova interface..."
msgid "Add peer"
msgstr "Adicionar par"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "Adicionar à lista negra"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "Adicionar à lista branca"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Ficheiro Hosts adicional"
@@ -811,12 +823,12 @@ msgstr ""
"Atribua partes do prefixo usando este ID hexadecimal do sub prefixo para "
"esta interface."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Estações Associadas"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Associações"
@@ -927,7 +939,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -981,10 +993,10 @@ msgstr ""
"Ligar dinamicamente a interfaces ao invés de endereços wildcard (recomendado "
"como predefinição do Linux)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -992,10 +1004,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Ligar à interface"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1005,7 +1017,7 @@ msgstr "Ligar o túnel a esta interface (opcional)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Taxa de bits"
@@ -1077,7 +1089,7 @@ msgstr "A chamada falhou"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1164,7 +1176,7 @@ msgstr "Altera a palavra-passe de administrador para acesso ao aparelho"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canal"
@@ -1172,7 +1184,7 @@ msgstr "Canal"
msgid "Check filesystems before mount"
msgstr "Verificar o sistema de ficheiros antes da montagem"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "Marque esta opção para remover as redes existentes neste rádio."
@@ -1190,7 +1202,7 @@ msgid "Choose mtdblock"
msgstr "Escolha o bloco mtd"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1269,7 +1281,7 @@ msgstr "Fechar lista..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1306,10 +1318,10 @@ msgstr ""
"a robustez da negociação de chaves, especialmente em ambientes com muito "
"tráfego."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Cálculo do checksum de saída (opcional)."
@@ -1405,7 +1417,7 @@ msgid "Country Code"
msgstr "Código do País"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Criar / Atribuir a uma zona de firewall"
@@ -1430,8 +1442,8 @@ msgstr "Nível de Log do Cron"
msgid "Current power"
msgstr "Energia atual"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1557,7 +1569,7 @@ msgid "DTIM Interval"
msgstr "Intervalo DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1747,6 +1759,7 @@ msgid "Disable this network"
msgstr "Desativar esta rede"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1768,7 +1781,8 @@ msgstr "Descartar respostas RFC1918 a montante"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Desconectar"
@@ -1815,10 +1829,10 @@ msgstr ""
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr "Não por respostas negativas em cache, p.e. para domínios inexistentes"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr "Não crie a rota do host para o peer (opcional)."
@@ -1860,8 +1874,8 @@ msgstr "Domínio requerido"
msgid "Domain whitelist"
msgstr "Lista Branca do Domínio"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Não Fragmentar"
@@ -2072,8 +2086,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "Ativar o checksum no rx"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "Ativar suporte para tráfego de multicast (opcional)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Ativa o campo DF (Não Fragmentar) dos pacotes encapsulados."
@@ -2124,7 +2145,7 @@ msgstr "Modo de encapsulamento"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Encriptação"
@@ -2471,7 +2492,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2519,7 +2540,7 @@ msgstr "Métrica de Gateway"
#: 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 "Configurações Gerais"
+msgstr "Configurações gerais"
#: 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
@@ -2714,9 +2735,9 @@ msgid "Hide empty chains"
msgstr "Esconder cadeias vazias"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Host"
@@ -2740,7 +2761,7 @@ msgstr "Conteúdo da etiqueta Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nome do Host"
@@ -2844,7 +2865,7 @@ msgstr "Rede IPv4 em notação endereço/máscara de rede"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
msgid "IPv4 only"
-msgstr "Só IPv4"
+msgstr "Apenas IPv4"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
msgid "IPv4 prefix"
@@ -2860,7 +2881,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Endereço-IPv4"
@@ -2938,7 +2959,7 @@ msgstr "Rede IPv6 em notação endereço/máscara de rede"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
msgid "IPv6 only"
-msgstr "Só IPv6"
+msgstr "Apenas 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
@@ -2964,7 +2985,7 @@ msgid "IPv6 support"
msgstr "Suporte de IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Endereço-IPv6"
@@ -3114,24 +3135,24 @@ msgstr "Tempo de inatividade"
msgid "Inbound:"
msgstr "Entrada:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Incoming checksum"
msgstr "Checksum da entrada"
-#: 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 "Chave da entrada"
-
#: 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 key"
+msgstr "Chave da entrada"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Entrada da serialização"
@@ -3176,7 +3197,7 @@ msgstr "Restrição de certificado interno (Wildcard)"
msgid "Install protocol extensions..."
msgstr "Instalar extensões do protocolo..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3275,6 +3296,16 @@ msgstr "Inválido"
msgid "Invalid Base64 key string"
msgstr "Cadeia de caracteres Base64 inválida"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr "Valor de TOS inválido, esperado 00..FF ou herdado"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+msgstr "Valor da classe de tráfego inválido, esperado 00...FF ou herdado"
+
#: 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 ""
@@ -3308,13 +3339,6 @@ msgstr "Valor hexadecimal inválido"
msgid "Invalid username and/or password! Please try again."
msgstr "Username e/ou password inválidos! Por favor, tente novamente."
-#: 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 "Valor inválido"
-
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
msgstr "Isolar Clientes"
@@ -3342,7 +3366,7 @@ msgstr "Associar à Rede"
msgid "Join Network: Wireless Scan"
msgstr "Associar à Rede: Procurar Redes Wireless"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "A associar à rede: %q"
@@ -3371,19 +3395,19 @@ msgstr "Chave"
msgid "Key #%d"
msgstr "Chave #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
msgstr "Chave para os pacotes da entrada (opcional)."
-#: 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 "Chave para os pacotes da saída (optinal)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
+msgstr "Chave para os pacotes da saída (optional)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
msgid "Kill"
@@ -3456,8 +3480,8 @@ msgstr "Tempo de concessão"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Tempo de concessão restante"
@@ -3639,7 +3663,7 @@ msgid "Local IPv4 address"
msgstr "Endereço IPv4 Local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3694,7 +3718,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localizar consultas"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Bloqueio para BSSID"
@@ -3710,8 +3734,8 @@ msgstr "Registo das consultas"
msgid "Logging"
msgstr "Logging"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3719,8 +3743,8 @@ msgstr ""
"Rede lógica a partir de onde selecionar o ponto final local caso o endereço "
"IPv6 local esteja vazio e não haja um IPv6 WAN disponível (opcional)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)."
@@ -3752,10 +3776,10 @@ msgid "MAC Address For The Actor"
msgstr "Endereço MAC Para o Ator"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3794,7 +3818,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3879,8 +3903,8 @@ msgstr "Potência máxima de transmissão"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3956,7 +3980,7 @@ msgstr "Domínio da Mobilidade"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Modo"
@@ -4082,6 +4106,13 @@ msgstr "Mover para baixo"
msgid "Move up"
msgstr "Mover para cima"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr "Multicast"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4119,7 +4150,7 @@ msgstr "Candidatos a servidor NTP"
msgid "Name"
msgstr "Nome"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nome da nova rede"
@@ -4130,15 +4161,19 @@ msgstr "Navegação"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Rede"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr "SSID de rede"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Ferramentas de Rede"
@@ -4156,8 +4191,8 @@ msgstr "Atividade do aparelho de rede (kernel: netdev)"
msgid "Network device is not present"
msgstr "O aparelho de rede não está presente"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Interfaces de rede"
@@ -4184,6 +4219,10 @@ msgstr "Não"
msgid "No DHCP Server configured for this interface"
msgstr "Sem Servidor DHCP configurado nesta interface"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "Sem dados"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Sem criptografia"
@@ -4216,16 +4255,16 @@ msgstr "Não há entradas neste diretório"
msgid "No files found"
msgstr "Não foram encontrados ficheiros"
-#: 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
+#: 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 "No host route"
msgstr "Nenhuma rota para o host"
#: 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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Sem informação disponível"
@@ -4281,8 +4320,8 @@ msgstr "Sem zona atribuída"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Ruído"
@@ -4563,24 +4602,24 @@ msgstr "Saída"
msgid "Outbound:"
msgstr "Saída:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
msgstr "Checksum de saída"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
msgstr "Chave de Saída"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Serialização de saída"
@@ -4593,6 +4632,10 @@ msgstr "Interface de Saída"
msgid "Output zone"
msgstr "Zona de saída"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+msgstr "Sobreposição"
+
#: 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
@@ -4604,10 +4647,10 @@ msgstr "Sobrescrever o endereço MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4627,18 +4670,18 @@ msgstr ""
"Sobrescrever o <abbr title=\"Maximum Transmission Unit/Unidade Máxima de "
"Transmissão\">MTU</abbr>"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Sobrescrever o TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4885,10 +4928,10 @@ msgstr "Parceiros"
msgid "Perfect Forward Secrecy"
msgstr "Sigilo Encaminhado Perfeito"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Realizar a serialização dos pacotes na saída (opcional)."
@@ -5080,7 +5123,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "Celular QMI"
-#: 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:140
msgid "Quality"
msgstr "Qualidade"
@@ -5117,11 +5160,11 @@ msgstr "Limiar RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Taxa RX"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Taxa RX / Taxa TX"
@@ -5259,7 +5302,7 @@ msgstr "Endereço IPv6 remoto ou FQDN"
msgid "Remove"
msgstr "Remover"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Substituir configuração wireless"
@@ -5275,17 +5318,17 @@ msgstr "Solicita prefixo IPv6 de tamanho"
msgid "Request timeout"
msgstr "Tempo limite do pedido"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Require incoming checksum (optional)."
msgstr "Exigir o checkum na entrada (opcional)."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Exigir a serialização dos pacotes na entrada (opcional)."
@@ -5540,7 +5583,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5569,7 +5612,7 @@ msgstr "Chaves-SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5694,6 +5737,11 @@ msgstr "Serviços"
msgid "Session expired"
msgstr "A sessão expirou"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr "Define como estático"
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Definir VPN como a Rota Padrão"
@@ -5748,7 +5796,7 @@ msgstr ""
"abbr>)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Intervalo de guarda curto"
@@ -5773,14 +5821,14 @@ msgstr "Desligar esta interface"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Sinal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Sinal / Ruído"
@@ -5861,8 +5909,8 @@ msgstr "Origem"
msgid "Source Address"
msgstr "Endereço de Origem"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Interface de origem"
@@ -6071,21 +6119,30 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Especifique um Tipo de Serviço (TOS)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+"Especifique um TOS (Type of Service, tipo de serviço). Pode ser "
+"<code>inherit</code> (o cabeçalho externo herda o valor do cabeçalho "
+"interno) ou um valor hexadecimal <code>00...FF</code> (opcional)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Especifique um TOS (Tipo de Serviço). Pode ser <code>inherit</code> (o "
-"cabeçalho externo herda o valor do cabeçalho interno) ou um valor "
-"hexadecimal começando com <code>0x</code> (opcional)."
+"Especifique um TOS (Type of Service, tipo de serviço). Pode ser "
+"<code>inherit</code> (o cabeçalho externo herda o valor do cabeçalho "
+"interno) ou um valor hexadecimal <code>00...FF</code> (opcional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6103,21 +6160,21 @@ msgstr ""
"Especifica o tempo de vida (<abbr title=\"Time to Live\">TTL</abbr>) para os "
"pacotes encapsulados ao invés da predefinição (64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
-"Defina uma Classe de Trânsito. Pode ser <code>inherit</code> (o cabeçalho "
-"externo herda o valor do cabeçalho interno) ou um valor hexadecimal "
-"começando com <code>0x</code> (opcional)."
+"Especifique uma classe de tráfego. Pode ser <code>inherit</code> (o "
+"cabeçalho externo herda o valor do cabeçalho interno) ou um valor "
+"hexadecimal <code>00...FF</code> (opcional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6135,7 +6192,7 @@ msgstr ""
"Especifica a unidade máxima de transmissão (<abbr title=\"Maximum "
"Transmission Unit\">MTU</abbr>) ao invés do valor predefinido (1280 bytes)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Especifique a chave de cifragem secreta aqui."
@@ -6144,6 +6201,10 @@ msgstr "Especifique a chave de cifragem secreta aqui."
msgid "Start"
msgstr "Iniciar"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr "Iniciar WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Prioridade de inicialização"
@@ -6173,6 +6234,11 @@ msgstr "Rotas Estáticas IPv4"
msgid "Static IPv6 Routes"
msgstr "Rotas Estáticas IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "Concessão estática"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Atribuições Estáticas"
@@ -6214,6 +6280,10 @@ msgstr "Estado"
msgid "Stop"
msgstr "Parar"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+msgstr "Parar o WPS"
+
#: 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"
@@ -6228,7 +6298,7 @@ msgid "Strong"
msgstr "Forte"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Submeter"
@@ -6328,7 +6398,7 @@ msgstr "Raíz do servidor TFTP"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Taxa de TX"
@@ -6396,7 +6466,7 @@ msgstr ""
"O prefixo IPv6 atribuído ao provider, habitualmente termina com <code>::</"
"code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6409,6 +6479,14 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
"O ficheiros de configuração não pode ser carregado devido ao seguinte erro:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+msgstr ""
+"O SSID correto deve ser manualmente especificado quando entrar numa rede sem "
+"fios oculta"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4129
msgid ""
"The device could not be reached within %d seconds after applying the pending "
@@ -6512,12 +6590,12 @@ msgid "The local IPv4 netmask"
msgstr "A máscara de rede do IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "O endereço IPv6 local sobre o qual o túnel será criado (opcional)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "O nome da rede já está sendo usado"
@@ -6618,8 +6696,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Não há arrendamentos ativos"
@@ -6756,6 +6834,10 @@ msgstr "Sincronização Horária"
msgid "Time interval for rekeying GTK"
msgstr "Intervalo de tempo para rekeying GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "Tempo esgotado"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Fuso Horário"
@@ -6794,8 +6876,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Tráfego"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Classe de tráfego"
@@ -6839,7 +6921,7 @@ msgid "Tx-Power"
msgstr "Potência de Tx"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tipo"
@@ -6938,6 +7020,7 @@ msgstr "Formato de dados de resposta inesperado"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Desconhecido"
@@ -7385,7 +7468,7 @@ msgstr "Sistema Aberto WEP"
msgid "WEP Shared Key"
msgstr "Chave partilhada WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Palavra-Passe WEP"
@@ -7393,7 +7476,7 @@ msgstr "Palavra-Passe WEP"
msgid "WMM Mode"
msgstr "Modo WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Palavra-Passe WPA"
@@ -7405,6 +7488,10 @@ msgstr ""
"A encriptação-WPA necessita do wpa_supplicant (para modo cliente) ou do "
"hostapd (para modo AP ou ah-hoc) esteja instalado."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr "Estado do WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "À espera do aparelho..."
@@ -7444,7 +7531,7 @@ msgid "WireGuard VPN"
msgstr "VPN WireGuard"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Wireless"
@@ -7475,13 +7562,13 @@ msgstr "Migração da configuração wrieless"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Wireless desativada"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Wireless não associada"
@@ -7605,7 +7692,7 @@ msgid "bridged"
msgstr "em ponte"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7627,11 +7714,11 @@ msgstr "criar:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7678,8 +7765,8 @@ msgstr "p.ex.: despejo"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "expirou"
@@ -7873,8 +7960,8 @@ msgstr "desconhecido"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "ilimitado"
@@ -7883,9 +7970,9 @@ msgstr "ilimitado"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8079,6 +8166,27 @@ msgstr "sim"
msgid "« Back"
msgstr "« Voltar"
+#~ msgid "Invalid value"
+#~ msgstr "Valor inválido"
+
+#~ 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 ""
+#~ "Especifique um TOS (Tipo de Serviço). Pode ser <code>inherit</code> (o "
+#~ "cabeçalho externo herda o valor do cabeçalho interno) ou um valor "
+#~ "hexadecimal começando com <code>0x</code> (opcional)."
+
+#~ 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 ""
+#~ "Defina uma Classe de Trânsito. Pode ser <code>inherit</code> (o cabeçalho "
+#~ "externo herda o valor do cabeçalho interno) ou um valor hexadecimal "
+#~ "começando com <code>0x</code> (opcional)."
+
#~ msgid "default-on (kernel)"
#~ msgstr "default-on (kernel)"
diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po
index 165fad380d..a38a4188c1 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-29 14:41+0000\n"
+"PO-Revision-Date: 2020-11-18 13:28+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luci/pt_BR/>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -384,8 +384,8 @@ msgid "ATU-C System Vendor ID"
msgstr "Identificador de"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Interface ausente"
@@ -402,6 +402,10 @@ msgstr "Ponto de Acceso (AP)"
msgid "Actions"
msgstr "Ações"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Ativo"
+
#: 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 ""
@@ -417,12 +421,12 @@ msgid "Active Connections"
msgstr "Conexões Ativas"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Alocações DHCP ativas"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Alocações DHCPv6 ativas"
@@ -502,6 +506,14 @@ msgstr "Adiciona uma nova interface..."
msgid "Add peer"
msgstr "Adicionar parceiro"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "Adicionar à lista negra"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "Adicionar à lista branca"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Arquivos adicionais de equipamentos conhecidos (hosts)"
@@ -824,12 +836,12 @@ msgstr ""
"Atribua partes do prefixo usando este identificador hexadecimal do "
"subprefixo para esta interface."
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Estações associadas"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Associações"
@@ -941,7 +953,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -995,10 +1007,10 @@ msgstr ""
"Vincula dinamicamente a interfaces em vez de endereço curinga (recomendado "
"como padrão de linux)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1006,10 +1018,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Interface Vinculada"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1019,7 +1031,7 @@ msgstr "Vincule o túnel a esta interface (opcional)."
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Taxa de bits"
@@ -1091,7 +1103,7 @@ msgstr "A chamada falhou"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1179,7 +1191,7 @@ msgstr "Muda a senha do administrador para acessar este dispositivo"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canal"
@@ -1188,7 +1200,7 @@ msgid "Check filesystems before mount"
msgstr ""
"Execute a verificação do sistema de arquivos antes da montagem do dispositivo"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "Marque esta opção para remover as redes existentes neste rádio."
@@ -1206,7 +1218,7 @@ msgid "Choose mtdblock"
msgstr "Escolha o bloco mtd"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1286,7 +1298,7 @@ msgstr "Fechar a lista..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1323,10 +1335,10 @@ msgstr ""
"compatibilidade e reduzir a robustez da negociação de chaves, especialmente "
"em ambientes com muito tráfego."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Cálculo do checksum de saída (opcional)."
@@ -1422,7 +1434,7 @@ msgid "Country Code"
msgstr "Código do País"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Criar / Atribuir a uma zona de firewall"
@@ -1447,8 +1459,8 @@ msgstr "Nível de Registro da Cron"
msgid "Current power"
msgstr "Potência atual"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1576,7 +1588,7 @@ msgstr ""
"Traffic Indication Message\">DTIM</abbr>"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1767,6 +1779,7 @@ msgid "Disable this network"
msgstr "Desabilitar esta rede"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1789,7 +1802,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Desconectar"
@@ -1838,10 +1852,10 @@ msgstr ""
"Não mantenha em cache para respostas negativas como, por exemplo, para os "
"domínios inexistentes"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr "Não crie a rota do host para o peer (opcional)."
@@ -1883,8 +1897,8 @@ msgstr "Requerer domínio"
msgid "Domain whitelist"
msgstr "Lista branca de domínios"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Não Fragmentar"
@@ -2099,8 +2113,15 @@ msgstr ""
msgid "Enable rx checksum"
msgstr "Ativar o checksum no rx"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "Ative o suporte para o tráfego multicast (opcional)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "Habilita o campo DF (Não Fragmentar) dos pacotes encapsulados."
@@ -2149,7 +2170,7 @@ msgstr "Modo de encapsulamento"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Criptografia"
@@ -2498,7 +2519,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2742,9 +2763,9 @@ msgid "Hide empty chains"
msgstr "Ocultar as correntes vazias"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Host"
@@ -2770,7 +2791,7 @@ msgstr "Conteúdo da etiqueta única do equipamento"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Nome do equipamento"
@@ -2890,7 +2911,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Endereço IPv4"
@@ -2996,7 +3017,7 @@ msgid "IPv6 support"
msgstr "Suporte ao IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Endereço IPv6"
@@ -3148,24 +3169,24 @@ msgstr "Tempo limite de inatividade"
msgid "Inbound:"
msgstr "Entrando:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Incoming checksum"
msgstr "Checksum da entrada"
-#: 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 "Chave da entrada"
-
#: 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 key"
+msgstr "Chave da entrada"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Entrada da serialização"
@@ -3210,7 +3231,7 @@ msgstr "Restrição de certificado interno (Asterisco)"
msgid "Install protocol extensions..."
msgstr "Instalar extensões de protocolo..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3309,6 +3330,16 @@ msgstr "Valor inválido"
msgid "Invalid Base64 key string"
msgstr "String de chave Base64 inválida"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr "Valor TOS inválido, se espera 00..FF ou herdado"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+msgstr "Valor da classe do tráfego inválido, se espera 00..FF ou herdado"
+
#: 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 ""
@@ -3345,13 +3376,6 @@ msgstr "Valor hexadecimal inválido"
msgid "Invalid username and/or password! Please try again."
msgstr "Usuário e/ou senha inválida! Por favor, tente novamente."
-#: 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 "Valor inválido"
-
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075
msgid "Isolate Clients"
msgstr "Isolar Clientes"
@@ -3379,7 +3403,7 @@ msgstr "Conectar à Rede"
msgid "Join Network: Wireless Scan"
msgstr "Conectar à Rede: Busca por Rede Sem Fio"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Juntando-se à rede %q"
@@ -3408,19 +3432,19 @@ msgstr "Chave"
msgid "Key #%d"
msgstr "Chave #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "Key for incoming packets (optional)."
msgstr "Chave para os pacotes da entrada (opcional)."
-#: 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 "Chave para os pacotes da saída (optinal)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
+msgstr "Chave para os pacotes da saída (optional)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
msgid "Kill"
@@ -3493,8 +3517,8 @@ msgstr "Tempo de concessão"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Tempo restante da atribuição"
@@ -3678,7 +3702,7 @@ msgid "Local IPv4 address"
msgstr "Endereço IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3733,7 +3757,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Localizar consultas"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Bloqueio para BSSID"
@@ -3749,8 +3773,8 @@ msgstr "Registar as consultas"
msgid "Logging"
msgstr "Registrando os eventos"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3758,8 +3782,8 @@ msgstr ""
"Rede lógica a partir de onde selecionar o ponto final local caso o endereço "
"IPv6 local esteja vazio e não haja um IPv6 WAN disponível (opcional)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)."
@@ -3791,10 +3815,10 @@ msgid "MAC Address For The Actor"
msgstr "Endereço MAC Para o Ator"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3833,7 +3857,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3917,8 +3941,8 @@ msgstr "Potência máxima de transmissão"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3994,7 +4018,7 @@ msgstr "Domínio da Mobilidade"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Modo"
@@ -4120,6 +4144,13 @@ msgstr "Mover para baixo"
msgid "Move up"
msgstr "Mover para cima"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr "Multicast"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4157,7 +4188,7 @@ msgstr "Candidatos a servidor NTP"
msgid "Name"
msgstr "Nome"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Nome da nova rede"
@@ -4168,15 +4199,19 @@ msgstr "Navegação"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Rede"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr "Rede SSID"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Utilitários de Rede"
@@ -4194,8 +4229,8 @@ msgstr "Atividade do dispositivo de rede (kernel: netdev)"
msgid "Network device is not present"
msgstr "O dispositivo de rede não está presente"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Interfaces de rede"
@@ -4222,6 +4257,10 @@ msgstr "Não"
msgid "No DHCP Server configured for this interface"
msgstr "Nenhum Servidor DHCP configurado para esta interface"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "Sem dados"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Sem criptografia"
@@ -4254,16 +4293,16 @@ msgstr "Nenhuma entrada neste diretório"
msgid "No files found"
msgstr "Nenhum arquivo encontrado"
-#: 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
+#: 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 "No host route"
msgstr "Nenhuma rota para o host"
#: 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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Nenhuma informação disponível"
@@ -4319,8 +4358,8 @@ msgstr "Nenhuma zona definida"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Ruído"
@@ -4601,24 +4640,24 @@ msgstr "Saída"
msgid "Outbound:"
msgstr "Saindo:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Outgoing checksum"
msgstr "Checksum de Saída"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
msgid "Outgoing key"
msgstr "Chave de Saída"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Serialização de saída"
@@ -4631,6 +4670,10 @@ msgstr "Interface de Saída"
msgid "Output zone"
msgstr "Zona de saída"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+msgstr "Sobreposição"
+
#: 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
@@ -4642,10 +4685,10 @@ msgstr "Sobrescrever o endereço MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4665,18 +4708,18 @@ msgstr ""
"Sobrescrever o <abbr title=\"Maximum Transmission Unit/Unidade Máxima de "
"Transmissão\">MTU</abbr>"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Sobrescrever o TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4923,10 +4966,10 @@ msgstr "Pares"
msgid "Perfect Forward Secrecy"
msgstr "Sigilo Encaminhado Perfeito"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Realizar a serialização dos pacotes na saída (opcional)."
@@ -5119,7 +5162,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "Celular QMI"
-#: 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:140
msgid "Quality"
msgstr "Qualidade"
@@ -5156,11 +5199,11 @@ msgstr "Limiar RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Taxa de RX"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Taxa de RX / Taxa de TX"
@@ -5298,7 +5341,7 @@ msgstr "Endereço IPv6 remoto ou FQDN"
msgid "Remove"
msgstr "Remover"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Substituir a configuração da rede sem fio"
@@ -5314,17 +5357,17 @@ msgstr "Solicita prefixo IPv6 de tamanho"
msgid "Request timeout"
msgstr "A requisição excedeu o tempo limite"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
msgid "Require incoming checksum (optional)."
msgstr "Exigir o checkum na entrada (opcional)."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Exigir a serialização dos pacotes na entrada (opcional)."
@@ -5580,7 +5623,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5609,7 +5652,7 @@ msgstr "Chaves SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5734,6 +5777,11 @@ msgstr "Serviços"
msgid "Session expired"
msgstr "Sessão expirada"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr "Define como estático"
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Definir VPN como Rota Padrão"
@@ -5788,7 +5836,7 @@ msgstr ""
"abbr>)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Intervalo curto de guarda"
@@ -5813,14 +5861,14 @@ msgstr "Desligar esta interface"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Sinal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Sinal / Ruído"
@@ -5901,8 +5949,8 @@ msgstr "Origem"
msgid "Source Address"
msgstr "Endereço de Origem"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Interface de origem"
@@ -6111,21 +6159,30 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Especifique um Tipo de Serviço (TOS)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Especifique um TOS (Tipo de Serviço). Pode ser <code>inherit</code> (o "
+"Especifique um TOS (Tipo de Serviço). Pode ser <code>herdar</code> (o "
"cabeçalho externo herda o valor do cabeçalho interno) ou um valor "
-"hexadecimal começando com <code>0x</code> (opcional)."
+"hexadecimal <code>00..FF</code> (opcional)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+"Especifique um TOS (Tipo de Serviço). Pode ser <code>herdar</code> (o "
+"cabeçalho externo herda o valor do cabeçalho interno), ou um valor "
+"hexadecimal <code>00..FF</code> (opcional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6143,21 +6200,21 @@ msgstr ""
"Especifica o tempo de vida (<abbr title=\"Time to Live\">TTL</abbr>) para os "
"pacotes encapsulados ao invés do padrão (64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
-"Defina uma Classe de Trânsito. Pode ser <code>inherit</code> (o cabeçalho "
+"Especifique uma classe de trafego. Pode ser <code>herdar</code> (o cabeçalho "
"externo herda o valor do cabeçalho interno) ou um valor hexadecimal "
-"começando com <code>0x</code> (opcional)."
+"<code>00..FF</code> (opcional)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6175,7 +6232,7 @@ msgstr ""
"Especifica a unidade máxima de transmissão (<abbr title=\"Maximum "
"Transmission Unit\">MTU</abbr>) ao invés do valor padrão (1280 bytes)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Especifique a chave de cifragem secreta aqui."
@@ -6184,6 +6241,10 @@ msgstr "Especifique a chave de cifragem secreta aqui."
msgid "Start"
msgstr "Início"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr "Iniciar o WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Prioridade de iniciação"
@@ -6213,6 +6274,11 @@ msgstr "Rotas Estáticas IPv4"
msgid "Static IPv6 Routes"
msgstr "Rotas Estáticas IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "Alocação estática"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Alocações Estáticas"
@@ -6254,6 +6320,10 @@ msgstr "Condição Geral"
msgid "Stop"
msgstr "Parar"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+msgstr "Pare o WPS"
+
#: 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"
@@ -6268,7 +6338,7 @@ msgid "Strong"
msgstr "Forte"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Enviar"
@@ -6368,7 +6438,7 @@ msgstr "Raiz do servidor TFTP"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Taxa de TX"
@@ -6435,7 +6505,7 @@ msgid ""
msgstr ""
"O prefixo IPv6 atribuído pelo provedor, geralmente termina com<code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6448,6 +6518,14 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
"O arquivo de configuração não pode ser carregado devido ao seguinte erro:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+msgstr ""
+"O SSID correto deve ser definido manualmente ao se conectar em uma rede "
+"oculta sem fio"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4129
msgid ""
"The device could not be reached within %d seconds after applying the pending "
@@ -6551,12 +6629,12 @@ msgid "The local IPv4 netmask"
msgstr "A máscara de rede do IPv4 local"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "O endereço IPv6 local sobre o qual o túnel será criado (opcional)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "O nome da rede já está sendo usada"
@@ -6658,8 +6736,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Não há concessões de IP ativas no momento"
@@ -6797,6 +6875,10 @@ msgstr "Sincronização de horário"
msgid "Time interval for rekeying GTK"
msgstr "Intervalo de tempo para refazer o GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "Tempo esgotado"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Fuso Horário"
@@ -6836,8 +6918,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Tráfego"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Classe de tráfego"
@@ -6881,7 +6963,7 @@ msgid "Tx-Power"
msgstr "Potência de transmissão"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tipo"
@@ -6980,6 +7062,7 @@ msgstr "Formato de dados de resposta inesperado"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Desconhecido"
@@ -7427,7 +7510,7 @@ msgstr "WEP Sistema Aberto"
msgid "WEP Shared Key"
msgstr "WEP Chave Compartilhada"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP Senha"
@@ -7435,7 +7518,7 @@ msgstr "WEP Senha"
msgid "WMM Mode"
msgstr "Modo WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA Senha"
@@ -7447,6 +7530,10 @@ msgstr ""
"A cifragem WPA requer a instalação do wpa_supplicant (para modo cliente) ou "
"do hostapd (para modo AP ou ad-hoc)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr "Condição geral do WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Esperando pelo dispositivo..."
@@ -7485,7 +7572,7 @@ msgid "WireGuard VPN"
msgstr "VPN WireGuard"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Rede sem fio"
@@ -7516,13 +7603,13 @@ msgstr "Migração da configuração da rede sem fio"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Rede sem fio está desabilitada"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Rede sem fio está não conectada"
@@ -7646,7 +7733,7 @@ msgid "bridged"
msgstr "em ponte"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7668,11 +7755,11 @@ msgstr "criar:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7719,8 +7806,8 @@ msgstr "por exemplo: despejo"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "expirado"
@@ -7915,8 +8002,8 @@ msgstr "desconhecido"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "ilimitado"
@@ -7925,9 +8012,9 @@ msgstr "ilimitado"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8121,6 +8208,27 @@ msgstr "sim"
msgid "« Back"
msgstr "« Voltar"
+#~ msgid "Invalid value"
+#~ msgstr "Valor inválido"
+
+#~ 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 ""
+#~ "Especifique um TOS (Tipo de Serviço). Pode ser <code>inherit</code> (o "
+#~ "cabeçalho externo herda o valor do cabeçalho interno) ou um valor "
+#~ "hexadecimal começando com <code>0x</code> (opcional)."
+
+#~ 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 ""
+#~ "Defina uma Classe de Trânsito. Pode ser <code>inherit</code> (o cabeçalho "
+#~ "externo herda o valor do cabeçalho interno) ou um valor hexadecimal "
+#~ "começando com <code>0x</code> (opcional)."
+
#~ msgid "default-on (kernel)"
#~ msgstr "sempre ligado (kernel)"
diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po
index a77d3b16b6..797a2a9cd9 100644
--- a/modules/luci-base/po/ro/base.po
+++ b/modules/luci-base/po/ro/base.po
@@ -360,8 +360,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Interfață Absentă"
@@ -378,6 +378,10 @@ msgstr "Punct de Acces"
msgid "Actions"
msgstr "Actiune"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Rute active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
@@ -391,12 +395,12 @@ msgid "Active Connections"
msgstr "Conexiuni active"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Lease-uri DHCP active"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Lease-uri DHCPv6 active"
@@ -476,6 +480,14 @@ msgstr "Adauga interfata noua.."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Fisiere de tip hosts aditionale"
@@ -777,12 +789,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Statiile asociate"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Asocieri"
@@ -889,7 +901,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -938,10 +950,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -949,10 +961,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -962,7 +974,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitrate"
@@ -1033,7 +1045,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1111,7 +1123,7 @@ msgstr "Schimba parola administratorului pentru accesarea dispozitivului"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Canal"
@@ -1119,7 +1131,7 @@ msgstr "Canal"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1137,7 +1149,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1207,7 +1219,7 @@ msgstr "Închide lista..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1245,10 +1257,10 @@ msgstr ""
"autentificare mai puțin robuste, în special în mediile cu încărcare a "
"traficului mare."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1339,7 +1351,7 @@ msgid "Country Code"
msgstr "Codul de țară"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1364,8 +1376,8 @@ msgstr ""
msgid "Current power"
msgstr "Putere actuală"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1487,7 +1499,7 @@ msgid "DTIM Interval"
msgstr "Interval DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1674,6 +1686,7 @@ msgid "Disable this network"
msgstr "Dezactivează această rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1695,7 +1708,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Deconectează"
@@ -1738,10 +1752,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1781,8 +1795,8 @@ msgstr "Domeniul necesar"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Nu Fragmenta"
@@ -1978,8 +1992,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2026,7 +2047,7 @@ msgstr "Modul de incapsulare"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Criptare"
@@ -2361,7 +2382,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2599,9 +2620,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2625,7 +2646,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Numele gazdei ( hostname )"
@@ -2745,7 +2766,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Adresa IPv4"
@@ -2849,7 +2870,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Adresă IPv6"
@@ -2987,24 +3008,24 @@ msgstr ""
msgid "Inbound:"
msgstr "Intrare:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3049,7 +3070,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3146,6 +3167,16 @@ msgstr "Invalid"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3176,13 +3207,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Utilizator si/sau parola invalide! Incearcati din nou."
-#: 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 ""
@@ -3211,7 +3235,7 @@ msgstr "Alăturare/Conectare Rețea"
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3240,18 +3264,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3325,8 +3349,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3491,7 +3515,7 @@ msgid "Local IPv4 address"
msgstr "Adresa IPv4 locala"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3539,7 +3563,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3555,15 +3579,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3593,10 +3617,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3635,7 +3659,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3715,8 +3739,8 @@ msgstr "Putere maximă de transmisie"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3792,7 +3816,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Mod"
@@ -3914,6 +3938,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3951,7 +3982,7 @@ msgstr ""
msgid "Name"
msgstr "Nume"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Numele interfetei noi"
@@ -3962,15 +3993,19 @@ msgstr "Navigare"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Retea"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Utilitare de retea"
@@ -3988,8 +4023,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4016,6 +4051,10 @@ msgstr "Nu"
msgid "No DHCP Server configured for this interface"
msgstr "Nici un server DHCP configurat pentru aceasta interfata"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4048,16 +4087,16 @@ msgstr ""
msgid "No files found"
msgstr "Nici un fisier gasit"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Nici o informatie disponibila"
@@ -4113,8 +4152,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Zgomot"
@@ -4375,24 +4414,24 @@ msgstr "Iesire"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4405,6 +4444,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4416,10 +4459,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4437,18 +4480,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4692,10 +4735,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4877,7 +4920,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "Calitate"
@@ -4912,11 +4955,11 @@ msgstr ""
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Rată de recepție"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Rată de recepție / transmisie"
@@ -5052,7 +5095,7 @@ msgstr ""
msgid "Remove"
msgstr "Elimina"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Inlocuieste configuratia wireless"
@@ -5068,17 +5111,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5322,7 +5365,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5351,7 +5394,7 @@ msgstr "Cheile SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5469,6 +5512,11 @@ msgstr "Servicii"
msgid "Session expired"
msgstr "Sesiunea a expirat"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5516,7 +5564,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Interval de gardă scurt"
@@ -5541,14 +5589,14 @@ msgstr "Opreste aceasta interfata"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Semnal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Semnal / Zgomot"
@@ -5626,8 +5674,8 @@ msgstr "Sursa"
msgid "Source Address"
msgstr "Adresa sursei"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5788,18 +5836,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5813,18 +5867,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5838,7 +5892,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5847,6 +5901,10 @@ msgstr ""
msgid "Start"
msgstr "Pornește"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Prioritatea pornirii"
@@ -5876,6 +5934,11 @@ msgstr "Rute statice IPv4"
msgid "Static IPv6 Routes"
msgstr "Rute statice IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5913,6 +5976,10 @@ msgstr "Status"
msgid "Stop"
msgstr "Stop"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5927,7 +5994,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Trimite"
@@ -6025,7 +6092,7 @@ msgstr ""
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6087,7 +6154,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6097,6 +6164,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6182,12 +6255,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6269,8 +6342,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6386,6 +6459,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Fusul orar"
@@ -6421,8 +6498,8 @@ msgstr ""
msgid "Traffic"
msgstr "Trafic"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6466,7 +6543,7 @@ msgid "Tx-Power"
msgstr "Puterea TX"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Tip"
@@ -6563,6 +6640,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Necunoscut"
@@ -6985,7 +7063,7 @@ msgstr "Sistem deschis WEP"
msgid "WEP Shared Key"
msgstr "Sistem de cheie impartasita WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Parola WEP"
@@ -6993,7 +7071,7 @@ msgstr "Parola WEP"
msgid "WMM Mode"
msgstr "Mod WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Parola WPA"
@@ -7005,6 +7083,10 @@ msgstr ""
"Criptarea WPA necesita wpa_supplicant (pentru modul client) sau hostapd "
"(pentru modul AP sau ad-hoc) instalate."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7040,7 +7122,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Wireless"
@@ -7071,13 +7153,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Wireless-ul este dezactivat"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Wireless-ul este ne-asociat"
@@ -7188,7 +7270,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7210,11 +7292,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7261,8 +7343,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "expirat"
@@ -7453,8 +7535,8 @@ msgstr "necunoscut"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "nelimitat"
@@ -7463,9 +7545,9 @@ msgstr "nelimitat"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po
index 16c585e35a..8c0870d963 100644
--- a/modules/luci-base/po/ru/base.po
+++ b/modules/luci-base/po/ru/base.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LuCI: base\n"
"POT-Creation-Date: 2010-05-09 01:01+0300\n"
-"PO-Revision-Date: 2020-10-09 00:10+0000\n"
-"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n"
+"PO-Revision-Date: 2020-11-18 13:28+0000\n"
+"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>"
"\n"
"Language: ru\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
@@ -370,8 +370,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C идентификатор производителя"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Отсутствующий интерфейс"
@@ -388,6 +388,10 @@ msgstr "Точка доступа"
msgid "Actions"
msgstr "Действия"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Активный"
+
#: 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 ""
@@ -403,12 +407,12 @@ msgid "Active Connections"
msgstr "Активные соединения"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Активные DHCP аренды"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Активные DHCPv6 аренды"
@@ -489,6 +493,14 @@ msgstr "Добавить новый интерфейс..."
msgid "Add peer"
msgstr "Добавить узел (peer)"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "Добавить в черный список"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "Добавить в белый список"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Дополнительный hosts файл"
@@ -809,12 +821,12 @@ msgstr ""
"Назначьте префикс части, используя этот шестнадцатеричный ID вложенного "
"исправления для этого интерфейса."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Подключенные клиенты"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Ассоциации"
@@ -929,7 +941,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -983,10 +995,10 @@ msgstr ""
"Привязывать динамически к интерфейсам, а не по шаблону адреса (рекомендуется "
"по умолчанию для Linux)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -994,10 +1006,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1007,7 +1019,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Скорость"
@@ -1079,7 +1091,7 @@ msgstr "Ошибка вызова"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1166,7 +1178,7 @@ msgstr "Изменить пароль администратора для дос
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Канал"
@@ -1174,7 +1186,7 @@ msgstr "Канал"
msgid "Check filesystems before mount"
msgstr "Проверка файловых систем перед монтированием"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Проверьте эту опцию, чтобы удалить существующие сети беспроводного "
@@ -1194,7 +1206,7 @@ msgid "Choose mtdblock"
msgstr "Выберите MTD раздел"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1274,7 +1286,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1310,10 +1322,10 @@ 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "Вычислять исходящую контрольную сумму (опционально)."
@@ -1408,7 +1420,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Создать / назначить зону сетевого экрана"
@@ -1433,8 +1445,8 @@ msgstr "Запись событий cron"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1560,7 +1572,7 @@ msgid "DTIM Interval"
msgstr "Интервал DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1750,6 +1762,7 @@ msgid "Disable this network"
msgstr "Отключить данную сеть"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1771,7 +1784,8 @@ msgstr "Отбрасывать ответы внешней сети RFC1918"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Отключить"
@@ -1818,10 +1832,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr "Не создавать маршрут к узлу (опционально)."
@@ -1863,8 +1877,8 @@ msgstr "Требуется домен"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Не фрагментировать"
@@ -2073,8 +2087,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "Включить поддержку мультикаст трафика (опционально)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "Включите флаг DF (не Фрагментировать) инкапсулирующих пакетов."
@@ -2123,7 +2144,7 @@ msgstr "Режим инкапсуляции"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Шифрование"
@@ -2464,7 +2485,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "ГГц"
@@ -2702,9 +2723,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Хост"
@@ -2728,7 +2749,7 @@ msgstr "Содержимое Host-Uniq тега"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Имя хоста"
@@ -2848,7 +2869,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-адрес"
@@ -2952,7 +2973,7 @@ msgid "IPv6 support"
msgstr "Поддержка IPv6"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-адрес"
@@ -3103,24 +3124,24 @@ msgstr "Промежуток времени бездействия"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr "Входящий ключ"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr "Входящая сериализация"
@@ -3165,7 +3186,7 @@ msgstr "Внутреннее ограничение сертификата (Wild
msgid "Install protocol extensions..."
msgstr "Установить расширения протокола..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3264,6 +3285,19 @@ msgstr "Неверно"
msgid "Invalid Base64 key string"
msgstr "Неверная строка Base64 ключа"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+"Неверное значение TOS, ожидается <code>00...FF</code> или <code>inherit</"
+"code>"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+msgstr ""
+"Неверное значение TC, ожидается <code>00...FF</code> или <code>inherit</code>"
+
#: 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 ""
@@ -3298,13 +3332,6 @@ msgstr "Неверное шестнадцатеричное значение"
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 "Изолировать клиентов"
@@ -3332,7 +3359,7 @@ msgstr "Подключение к сети"
msgid "Join Network: Wireless Scan"
msgstr "Найденные точки доступа Wi-Fi"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Подключение к сети: %q"
@@ -3361,18 +3388,18 @@ msgstr "Пароль (ключ)"
msgid "Key #%d"
msgstr "Ключ №%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr "Ключ для исходящих пакетов (опционально)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3446,8 +3473,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Оставшееся время аренды"
@@ -3626,7 +3653,7 @@ msgid "Local IPv4 address"
msgstr "Локальный IPv4-адрес"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3681,7 +3708,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Локализовывать запросы"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Подключаться к BSSID"
@@ -3697,8 +3724,8 @@ msgstr "Запись запросов"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid ""
"Logical network from which to select the local endpoint if local IPv6 "
"address is empty and no WAN IPv6 is available (optional)."
@@ -3706,8 +3733,8 @@ msgstr ""
"Логическая сеть, из которой можно выбрать локальную конечную точку, если "
"локальный IPv6-адрес пуст и WAN IPv6 недоступен (опционально)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
"Логическая сеть, к которой будет добавлен туннель (мост) (опционально)."
@@ -3738,10 +3765,10 @@ msgid "MAC Address For The Actor"
msgstr "MAC-адрес для актора"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3780,7 +3807,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "МГц"
@@ -3862,8 +3889,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3939,7 +3966,7 @@ msgstr "Мобильный домен"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Режим"
@@ -4065,6 +4092,13 @@ msgstr "Переместить вниз"
msgid "Move up"
msgstr "Переместить вверх"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr "Мультикаст"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4102,7 +4136,7 @@ msgstr "Список NTP-серверов"
msgid "Name"
msgstr "Название"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Имя новой сети"
@@ -4113,15 +4147,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr "SSID сети"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Сетевые утилиты"
@@ -4139,8 +4177,8 @@ msgstr "Активность сетевого устройства (kernel: netd
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Сетевой интерфейс"
@@ -4167,6 +4205,10 @@ msgstr "Нет"
msgid "No DHCP Server configured for this interface"
msgstr "DHCP-сервер не настроен для этого интерфейса"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "Нет данных"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Без шифрования"
@@ -4199,16 +4241,16 @@ msgstr "Нет элементов в этом каталоге"
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Нет доступной информации"
@@ -4264,8 +4306,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Шум"
@@ -4544,24 +4586,24 @@ msgstr "Вне"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr "Исходящая сериализация"
@@ -4574,6 +4616,10 @@ msgstr "Исходящий интерфейс"
msgid "Output zone"
msgstr "Исходящая зона"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4585,10 +4631,10 @@ msgstr "Назначить MAC-адрес"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4606,18 +4652,18 @@ msgstr "Назначить MAC-адрес"
msgid "Override MTU"
msgstr "Назначить MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Отвергать TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4863,10 +4909,10 @@ msgstr "Пиры"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr "Выполнять сериализацию исходящих пакетов (опционально)."
@@ -5060,7 +5106,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI сотовый"
-#: 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:140
msgid "Quality"
msgstr "Качество"
@@ -5097,11 +5143,11 @@ msgstr "Порог RTS/CTS"
msgid "RX"
msgstr "Получение (RX)"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Скорость получения"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Скорость получения / Скорость отправки"
@@ -5240,7 +5286,7 @@ msgstr "Удаленный IPv6-адрес или FQDN"
msgid "Remove"
msgstr "Удалить"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Заменить настройку беспроводного соединения"
@@ -5256,17 +5302,17 @@ msgstr "Запрос IPv6 префикс длины"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr "Требуется сериализация входящих пакетов (опционально)."
@@ -5519,7 +5565,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5548,7 +5594,7 @@ msgstr "SSH ключи"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5671,6 +5717,11 @@ msgstr "Службы"
msgid "Session expired"
msgstr "Сессия истекла"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr "Сделать постоянным"
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Установить VPN в качестве маршрута по умолчанию"
@@ -5723,7 +5774,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "Число секунд с многочисленными ошибками (SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Короткий GI"
@@ -5748,14 +5799,14 @@ msgstr "Выключить этот интерфейс"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Сигнал"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Сигнал / шум"
@@ -5836,8 +5887,8 @@ msgstr "Источник"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr "Интерфейс источник"
@@ -6045,21 +6096,30 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Укажите TOS (Тип обслуживания)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+"Укажите TOS (тип обслуживание). Может быть <code>inherit</code> (значение "
+"внешнего заголовка наследуется из значения внутреннего заголовка) или "
+"шестнадцатеричное значение <code>00...FF</code> (необязательно)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
msgstr ""
-"Укажите TOS (Type of Service). Может быть как <code>inherit</code> (внешний "
-"заголовок наследует значение внутреннего заголовка), так и шестнадцатеричное "
-"значение, начинающееся с <code>0x</code> (опционально)."
+"Укажите TOS (тип обслуживание). Может быть <code>inherit</code> (значение "
+"внешнего заголовка наследуется из значения внутреннего заголовка) или "
+"шестнадцатеричное значение <code>00...FF</code> (необязательно)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6077,21 +6137,21 @@ msgstr ""
"Укажите значение TTL (Время Жизни) для инкапсуляции пакетов, по умолчанию "
"(64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</code> (optional)."
msgstr ""
-"Укажите TC (Traffic Class). Может быть как <code>inherit</code> (внешний "
-"заголовок наследует значение внутреннего заголовка), так и шестнадцатеричное "
-"значение, начинающееся с <code>0x</code> (опционально)."
+"Укажите TC (класс трафика). Может быть <code>inherit</code> (значение "
+"внешнего заголовка наследуется из значения внутреннего заголовка) или "
+"шестнадцатеричное значение <code>00...FF</code> (необязательно)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6109,7 +6169,7 @@ msgstr ""
"Укажите MTU (Максимальный Объем Данных), отличный от стандартного (1280 "
"байт)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Укажите закрытый ключ."
@@ -6118,6 +6178,10 @@ msgstr "Укажите закрытый ключ."
msgid "Start"
msgstr "Запустить"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr "Запустить WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Приоритет"
@@ -6147,6 +6211,11 @@ msgstr "Статические маршруты IPv4"
msgid "Static IPv6 Routes"
msgstr "Статические маршруты IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "Постоянная аренда"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Постоянные аренды"
@@ -6187,6 +6256,10 @@ msgstr "Состояние"
msgid "Stop"
msgstr "Остановить"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+msgstr "Остановить WPS"
+
#: 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"
@@ -6201,7 +6274,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Применить"
@@ -6301,7 +6374,7 @@ msgstr "TFTP сервер root"
msgid "TX"
msgstr "Передача (TX)"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Cкорость передачи"
@@ -6366,7 +6439,7 @@ msgid ""
msgstr ""
"Назначенный провайдеру префикс IPv6, обычно заканчивается на <code>::</code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6378,6 +6451,14 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "Не удалось загрузить config файл из-за следующей ошибки:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+msgstr ""
+"При подключении к скрытой беспроводной сети необходимо вручную указать "
+"правильный SSID"
+
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4129
msgid ""
"The device could not be reached within %d seconds after applying the pending "
@@ -6478,12 +6559,12 @@ msgid "The local IPv4 netmask"
msgstr "Локальная маска сети IPv4"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "Локальный IPv6-адрес, через который создается туннель (необязательно)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Имя сети уже используется"
@@ -6583,8 +6664,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Нет активных арендованных адресов"
@@ -6719,6 +6800,10 @@ msgstr "Синхронизация времени"
msgid "Time interval for rekeying GTK"
msgstr "Интервал регенерации ключей GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "Таймаут"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Часовой пояс"
@@ -6758,8 +6843,8 @@ msgstr "Трассировка"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr "Класс трафика (TC)"
@@ -6803,7 +6888,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Тип"
@@ -6900,6 +6985,7 @@ msgstr "Не ожидаемый формат данных ответа"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Неизвестно"
@@ -7344,7 +7430,7 @@ msgstr "Открытая система WEP"
msgid "WEP Shared Key"
msgstr "Общий ключ WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Пароль WEP"
@@ -7352,7 +7438,7 @@ msgstr "Пароль WEP"
msgid "WMM Mode"
msgstr "Режим WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Пароль WPA"
@@ -7364,6 +7450,10 @@ msgstr ""
"Необходимо установить wpa_supplicant (режим клиента) или hostapd (режим "
"точки доступа или ad-hoc) для поддержки шифрования WPA."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr "Состояние WPS"
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Ожидание подключения устройства..."
@@ -7404,7 +7494,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Wi-Fi"
@@ -7435,13 +7525,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Беспроводная сеть не связана"
@@ -7564,7 +7654,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7586,11 +7676,11 @@ msgstr "создать:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7637,8 +7727,8 @@ msgstr "например: dump"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "истекло"
@@ -7831,8 +7921,8 @@ msgstr "неизвестный"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "без ограничений"
@@ -7841,9 +7931,9 @@ msgstr "без ограничений"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
@@ -8037,6 +8127,27 @@ msgstr "да"
msgid "« Back"
msgstr "« Назад"
+#~ msgid "Invalid value"
+#~ msgstr "Неверное значение"
+
+#~ 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 ""
+#~ "Укажите TOS (Type of Service). Может быть как <code>inherit</code> "
+#~ "(внешний заголовок наследует значение внутреннего заголовка), так и "
+#~ "шестнадцатеричное значение, начинающееся с <code>0x</code> (опционально)."
+
+#~ 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 ""
+#~ "Укажите TC (Traffic Class). Может быть как <code>inherit</code> (внешний "
+#~ "заголовок наследует значение внутреннего заголовка), так и "
+#~ "шестнадцатеричное значение, начинающееся с <code>0x</code> (опционально)."
+
#~ msgid "default-on (kernel)"
#~ msgstr "default-on (ядро)"
diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po
index cb88d139c0..18936f0463 100644
--- a/modules/luci-base/po/sk/base.po
+++ b/modules/luci-base/po/sk/base.po
@@ -364,8 +364,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Chýbajúce rozhranie"
@@ -382,6 +382,10 @@ msgstr "Prístupový bod"
msgid "Actions"
msgstr "Akcie"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -395,12 +399,12 @@ msgid "Active Connections"
msgstr "Aktívne pripojenia"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktívne DHCP prenájmy"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktívne DHCPv6 prenájmy"
@@ -480,6 +484,14 @@ msgstr "Pridať nové rozhranie..."
msgid "Add peer"
msgstr "Pridať účastníka"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -781,12 +793,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Priradené stanice"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Priradenia"
@@ -894,7 +906,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -943,10 +955,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -954,10 +966,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Previazať rozhranie"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -967,7 +979,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bitová rýchlosť"
@@ -1038,7 +1050,7 @@ msgstr "Volanie zlyhalo"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1116,7 +1128,7 @@ msgstr "Zmení heslo správcu pre prístup k zariadeniu"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanál"
@@ -1124,7 +1136,7 @@ msgstr "Kanál"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1142,7 +1154,7 @@ msgid "Choose mtdblock"
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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1216,7 +1228,7 @@ msgstr "Zavrieť zoznam..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1248,10 +1260,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1339,7 +1351,7 @@ msgid "Country Code"
msgstr "Kód krajiny"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Vytvoriť / priradiť zónu brány firewall"
@@ -1364,8 +1376,8 @@ msgstr "Úroveň Cron záznamu"
msgid "Current power"
msgstr "Aktuálny výkon"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1492,7 +1504,7 @@ msgid "DTIM Interval"
msgstr "Interval DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1678,6 +1690,7 @@ msgid "Disable this network"
msgstr "Zakázať túto sieť"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1699,7 +1712,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Odpojiť"
@@ -1742,10 +1756,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1785,8 +1799,8 @@ msgstr "Vyžaduje sa doména"
msgid "Domain whitelist"
msgstr "Biela listina domén"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1984,8 +1998,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2032,7 +2053,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Šifrovanie"
@@ -2368,7 +2389,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2607,9 +2628,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Hostiteľ"
@@ -2635,7 +2656,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Názov hostiteľa"
@@ -2756,7 +2777,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Adresa IPv4"
@@ -2860,7 +2881,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Adresa IPv6"
@@ -2998,24 +3019,24 @@ msgstr "Časový limit nečinnosti"
msgid "Inbound:"
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
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3060,7 +3081,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Inštalovať rozšírenia protokolu..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3157,6 +3178,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3187,13 +3218,6 @@ msgstr ""
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 "Izolovať klientov"
@@ -3221,7 +3245,7 @@ msgstr "Pripojiť sa k sieti"
msgid "Join Network: Wireless Scan"
msgstr "Pripojiť sa k sieti: Prehľadanie bezdrôtovej siete"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Pripája sa k sieti: %q"
@@ -3250,18 +3274,18 @@ msgstr "Kľúč"
msgid "Key #%d"
msgstr "Kľúč #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3335,8 +3359,8 @@ msgstr "Čas prenájmu"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Zostávajúci čas prenájmu"
@@ -3504,7 +3528,7 @@ msgid "Local IPv4 address"
msgstr "Miestna adresa IPv4"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3552,7 +3576,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lokalizovať požiadavky"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3568,15 +3592,15 @@ msgstr ""
msgid "Logging"
msgstr "Zaznamenávanie"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3606,10 +3630,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3648,7 +3672,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3728,8 +3752,8 @@ msgstr "Maximálny vysielací výkon"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3805,7 +3829,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Režim"
@@ -3927,6 +3951,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3964,7 +3995,7 @@ msgstr "Kandidáti serverov NTP"
msgid "Name"
msgstr "Názov"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Názov novej siete"
@@ -3975,15 +4006,19 @@ msgstr "Navigácia"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Sieť"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Sieťové nástroje"
@@ -4001,8 +4036,8 @@ msgstr ""
msgid "Network device is not present"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "Sieťové rozhranie"
@@ -4029,6 +4064,10 @@ msgstr "Nie"
msgid "No DHCP Server configured for this interface"
msgstr "Pre toto rozhranie nie je nastavený server DHCP"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Žiadne šifrovanie"
@@ -4061,16 +4100,16 @@ msgstr "V tomto adresári nie sú žiadne položky"
msgid "No files found"
msgstr "Nenašli sa žiadne súbory"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Nie sú dostupné žiadne informácie"
@@ -4126,8 +4165,8 @@ msgstr "Žiadna priradená zóna"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Šum"
@@ -4388,24 +4427,24 @@ msgstr ""
msgid "Outbound:"
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
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4418,6 +4457,10 @@ msgstr "Výstupné rozhranie"
msgid "Output zone"
msgstr "Výstupná zóna"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4429,10 +4472,10 @@ msgstr "Prepísať MAC adresu"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4450,18 +4493,18 @@ msgstr "Prepísať MAC adresu"
msgid "Override MTU"
msgstr "Prepísať MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4705,10 +4748,10 @@ msgstr "Účastníci"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4890,7 +4933,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "Kvalita"
@@ -4925,11 +4968,11 @@ msgstr "Prah RTS/CTS"
msgid "RX"
msgstr "Prijímanie"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Rýchlosť prijímania"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Rýchl. prijímania /odosielania"
@@ -5065,7 +5108,7 @@ msgstr ""
msgid "Remove"
msgstr "Odstrániť"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5081,17 +5124,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5337,7 +5380,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5366,7 +5409,7 @@ msgstr "Kľúče SSH"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5484,6 +5527,11 @@ msgstr "Služby"
msgid "Session expired"
msgstr "Relácia vypršala"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5531,7 +5579,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5556,14 +5604,14 @@ msgstr "Vypnúť toto rozhranie"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signál"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Signál / Šum"
@@ -5641,8 +5689,8 @@ msgstr "Zdroj"
msgid "Source Address"
msgstr "Zdrojová adresa"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5806,18 +5854,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5831,18 +5885,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5856,7 +5910,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Tu určte kľúč s tajným šifrovaním."
@@ -5865,6 +5919,10 @@ msgstr "Tu určte kľúč s tajným šifrovaním."
msgid "Start"
msgstr "Spustiť"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Počiatočná priorita"
@@ -5894,6 +5952,11 @@ msgstr "Statické IPv4 smerovania"
msgid "Static IPv6 Routes"
msgstr "Statické IPv6 smerovania"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Statické prenájmy"
@@ -5931,6 +5994,10 @@ msgstr "Stav"
msgid "Stop"
msgstr "Zastaviť"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5945,7 +6012,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Odoslať"
@@ -6043,7 +6110,7 @@ msgstr "Koreňový priečinok servera TFTP"
msgid "TX"
msgstr "Odosielanie"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Rýchlosť odosielania"
@@ -6105,7 +6172,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6117,6 +6184,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "Konfiguračný súbor sa nepodarilo načítať, kvôli nasledovnej chybe:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6208,12 +6281,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Názov siete sa už používa"
@@ -6295,8 +6368,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6419,6 +6492,10 @@ msgstr "Synchronizácia času"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Časové pásmo"
@@ -6458,8 +6535,8 @@ msgstr ""
msgid "Traffic"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6503,7 +6580,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Typ"
@@ -6600,6 +6677,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Neznáme"
@@ -7024,7 +7102,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr "Zdieľaný kľúč WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Heslo WEP"
@@ -7032,7 +7110,7 @@ msgstr "Heslo WEP"
msgid "WMM Mode"
msgstr "Režim WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Heslo WPA"
@@ -7042,6 +7120,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Čaká sa na zariadenie..."
@@ -7077,7 +7159,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Bezdrôtová sieť"
@@ -7108,13 +7190,13 @@ msgstr "Migrácia bezdrôtovej konfigurácie"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Bezdrôtová sieť je zakázaná"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Bezdrôtová sieť nie je priradená"
@@ -7229,7 +7311,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7251,11 +7333,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7302,8 +7384,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7494,8 +7576,8 @@ msgstr "neznámy"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "neobmedzené"
@@ -7504,9 +7586,9 @@ msgstr "neobmedzené"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po
index 876972879e..729233645d 100644
--- a/modules/luci-base/po/sv/base.po
+++ b/modules/luci-base/po/sv/base.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-09-23 14:41+0000\n"
-"Last-Translator: Kristoffer Grundström <dsmusicever@gmail.com>\n"
+"PO-Revision-Date: 2020-11-22 15:35+0000\n"
+"Last-Translator: PontusÖsterlindh <pontus@osterlindh.com>\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/luci/sv/>"
"\n"
"Language: sv\n"
@@ -10,7 +10,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -134,7 +134,7 @@ msgstr ""
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
msgid "464XLAT (CLAT)"
-msgstr ""
+msgstr "464XLAT (CLAT)"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241
msgid "5 Minute Load:"
@@ -355,8 +355,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -373,6 +373,10 @@ msgstr "Accesspunkt"
msgid "Actions"
msgstr "Åtgärder"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "Aktiva <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-rutter"
@@ -386,12 +390,12 @@ msgid "Active Connections"
msgstr "Aktiva anslutningar"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Aktiva DHCP-kontrakt"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktiva DHCPv6-kontrakt"
@@ -450,7 +454,7 @@ msgstr "Lägg till VLAN"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
msgid "Add instance"
-msgstr ""
+msgstr "Lägg till instans"
#: 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
@@ -471,6 +475,14 @@ msgstr "Lägg till ett nytt gränssnitt..."
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Ytterligare värdfiler"
@@ -773,12 +785,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Associerade stationer"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -885,7 +897,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -934,10 +946,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -945,10 +957,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Bind gränssnitt"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -958,7 +970,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bithastighet"
@@ -1030,7 +1042,7 @@ msgstr "Anrop misslyckades"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1108,7 +1120,7 @@ msgstr "Ändrar administratörens lösenord för att få tillgång till enheten"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanal"
@@ -1116,7 +1128,7 @@ msgstr "Kanal"
msgid "Check filesystems before mount"
msgstr "Kontrollera filsystemen innan de monteras"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Bocka för det här alternativet för att ta bort befintliga nätverk från den "
@@ -1136,7 +1148,7 @@ msgid "Choose mtdblock"
msgstr "Välj 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1203,7 +1215,7 @@ msgstr "Stäng ner lista..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1235,10 +1247,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1326,7 +1338,7 @@ msgid "Country Code"
msgstr "Landskod"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1351,8 +1363,8 @@ msgstr "Loggnivå för Cron"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1474,7 +1486,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1661,6 +1673,7 @@ msgid "Disable this network"
msgstr "Inaktivera det här nätverket"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1682,7 +1695,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Avbryt anslutning"
@@ -1725,10 +1739,10 @@ msgstr ""
msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr "Cachea inte negativa svar, t.ex för icke-existerade domäner"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1770,8 +1784,8 @@ msgstr "Domän krävs"
msgid "Domain whitelist"
msgstr "Vitlista för domäner"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Fragmentera inte"
@@ -1970,8 +1984,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2018,7 +2039,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Kryptering"
@@ -2352,7 +2373,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2590,9 +2611,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Värd"
@@ -2616,7 +2637,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Värdnamn"
@@ -2736,7 +2757,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-Adress"
@@ -2840,7 +2861,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-adress"
@@ -2978,24 +2999,24 @@ msgstr ""
msgid "Inbound:"
msgstr "Inkommande:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3040,7 +3061,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Installera protokoll-förlängningar..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3137,6 +3158,16 @@ msgstr "Ogiltig"
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3167,13 +3198,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen."
-#: 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 "Isolera klienter"
@@ -3199,7 +3223,7 @@ msgstr "Anslut till nätverk"
msgid "Join Network: Wireless Scan"
msgstr "Anslut till nätverk: Trådlös skanning"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Ansluter till nätverk: %q"
@@ -3228,18 +3252,18 @@ msgstr "Nyckel"
msgid "Key #%d"
msgstr "Nyckel #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3313,8 +3337,8 @@ msgstr "Kontraktstid"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Återstående kontraktstid"
@@ -3480,7 +3504,7 @@ msgid "Local IPv4 address"
msgstr "Lokal IPv4-adress"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3528,7 +3552,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Lokalisera förfrågningar"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3544,15 +3568,15 @@ msgstr ""
msgid "Logging"
msgstr "Loggning"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3582,10 +3606,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3624,7 +3648,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3704,8 +3728,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3781,7 +3805,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Läge"
@@ -3903,6 +3927,13 @@ msgstr "Flytta ner"
msgid "Move up"
msgstr "Flytta upp"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS-ID"
@@ -3940,7 +3971,7 @@ msgstr "NTP-serverkandidater"
msgid "Name"
msgstr "Namn"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Namnet på det nya nätverket"
@@ -3951,15 +3982,19 @@ msgstr "Navigering"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Nätverk"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Nätverksverktyg"
@@ -3977,8 +4012,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4005,6 +4040,10 @@ msgstr "Nej"
msgid "No DHCP Server configured for this interface"
msgstr "Det finns ingen DHCP-server inställd för det här gränssnittet"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4037,16 +4076,16 @@ msgstr ""
msgid "No files found"
msgstr "Inga filer hittades"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Ingen information tillgänglig"
@@ -4102,8 +4141,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Buller"
@@ -4364,24 +4403,24 @@ msgstr "Ut"
msgid "Outbound:"
msgstr "Utgående:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4394,6 +4433,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4405,10 +4448,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4426,18 +4469,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4681,10 +4724,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4866,7 +4909,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI-telefoni"
-#: 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:140
msgid "Quality"
msgstr "Kvalité"
@@ -4901,11 +4944,11 @@ msgstr ""
msgid "RX"
msgstr "RT"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "RX-hastighet"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5041,7 +5084,7 @@ msgstr ""
msgid "Remove"
msgstr "Ta bort"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Ersätt trådlös konfiguration"
@@ -5057,17 +5100,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5311,7 +5354,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5340,7 +5383,7 @@ msgstr "SSH-nycklar"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5458,6 +5501,11 @@ msgstr "Tjänster"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5505,7 +5553,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5530,14 +5578,14 @@ msgstr "Stäng ner det här gränssnittet"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Signal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5615,8 +5663,8 @@ msgstr "Källa"
msgid "Source Address"
msgstr "Adress för källkod"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5777,18 +5825,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Ange en TaT (Typ av Tjänst)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5802,18 +5856,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5827,7 +5881,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Ange den hemliga krypteringsnyckeln här."
@@ -5836,6 +5890,10 @@ msgstr "Ange den hemliga krypteringsnyckeln här."
msgid "Start"
msgstr "Starta"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5865,6 +5923,11 @@ msgstr "Statiska IPv4-rutter"
msgid "Static IPv6 Routes"
msgstr "Statiska IPv6-rutter"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5902,6 +5965,10 @@ msgstr "Status"
msgid "Stop"
msgstr "Stopp"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5916,7 +5983,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Skicka in"
@@ -6014,7 +6081,7 @@ msgstr "Root för TFTP-server"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "TX-hastighet"
@@ -6076,7 +6143,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6086,6 +6153,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6171,12 +6244,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6258,8 +6331,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6375,6 +6448,10 @@ msgstr "Synkronisering av tid"
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Tidszon"
@@ -6412,8 +6489,8 @@ msgstr "Traceroute"
msgid "Traffic"
msgstr "Trafik"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6457,7 +6534,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Typ"
@@ -6554,6 +6631,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Okänd"
@@ -6976,7 +7054,7 @@ msgstr "Öppet System WEP"
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP-lösenordsfras"
@@ -6984,7 +7062,7 @@ msgstr "WEP-lösenordsfras"
msgid "WMM Mode"
msgstr "WMM-läge"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA-lösenordsfras"
@@ -6994,6 +7072,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Väntar på enheten..."
@@ -7030,7 +7112,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Trådlöst"
@@ -7061,13 +7143,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Trådlöst är avstängt"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Trådlöst är inte associerat"
@@ -7180,7 +7262,7 @@ msgid "bridged"
msgstr "bryggad"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7202,11 +7284,11 @@ msgstr "skapa:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7253,8 +7335,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "slutade gälla"
@@ -7445,8 +7527,8 @@ msgstr "okänd"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "obegränsad"
@@ -7455,9 +7537,9 @@ msgstr "obegränsad"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot
index 22425c56b0..412170ce11 100644
--- a/modules/luci-base/po/templates/base.pot
+++ b/modules/luci-base/po/templates/base.pot
@@ -339,8 +339,8 @@ msgid "ATU-C System Vendor ID"
msgstr ""
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr ""
@@ -357,6 +357,10 @@ msgstr ""
msgid "Actions"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -370,12 +374,12 @@ msgid "Active Connections"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr ""
@@ -455,6 +459,14 @@ msgstr ""
msgid "Add peer"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr ""
@@ -754,12 +766,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -866,7 +878,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr ""
@@ -915,10 +927,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -926,10 +938,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -939,7 +951,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr ""
@@ -1010,7 +1022,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1088,7 +1100,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr ""
@@ -1096,7 +1108,7 @@ msgstr ""
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1114,7 +1126,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1181,7 +1193,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1213,10 +1225,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1304,7 +1316,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1329,8 +1341,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1452,7 +1464,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr ""
@@ -1637,6 +1649,7 @@ msgid "Disable this network"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1658,7 +1671,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1701,10 +1715,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1744,8 +1758,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1941,8 +1955,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -1989,7 +2010,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2323,7 +2344,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr ""
@@ -2559,9 +2580,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr ""
@@ -2585,7 +2606,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2705,7 +2726,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr ""
@@ -2809,7 +2830,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -2947,24 +2968,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3009,7 +3030,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3106,6 +3127,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3136,13 +3167,6 @@ msgstr ""
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 ""
@@ -3168,7 +3192,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3197,18 +3221,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3282,8 +3306,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr ""
@@ -3448,7 +3472,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3496,7 +3520,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3512,15 +3536,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3550,10 +3574,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3592,7 +3616,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr ""
@@ -3672,8 +3696,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3749,7 +3773,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3871,6 +3895,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3908,7 +3939,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3919,15 +3950,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3945,8 +3980,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -3973,6 +4008,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4005,16 +4044,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr ""
@@ -4070,8 +4109,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr ""
@@ -4332,24 +4371,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4362,6 +4401,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4373,10 +4416,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4394,18 +4437,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4649,10 +4692,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4834,7 +4877,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4869,11 +4912,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5007,7 +5050,7 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5023,17 +5066,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5277,7 +5320,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5306,7 +5349,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr ""
@@ -5424,6 +5467,11 @@ msgstr ""
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5471,7 +5519,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5496,14 +5544,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5581,8 +5629,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5743,18 +5791,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5768,18 +5822,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5793,7 +5847,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5802,6 +5856,10 @@ msgstr ""
msgid "Start"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5831,6 +5889,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5868,6 +5931,10 @@ msgstr ""
msgid "Stop"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5882,7 +5949,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr ""
@@ -5980,7 +6047,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6042,7 +6109,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6052,6 +6119,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6137,12 +6210,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6224,8 +6297,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6339,6 +6412,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6374,8 +6451,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6419,7 +6496,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6516,6 +6593,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr ""
@@ -6938,7 +7016,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6946,7 +7024,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6956,6 +7034,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -6991,7 +7073,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr ""
@@ -7022,13 +7104,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7139,7 +7221,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7161,11 +7243,11 @@ msgstr ""
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7212,8 +7294,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr ""
@@ -7404,8 +7486,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr ""
@@ -7414,9 +7496,9 @@ msgstr ""
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po
index 94c8a88356..a043330b61 100644
--- a/modules/luci-base/po/tr/base.po
+++ b/modules/luci-base/po/tr/base.po
@@ -362,8 +362,8 @@ msgid "ATU-C System Vendor ID"
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
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:547
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Eksik Arayüz"
@@ -380,6 +380,10 @@ msgstr "Erişim Noktası"
msgid "Actions"
msgstr "Eylemler"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -395,12 +399,12 @@ msgid "Active Connections"
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Aktif DHCPv6 Rezervasyonları"
@@ -480,6 +484,14 @@ msgstr "Yeni arabirim ekle..."
msgid "Add peer"
msgstr "Eş ekle"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Ek Hosts dosyaları"
@@ -791,12 +803,12 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "İlişkili istasyonlar"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr ""
@@ -903,7 +915,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -952,10 +964,10 @@ msgid ""
"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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -963,10 +975,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -976,7 +988,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Bit hızı"
@@ -1047,7 +1059,7 @@ msgstr ""
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1125,7 +1137,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kanal"
@@ -1133,7 +1145,7 @@ msgstr "Kanal"
msgid "Check filesystems before mount"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
@@ -1151,7 +1163,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1220,7 +1232,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1252,10 +1264,10 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1343,7 +1355,7 @@ msgid "Country Code"
msgstr "Ülke Kodu"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr ""
@@ -1368,8 +1380,8 @@ msgstr ""
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1491,7 +1503,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1678,6 +1690,7 @@ msgid "Disable this network"
msgstr "Ağ devre dışı"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1699,7 +1712,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr ""
@@ -1742,10 +1756,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1785,8 +1799,8 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr ""
@@ -1982,8 +1996,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 ""
@@ -2030,7 +2051,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr ""
@@ -2364,7 +2385,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2600,9 +2621,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Ana bilgisayar"
@@ -2626,7 +2647,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr ""
@@ -2746,7 +2767,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-Adres"
@@ -2850,7 +2871,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-Adres"
@@ -2988,24 +3009,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3050,7 +3071,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3147,6 +3168,16 @@ msgstr ""
msgid "Invalid Base64 key string"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3177,13 +3208,6 @@ msgstr ""
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 ""
@@ -3209,7 +3233,7 @@ msgstr ""
msgid "Join Network: Wireless Scan"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr ""
@@ -3238,18 +3262,18 @@ msgstr ""
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
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3323,8 +3347,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Kalan kira süresi"
@@ -3489,7 +3513,7 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3537,7 +3561,7 @@ msgstr ""
msgid "Localise queries"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3553,15 +3577,15 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3591,10 +3615,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3633,7 +3657,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3713,8 +3737,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3790,7 +3814,7 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr ""
@@ -3912,6 +3936,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr ""
@@ -3949,7 +3980,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -3960,15 +3991,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Ağ"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr ""
@@ -3986,8 +4021,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4014,6 +4049,10 @@ msgstr ""
msgid "No DHCP Server configured for this interface"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr ""
@@ -4046,16 +4085,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Bilgi bulunmamaktadır"
@@ -4111,8 +4150,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Parazit"
@@ -4373,24 +4412,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4403,6 +4442,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4414,10 +4457,10 @@ 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4435,18 +4478,18 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4690,10 +4733,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4875,7 +4918,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr ""
@@ -4910,11 +4953,11 @@ msgstr ""
msgid "RX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr ""
@@ -5048,7 +5091,7 @@ msgstr ""
msgid "Remove"
msgstr "Kaldır"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr ""
@@ -5064,17 +5107,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5318,7 +5361,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5347,7 +5390,7 @@ msgstr "SSH-Anahtarları"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5466,6 +5509,11 @@ msgstr "Hizmetler"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5513,7 +5561,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5538,14 +5586,14 @@ msgstr ""
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Sinyal"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr ""
@@ -5623,8 +5671,8 @@ msgstr "Kaynak"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5785,18 +5833,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5810,18 +5864,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5835,7 +5889,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr ""
@@ -5844,6 +5898,10 @@ msgstr ""
msgid "Start"
msgstr "Başlat"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr ""
@@ -5873,6 +5931,11 @@ msgstr ""
msgid "Static IPv6 Routes"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr ""
@@ -5910,6 +5973,10 @@ msgstr "Durum"
msgid "Stop"
msgstr "Durdur"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5924,7 +5991,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Gönder"
@@ -6022,7 +6089,7 @@ msgstr ""
msgid "TX"
msgstr ""
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr ""
@@ -6084,7 +6151,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6094,6 +6161,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6179,12 +6252,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr ""
@@ -6266,8 +6339,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr ""
@@ -6381,6 +6454,10 @@ msgstr ""
msgid "Time interval for rekeying GTK"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr ""
@@ -6416,8 +6493,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6461,7 +6538,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr ""
@@ -6558,6 +6635,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Bilinmiyor"
@@ -6980,7 +7058,7 @@ msgstr ""
msgid "WEP Shared Key"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr ""
@@ -6988,7 +7066,7 @@ msgstr ""
msgid "WMM Mode"
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr ""
@@ -6998,6 +7076,10 @@ msgid ""
"and ad-hoc mode) to be installed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr ""
@@ -7035,7 +7117,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Kablosuz"
@@ -7066,13 +7148,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr ""
@@ -7185,7 +7267,7 @@ msgid "bridged"
msgstr "köprülü"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:401
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7207,11 +7289,11 @@ msgstr "oluşturma:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7258,8 +7340,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "sona ermiş"
@@ -7450,8 +7532,8 @@ msgstr "bilinmeyen"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "sınırsız"
@@ -7460,9 +7542,9 @@ msgstr "sınırsız"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po
index fe3049bf01..657fa7a08e 100644
--- a/modules/luci-base/po/uk/base.po
+++ b/modules/luci-base/po/uk/base.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2020-09-04 13:36+0000\n"
-"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n"
+"PO-Revision-Date: 2020-10-27 21:26+0000\n"
+"Last-Translator: Yevhen Chebotarev <gekinadres@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/luci/"
"uk/>\n"
"Language: uk\n"
@@ -11,7 +11,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.3.2-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -386,8 +386,8 @@ msgid "ATU-C System Vendor ID"
msgstr "Ідентифікатор постачальника системи ATU-C"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Відсутній інтерфейс"
@@ -404,6 +404,10 @@ msgstr "Точка доступу"
msgid "Actions"
msgstr "Дії"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 "<abbr title=\"Інтернет-протокол версії 4\">IPv4</abbr>-маршрути"
@@ -417,12 +421,12 @@ msgid "Active Connections"
msgstr "Активні підключення"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Активні оренди DHCP"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Активні оренди DHCPv6"
@@ -502,6 +506,14 @@ msgstr "Додати новий інтерфейс..."
msgid "Add peer"
msgstr "Додати вузол"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Додаткові файли hosts"
@@ -545,7 +557,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)"
@@ -819,12 +831,12 @@ msgstr ""
"Призначати для цього інтерфейсу частину префікса, використовуючи цей "
"шістнадцятковий ID субпрефікса."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Пов'язані станції"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Асоціації"
@@ -933,7 +945,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -987,10 +999,10 @@ msgstr ""
"Прив'язувати динамічно до інтерфейсів, а не за шаблоном адреси (типово для "
"linux, рекомендовано)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -998,10 +1010,10 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -1011,7 +1023,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "Швидкість потоку"
@@ -1083,7 +1095,7 @@ msgstr "Не вдалося здійснити виклик"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1169,7 +1181,7 @@ msgstr "Зміна пароля адміністратора для доступ
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Канал"
@@ -1177,7 +1189,7 @@ msgstr "Канал"
msgid "Check filesystems before mount"
msgstr "Перевірити файлову систему перед монтуванням"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "Позначте цей параметр, щоб видалити існуючі мережі з цього радіо."
@@ -1195,7 +1207,7 @@ msgid "Choose mtdblock"
msgstr "Виберіть 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1274,7 +1286,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1310,10 +1322,10 @@ 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1405,7 +1417,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Створити / Визначити зону брандмауера"
@@ -1430,8 +1442,8 @@ msgstr "Рівень виведення інформації Cron"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1560,7 +1572,7 @@ msgstr ""
"індикації доправлення трафіку\">DTIM</abbr>"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1750,6 +1762,7 @@ msgid "Disable this network"
msgstr "Вимкнути цю мережу"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1771,7 +1784,8 @@ msgstr "Відкидати висхідні RFC1918-відповіді"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Від'єднати"
@@ -1819,10 +1833,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1866,8 +1880,8 @@ msgstr "Потрібен домен"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Не фрагментувати"
@@ -2078,8 +2092,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "Увімкнути прапорець DF (Don't Fragment) для інкапсульованих пакетів."
@@ -2129,7 +2150,7 @@ msgstr "Режим інкапсуляції"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Шифрування"
@@ -2467,7 +2488,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "ГГц"
@@ -2515,7 +2536,7 @@ msgstr "Метрика шлюзу"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
msgid "General Settings"
-msgstr "Загальні параметри"
+msgstr "Головні налаштування"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:552
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
@@ -2709,9 +2730,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Вузол"
@@ -2735,7 +2756,7 @@ msgstr "Зміст тегу Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Назва (ім'я) вузла"
@@ -2855,7 +2876,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Адреса IPv4"
@@ -2961,7 +2982,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "Адреса IPv6"
@@ -3112,24 +3133,24 @@ msgstr "Тайм-аут бездіяльності"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3174,7 +3195,7 @@ msgstr "Внутрішнє обмеження сертифіката (Шабло
msgid "Install protocol extensions..."
msgstr "Інсталяція розширень протоколу..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3273,6 +3294,16 @@ msgstr "Неприпустимо"
msgid "Invalid Base64 key string"
msgstr "Неприпустимий рядок ключа Base64"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 ""
@@ -3306,13 +3337,6 @@ msgstr "Неприпустиме шістнадцяткове значення"
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 "Ізолювати клієнтів"
@@ -3340,7 +3364,7 @@ msgstr "Підключитися до мережі"
msgid "Join Network: Wireless Scan"
msgstr "Підключення до мережі: Сканування бездротових мереж"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Приєднання до мережі: %q"
@@ -3369,18 +3393,18 @@ msgstr "Ключ"
msgid "Key #%d"
msgstr "Ключ #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3454,8 +3478,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Час оренди, що лишився"
@@ -3642,7 +3666,7 @@ msgid "Local IPv4 address"
msgstr "Локальна адреса IPv4"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3697,7 +3721,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Локалізувати запити"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "Зблокувати з BSSID"
@@ -3713,15 +3737,15 @@ msgstr "Журнал запитів"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3753,10 +3777,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3795,7 +3819,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr " МГц"
@@ -3877,8 +3901,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3954,7 +3978,7 @@ msgstr "Домен мобільності"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Режим"
@@ -4078,6 +4102,13 @@ msgstr "Вниз"
msgid "Move up"
msgstr "Вгору"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "Ідентифікатор NAS"
@@ -4115,7 +4146,7 @@ msgstr "Сервери NTP – кандидати для синхронізац
msgid "Name"
msgstr "Назва"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "Назва нової мережі"
@@ -4126,15 +4157,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Мережеві утиліти"
@@ -4152,8 +4187,8 @@ msgstr "Активність мережевого пристрою (ядро: ne
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4180,6 +4215,10 @@ msgstr "Немає"
msgid "No DHCP Server configured for this interface"
msgstr "Немає DHCP-сервера, налаштованого для цього інтерфейсу"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Без шифрування"
@@ -4212,16 +4251,16 @@ msgstr "У цьому каталозі немає записів"
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Інформація відсутня"
@@ -4277,8 +4316,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Шум"
@@ -4555,24 +4594,24 @@ msgstr "Вих."
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4585,6 +4624,10 @@ msgstr "Вихідний інтерфейс"
msgid "Output zone"
msgstr "Вихідна зона"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4596,10 +4639,10 @@ msgstr "Перевизначити MAC-адресу"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4617,18 +4660,18 @@ msgstr "Перевизначити MAC-адресу"
msgid "Override MTU"
msgstr "Перевизначити MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Перевизначити TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4877,10 +4920,10 @@ msgstr "Вузли"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -5068,7 +5111,7 @@ msgstr "Публічний префікс надісланий на цей пр
msgid "QMI Cellular"
msgstr "Стільниковий QMI"
-#: 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:140
msgid "Quality"
msgstr "Якість"
@@ -5105,11 +5148,11 @@ msgstr "Поріг RTS/CTS"
msgid "RX"
msgstr "Одержано"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Швидкість приймання"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Швидкість прийм./перед."
@@ -5248,7 +5291,7 @@ msgstr ""
msgid "Remove"
msgstr "Видалити"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Замінити конфігурацію бездротової мережі"
@@ -5264,17 +5307,17 @@ msgstr "Запит довжини IPv6-префіксу"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5527,7 +5570,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5556,7 +5599,7 @@ msgstr "SSH-ключі"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5679,6 +5722,11 @@ msgstr "Сервіси"
msgid "Session expired"
msgstr "Час сеансу минув"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Встановити VPN типовим маршрутом"
@@ -5730,7 +5778,7 @@ msgstr ""
"\">SES</abbr>)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:208
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:80
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Short GI"
@@ -5755,14 +5803,14 @@ msgstr "Вимкнути цей інтерфейс"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Сигнал"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Сигнал / шум"
@@ -5843,8 +5891,8 @@ msgstr "Джерело"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -6012,18 +6060,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Вкажіть TOS (Type of Service — тип послуги)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:67
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:72
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -6039,18 +6093,18 @@ msgstr ""
"Вкажіть TTL (Time to Live — час життя) для пакета інкапсуляції, відмінний "
"від типового (64)."
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -6066,7 +6120,7 @@ msgstr ""
"Вкажіть <abbr title=\"Maximum Transmission Unit — максимальний блок "
"передавання даних\">MTU</abbr>, відмінний від типового (1280 байт)."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Вкажіть тут секретний ключ шифрування."
@@ -6075,6 +6129,10 @@ msgstr "Вкажіть тут секретний ключ шифрування."
msgid "Start"
msgstr "Запустити"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Стартовий пріоритет"
@@ -6104,6 +6162,11 @@ msgstr "Статичні маршрути IPv4"
msgid "Static IPv6 Routes"
msgstr "Статичні маршрути IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Статичні оренди"
@@ -6145,6 +6208,10 @@ msgstr "Стан"
msgid "Stop"
msgstr "Зупинити"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6159,7 +6226,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Надіслати"
@@ -6259,7 +6326,7 @@ msgstr "Корінь TFTP-сервера"
msgid "TX"
msgstr "Передано"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Швидкість передавання"
@@ -6325,7 +6392,7 @@ msgstr ""
"Призначений провайдером IPv6-префікс, зазвичай закінчується на <code>::</"
"code>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6337,6 +6404,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "Файл конфігурації не вдалося завантажити через таку помилку:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6437,12 +6510,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Назва мережі вже використовується"
@@ -6545,8 +6618,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Немає жодних активних оренд"
@@ -6684,6 +6757,10 @@ msgstr "Синхронізація часу"
msgid "Time interval for rekeying GTK"
msgstr "Інтервал часу для зміни ключа GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Часовий пояс"
@@ -6723,8 +6800,8 @@ msgstr "Трасування"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6768,7 +6845,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Тип"
@@ -6865,6 +6942,7 @@ msgstr "Несподіваний формат даних відповіді"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Невідомо"
@@ -7304,7 +7382,7 @@ msgstr "Відкрита система WEP"
msgid "WEP Shared Key"
msgstr "Спільний ключ WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Парольна фраза WEP"
@@ -7312,7 +7390,7 @@ msgstr "Парольна фраза WEP"
msgid "WMM Mode"
msgstr "Режим <abbr title=\"Wi-Fi Multimedia\">WMM</abbr>"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Парольна фраза WPA"
@@ -7324,6 +7402,10 @@ msgstr ""
"WPA-шифрування потребує інсталяції <em>wpa_supplicant</em> (для режиму "
"клієнта) або <em>hostapd</em> (для Точки доступу та режиму ad-hoc)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Очікуємо пристрій..."
@@ -7363,7 +7445,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Бездротові мережі"
@@ -7394,13 +7476,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Бездротову мережу не пов'язано"
@@ -7519,7 +7601,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7541,11 +7623,11 @@ msgstr "створити:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7592,8 +7674,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "минув"
@@ -7788,8 +7870,8 @@ msgstr "невідомий"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "необмежено"
@@ -7798,9 +7880,9 @@ msgstr "необмежено"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po
index d44404c327..a479b14abf 100644
--- a/modules/luci-base/po/vi/base.po
+++ b/modules/luci-base/po/vi/base.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-08-16 06:59+0200\n"
-"PO-Revision-Date: 2020-04-03 11:29+0000\n"
-"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
+"PO-Revision-Date: 2020-11-21 12:21+0000\n"
+"Last-Translator: Darias <DariasLuc@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/luci/"
"vi/>\n"
"Language: vi\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.0-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -371,8 +371,8 @@ msgid "ATU-C System Vendor ID"
msgstr "Hệ thống cung cấp ID ATU-C"
#: 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "Giao diện vắng mặt"
@@ -389,6 +389,10 @@ msgstr "Điểm truy cập"
msgid "Actions"
msgstr "Hành động"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr ""
+
#: 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 ""
@@ -406,12 +410,12 @@ msgid "Active Connections"
msgstr "kết nối đang hoạt động"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "Khởi động xin id từ DHCP"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "Khởi động xin id từ DHCPv6"
@@ -491,6 +495,14 @@ msgstr "Thêm giao diện mới..."
msgid "Add peer"
msgstr "Thêm cặp"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "Tập tin máy chủ(host) bổ sung"
@@ -534,7 +546,7 @@ msgstr "Quản trị"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
msgid "Advanced Settings"
-msgstr "Cài đặt nâng cao "
+msgstr "Cài đặt nâng cao"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
msgid "Aggregate Transmit Power (ACTATP)"
@@ -798,12 +810,12 @@ msgstr ""
"Chỉ định các phần tiền tố bằng tiền tố thức cấp ID dạng thập lục phân cho "
"giao diện này"
-#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "Trạm liên kết"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "Liên kết"
@@ -911,7 +923,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -965,10 +977,10 @@ msgstr ""
"Liên kết linh hoạt với các giao diện thay vì địa chỉ ký tự đại diện(được "
"khuyến nghị làm mặc định của linux) "
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -976,10 +988,10 @@ msgstr ""
msgid "Bind interface"
msgstr "Liên kết với giao diện"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -989,7 +1001,7 @@ msgstr "Liên kết đường hầm dữ liệu với giao diện này (tùy ch
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "tốc độ (bit)"
@@ -1060,7 +1072,7 @@ msgstr "Liên lạc thất bại"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1138,7 +1150,7 @@ msgstr "Thay đổi mật khẩu quản trị viên truy cập thiết bị"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "Kênh"
@@ -1146,7 +1158,7 @@ msgstr "Kênh"
msgid "Check filesystems before mount"
msgstr "Kiểm tra hệ thống tập tin trước khi gắn kết"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "Kiểm tra tùy chọn này để xóa các mạng hiện có khỏi đài này"
@@ -1164,7 +1176,7 @@ msgid "Choose mtdblock"
msgstr "chọn khối 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1237,7 +1249,7 @@ msgstr "Danh sách đã đóng ..."
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1273,10 +1285,10 @@ msgstr ""
"khóa. Cách khắc phục này có thể gây ra các vấn đề về khả năng tương tác và "
"giảm độ mạnh của khóa, đặc biệt là trong các môi trường có lưu lượng tải lớn."
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr ""
@@ -1367,7 +1379,7 @@ msgid "Country Code"
msgstr "Mã quốc gia"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "Tạo/ gán firewall-zone"
@@ -1392,8 +1404,8 @@ msgstr "Cấp độ lưu nhật ký Cron"
msgid "Current power"
msgstr "Năng lượng truyền hiện tại"
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:568
-#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:570
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1519,7 +1531,7 @@ msgid "DTIM Interval"
msgstr "Chu kỳ DTIM"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1706,6 +1718,7 @@ msgid "Disable this network"
msgstr "Vô hiệu hóa mạng này"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1727,7 +1740,8 @@ msgstr "Hủy phản hồi ngược RFC1918"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "Ngắt kết nối"
@@ -1775,10 +1789,10 @@ msgid "Do not cache negative replies, e.g. for not existing domains"
msgstr ""
"Không lưu trữ các phản hồi tiêu cực (ví dụ: các tên miền không tồn tại)"
-#: 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
+#: 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 "Do not create host route to peer (optional)."
msgstr ""
@@ -1818,8 +1832,8 @@ msgstr "Tên miền yêu cầu"
msgid "Domain whitelist"
msgstr "Danh sách tên miền được chấp nhận"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "Không phân mảnh"
@@ -2026,8 +2040,15 @@ msgstr ""
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-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: 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 "Kích hoạt cờ không phân mảnh cho các gói tin đã được đóng gói"
@@ -2045,7 +2066,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
msgid "Enabled"
-msgstr "Kích hoạt"
+msgstr "Bật"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
msgid "Enables IGMP snooping on this bridge"
@@ -2075,7 +2096,7 @@ msgstr "Chế độ đóng gói"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "Mã hóa"
@@ -2414,7 +2435,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2652,9 +2673,9 @@ msgid "Hide empty chains"
msgstr "Giấu chuỗi rỗng"
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "Máy chủ"
@@ -2678,7 +2699,7 @@ msgstr "Nội dung thẻ Host-Uniq"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "Tên host"
@@ -2798,7 +2819,7 @@ 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "Địa chỉ IPv4"
@@ -2902,7 +2923,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr ""
@@ -3051,24 +3072,24 @@ msgstr "Vô hiệu hóa đếm ngược"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3113,7 +3134,7 @@ msgstr ""
msgid "Install protocol extensions..."
msgstr "Đang cài đặt bản mở rộng cho giao thức..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3210,6 +3231,16 @@ msgstr "Giá trị nhập vào không hợp lí"
msgid "Invalid Base64 key string"
msgstr "Giá trị khóa Base64 không thích hợp"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "Địa chỉ ID Vlan không hợp lệ ! Chỉ cho phép ID giữa %d và %d"
@@ -3242,13 +3273,6 @@ msgstr "Giá trị không hợp lệ"
msgid "Invalid username and/or password! Please try again."
msgstr "Tên và mật mã không đúng. Xin thử lại "
-#: 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 "Cô lập máy khách"
@@ -3277,7 +3301,7 @@ msgstr "Hòa mạng"
msgid "Join Network: Wireless Scan"
msgstr "Hòa mạng: Quét mạng wifi"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "Hòa mạng: %q"
@@ -3306,18 +3330,18 @@ msgstr "Phím "
msgid "Key #%d"
msgstr "Phím %d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3391,8 +3415,8 @@ msgstr "Thời gian được cấp một địa chỉ IP"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "Leasetime còn lại"
@@ -3569,7 +3593,7 @@ msgid "Local IPv4 address"
msgstr "Địa chỉ IPv4 cục bộ"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3620,7 +3644,7 @@ msgstr ""
msgid "Localise queries"
msgstr "Tra vấn địa phương"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr ""
@@ -3636,15 +3660,15 @@ msgstr "Bản ghi tra vấn"
msgid "Logging"
msgstr "Lưu nhật ký"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3674,10 +3698,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3716,7 +3740,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3798,8 +3822,8 @@ msgstr "Năng lượng truyền tối đa"
#: 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3875,7 +3899,7 @@ msgstr "Tên miền di động"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "Chế độ"
@@ -3999,6 +4023,13 @@ msgstr ""
msgid "Move up"
msgstr ""
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -4036,7 +4067,7 @@ msgstr ""
msgid "Name"
msgstr "Tên"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr ""
@@ -4047,15 +4078,19 @@ msgstr "Điều hướng"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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 "Mạng "
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "Tiện ích mạng"
@@ -4073,8 +4108,8 @@ msgstr ""
msgid "Network device is not present"
msgstr "Thiết bị mạng không có"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4101,6 +4136,10 @@ msgstr "Không"
msgid "No DHCP Server configured for this interface"
msgstr "Không có máy chủ DHCP nào được cấu hình cho giao diện mạng này"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "Không mã hóa"
@@ -4133,16 +4172,16 @@ msgstr "Không có gì trong đường dẫn này"
msgid "No files found"
msgstr "Không tìm thấy tập tin"
-#: 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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "Không có thông tin"
@@ -4198,8 +4237,8 @@ msgstr "Không có vùng nào được gán"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "Nhiễu"
@@ -4475,24 +4514,24 @@ msgstr "Ra khỏi"
msgid "Outbound:"
msgstr "Ngoài ràng buộc:"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4505,6 +4544,10 @@ msgstr "Giao diện đầu ra"
msgid "Output zone"
msgstr "Vùng đầu ra"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4516,10 +4559,10 @@ msgstr "Ghi đè địa chỉ MAC"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4537,18 +4580,18 @@ msgstr "Ghi đè địa chỉ MAC"
msgid "Override MTU"
msgstr "Ghi đè MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "Ghi đè TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4794,10 +4837,10 @@ msgstr "Thiết bị mạng ngang hàng"
msgid "Perfect Forward Secrecy"
msgstr "Bí mật chuyển tiếp hoàn hảo"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4986,7 +5029,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "Chất lượng"
@@ -5023,11 +5066,11 @@ msgstr "Ngưỡng RTS/CTS"
msgid "RX"
msgstr "RX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "Tốc độ dữ liệu nhận"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "Tốc độ dữ liệu nhận/truyền"
@@ -5165,7 +5208,7 @@ msgstr ""
msgid "Remove"
msgstr "Loại bỏ"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "Thay thế cấu hình mạng không dây"
@@ -5181,17 +5224,17 @@ msgstr "Yêu cầu tiền tố IPv6 có độ dài"
msgid "Request timeout"
msgstr "Hết thời gian yêu cầu"
-#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5446,7 +5489,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr ""
@@ -5475,7 +5518,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5596,6 +5639,11 @@ msgstr "Dịch vụ "
msgid "Session expired"
msgstr "Phiên hết hạn"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "Chọn VPN là cách định tuyến mặc đinh"
@@ -5646,7 +5694,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr ""
@@ -5671,14 +5719,14 @@ msgstr "Tắt giao diện mạng này"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "Tín hiệu"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "Tín hiệu / Nhiễu"
@@ -5759,8 +5807,8 @@ msgstr "Nguồn"
msgid "Source Address"
msgstr "Địa chỉ nguồn"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5928,18 +5976,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "Chỉ định một TOS (kiểu dịch vụ)."
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5953,18 +6007,18 @@ msgid ""
"default (64)."
msgstr "Chỉ định một Thời gian sống(TTL) cho gói tin khác với mặc định(64). "
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5978,7 +6032,7 @@ msgid ""
"bytes)."
msgstr "Chỉ định một đơn vị truyền tối đa(MTU) khác với mặc định (1280 byte)"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "Chỉ định khóa mã hóa bí mật ở đây"
@@ -5987,6 +6041,10 @@ msgstr "Chỉ định khóa mã hóa bí mật ở đây"
msgid "Start"
msgstr "Bắt đầu "
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "Bắt đầu ưu tiên"
@@ -6016,6 +6074,11 @@ msgstr "Định tuyến tĩnh IPv4"
msgid "Static IPv6 Routes"
msgstr "Định tuyến tĩnh IPv6"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "Thống kê địa chỉ đã cấp phát"
@@ -6057,6 +6120,10 @@ msgstr "Trạng thái"
msgid "Stop"
msgstr "Dừng"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -6071,7 +6138,7 @@ msgid "Strong"
msgstr "Mạnh"
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "Trình "
@@ -6171,7 +6238,7 @@ msgstr "Máy chủ gốc TFTP"
msgid "TX"
msgstr "TX"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "Tốc độ truyền"
@@ -6235,7 +6302,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6245,6 +6312,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr ""
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6340,12 +6413,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "Tên mạng đã được sử dụng"
@@ -6447,8 +6520,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "Không có máy được cấp IP nào hoạt động"
@@ -6580,6 +6653,10 @@ msgstr "Đồng bộ thời gian"
msgid "Time interval for rekeying GTK"
msgstr "Chu kỳ tạo lại mật khẩu mới GTK"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "Múi giờ "
@@ -6619,8 +6696,8 @@ msgstr "Theo dấu định tuyến"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6664,7 +6741,7 @@ msgid "Tx-Power"
msgstr "Năng lượng truyền"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "Loại "
@@ -6761,6 +6838,7 @@ msgstr "Định dạng dữ liệu trả lời bất ngờ"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "Không xác định"
@@ -7194,7 +7272,7 @@ msgstr "Hệ thống mở WEP"
msgid "WEP Shared Key"
msgstr "Khóa dùng chung WEP"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "Mật khẩu WEP"
@@ -7202,7 +7280,7 @@ msgstr "Mật khẩu WEP"
msgid "WMM Mode"
msgstr "Chế độ WMM"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "Mật khẩu WPA"
@@ -7214,6 +7292,10 @@ msgstr ""
"Mã hóa WPA yêu cầu phải cài đặt wpa_supplicant (đối với chế độ máy khách) "
"hoặc hostapd (đối với chế độ AP và ad-hoc)."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "Đợi thiết bị..."
@@ -7252,7 +7334,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "Không dây"
@@ -7283,13 +7365,13 @@ msgstr "Di chuyển cấu hình không dây"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is disabled"
msgstr "Thiết bị không dây đang bị vô hiệu hóa"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "Chưa được gắn với thiết bị không dây"
@@ -7409,7 +7491,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7431,11 +7513,11 @@ msgstr "Tạo:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7482,8 +7564,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "Hết hạn"
@@ -7676,8 +7758,8 @@ msgstr "Không xác định"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "Không giới hạn"
@@ -7686,9 +7768,9 @@ msgstr "Không giới hạn"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po
index 54b8a3133b..c2aa06babb 100644
--- a/modules/luci-base/po/zh_Hans/base.po
+++ b/modules/luci-base/po/zh_Hans/base.po
@@ -4,15 +4,15 @@
#
msgid ""
msgstr ""
-"PO-Revision-Date: 2020-10-10 13:26+0000\n"
-"Last-Translator: Haoyu <1902457591@qq.com>\n"
+"PO-Revision-Date: 2020-11-22 15:35+0000\n"
+"Last-Translator: Eric <spice2wolf@gmail.com>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luci/zh_Hans/>\n"
"Language: zh_Hans\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.4-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -316,7 +316,7 @@ msgstr "ARP 验证"
#: 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 模式下将从机视为已启动"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
msgid "ARP monitoring is not supported for the selected policy!"
@@ -363,8 +363,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C 系统供应商 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "接口缺失"
@@ -381,6 +381,10 @@ msgstr "接入点 AP"
msgid "Actions"
msgstr "动作"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "活动"
+
#: 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 "活动的 <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> 路由"
@@ -394,18 +398,18 @@ msgid "Active Connections"
msgstr "活动连接"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "已分配的 DHCP 租约"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "已分配的 DHCPv6 租约"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
msgid "Active-Backup policy (active-backup, 1)"
-msgstr ""
+msgstr "主动备份策略(主动备份,1)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3684
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
@@ -419,7 +423,7 @@ msgstr "自适应负载均衡 (balance-alb, 6)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
-msgstr ""
+msgstr "自适应传输负载均衡 (balance-tlb, 5)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:2167
#: modules/luci-base/htdocs/luci-static/resources/form.js:2170
@@ -434,7 +438,7 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:827
msgid "Add"
-msgstr "添加"
+msgstr "新增"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
msgid "Add ATM Bridge"
@@ -479,6 +483,14 @@ msgstr "添加新接口…"
msgid "Add peer"
msgstr "添加对等点"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "添加到黑名单"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "添加到白名单"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "额外的 HOSTS 文件"
@@ -506,7 +518,7 @@ msgstr "接入本地中继桥的地址"
#: 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
@@ -530,21 +542,21 @@ msgstr "总发射功率(ACTATP)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
msgid "Aggregation Selection Logic"
-msgstr ""
+msgstr "聚合选择逻辑"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
-msgstr ""
+msgstr "聚合器:所有从机或没有从机(稳定,0)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
msgid ""
"Aggregator: Chosen by the largest number of ports + slave added/removed or "
"state changes (count, 2)"
-msgstr ""
+msgstr "聚合器:按最大端口数 + 添加/删除的从机或状态更改选择(计数,2)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
-msgstr ""
+msgstr "聚合器:从机添加/删除或状态改变(带宽,1)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
msgid "Alert"
@@ -636,14 +648,12 @@ msgid "Always announce default router"
msgstr "总是通告默认路由"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
-#, fuzzy
msgid "Always off (kernel: none)"
-msgstr "始终关闭(kmod-ledtrig:无)"
+msgstr "始终关闭(kernel: 无)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
-#, fuzzy
msgid "Always on (kernel: default-on)"
-msgstr "始终开启 (kmod-ledtrig-default-on)"
+msgstr "始终开启 (kernel: 默认开启)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
msgid ""
@@ -781,12 +791,12 @@ msgid ""
"Assign prefix parts using this hexadecimal subprefix ID for this interface."
msgstr "将此十六进制子 ID 前缀分配给此接口。"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "已连接站点"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "关联数"
@@ -893,7 +903,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -944,10 +954,10 @@ msgid ""
"linux default)"
msgstr "动态绑定到接口而不是通配符地址(推荐为 linux 默认值)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -955,10 +965,10 @@ msgstr "动态绑定到接口而不是通配符地址(推荐为 linux 默认
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -968,7 +978,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "传输速率"
@@ -978,7 +988,7 @@ msgstr "忽略虚假空域名解析"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
msgid "Bonding Policy"
-msgstr ""
+msgstr "绑定策略"
#: modules/luci-base/htdocs/luci-static/resources/network.js:2877
#: modules/luci-compat/luasrc/model/network.lua:1421
@@ -1000,7 +1010,7 @@ msgstr "开机自动运行"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
msgid "Broadcast policy (broadcast, 3)"
-msgstr ""
+msgstr "广播策略(广播,3)"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2810
#: modules/luci-base/htdocs/luci-static/resources/ui.js:3799
@@ -1039,7 +1049,7 @@ msgstr "调用失败"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1121,7 +1131,7 @@ msgstr "更改访问设备的管理员密码"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "信道"
@@ -1129,7 +1139,7 @@ msgstr "信道"
msgid "Check filesystems before mount"
msgstr "在挂载前检查文件系统"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "选中此选项以从无线中删除现有网络。"
@@ -1147,7 +1157,7 @@ msgid "Choose mtdblock"
msgstr "选择 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1218,7 +1228,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1240,7 +1250,7 @@ msgstr "执行命令失败"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
msgid "Comment"
-msgstr "备注"
+msgstr "注解"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1634
msgid ""
@@ -1253,12 +1263,12 @@ 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
-msgstr ""
+msgstr "计算传出校验和(可选)。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4028
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
@@ -1298,7 +1308,7 @@ msgstr "尝试连接失败"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
msgid "Connection attempt failed."
-msgstr ""
+msgstr "尝试连接失败。"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
@@ -1310,11 +1320,11 @@ msgstr "连接"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
-msgstr ""
+msgstr "当所有 ARP IP 目标都可达时从机启动(全部,1)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
-msgstr ""
+msgstr "当任何 ARP IP 目标可达时从属启动(任何,0)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
@@ -1346,7 +1356,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "创建/分配防火墙区域"
@@ -1371,8 +1381,8 @@ msgstr "Cron 日志级别"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1392,9 +1402,8 @@ msgstr ""
"自定义文件(证书、脚本)会保留在系统上。若无需保留,请先执行恢复出厂设置。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
-#, fuzzy
msgid "Custom flash interval (kernel: timer)"
-msgstr "自定义刷新间隔(kmod-ledtrig-timer)"
+msgstr "自定义刷新间隔(kernel: 定时器)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
msgid ""
@@ -1496,7 +1505,7 @@ msgid "DTIM Interval"
msgstr "DTIM 间隔"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DUID"
@@ -1595,7 +1604,7 @@ msgstr "目标地址"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
msgid "Destination port"
-msgstr ""
+msgstr "目标端口"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
@@ -1631,7 +1640,7 @@ msgstr "设备正在重启…"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
msgid "Device not managed by ModemManager."
-msgstr ""
+msgstr "设备不受制猫(解调管理器)管理。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
msgid "Device unreachable!"
@@ -1639,7 +1648,7 @@ msgstr "无法连接到设备!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
msgid "Device unreachable! Still waiting for device..."
-msgstr "无法连接到设备!仍旧等待设备…"
+msgstr "设备无法访问。仍在等待设备……"
#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
msgid "Diagnostics"
@@ -1685,6 +1694,7 @@ msgid "Disable this network"
msgstr "禁用此网络"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1706,9 +1716,10 @@ msgstr "丢弃 RFC1918 上行响应数据"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
-msgstr "断开连接"
+msgstr "断开"
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
@@ -1717,7 +1728,7 @@ msgstr "尝试断开连接失败"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
msgid "Disconnection attempt failed."
-msgstr ""
+msgstr "尝试断开连接失败。"
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
#: modules/luci-base/htdocs/luci-static/resources/form.js:2861
@@ -1752,12 +1763,12 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
-msgstr ""
+msgstr "不要为节点创建主机路由(可选)。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
msgid "Do not forward requests that cannot be answered by public name servers"
@@ -1769,7 +1780,7 @@ msgstr "不转发本地网络的反向查询"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
msgid "Do not send a hostname"
-msgstr ""
+msgstr "不发送主机名"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "Do you really want to delete \"%s\" ?"
@@ -1795,8 +1806,8 @@ msgstr "忽略空域名解析"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "禁止分片"
@@ -1810,11 +1821,11 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
msgid "Down"
-msgstr "下移"
+msgstr "下行"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
msgid "Down Delay"
-msgstr ""
+msgstr "下行延迟"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
msgid "Download backup"
@@ -1834,7 +1845,7 @@ msgstr "拖动以重排"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
msgid "Drop Duplicate Frames"
-msgstr ""
+msgstr "丢弃重复帧"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
msgid "Dropbear Instance"
@@ -1995,10 +2006,17 @@ msgstr "启用所有CPU的数据包控制。 可能有助于或阻碍网络速
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75
msgid "Enable rx checksum"
-msgstr ""
+msgstr "启用rx校验"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr "启用多播传输支持(可选)。"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "启用后报文的 DF(禁止分片)标志。"
@@ -2010,7 +2028,7 @@ msgstr "启用此网络"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:79
msgid "Enable tx checksum"
-msgstr ""
+msgstr "启用tx校验"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
@@ -2045,7 +2063,7 @@ msgstr "封装模式"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "加密"
@@ -2094,11 +2112,11 @@ msgstr "以太网交换机"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
msgid "Every 30 seconds (slow, 0)"
-msgstr ""
+msgstr "每30秒(慢,0)"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
msgid "Every second (fast, 1)"
-msgstr ""
+msgstr "每秒(快,1)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
msgid "Exclude interfaces"
@@ -2126,7 +2144,7 @@ msgstr "需要:%s"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
msgid "Expecting: non-empty value"
-msgstr ""
+msgstr "需要:非空值"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
msgid "Expires"
@@ -2167,11 +2185,11 @@ msgstr "额外的 SSH 命令选项"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83
msgid "Extra pppd options"
-msgstr ""
+msgstr "额外的pppd选项"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81
msgid "Extra sstpc options"
-msgstr ""
+msgstr "额外的sstpc选项"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456
msgid "FT over DS"
@@ -2228,15 +2246,15 @@ msgstr "过滤无用包"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
msgid "Filtering for all slaves, no validation"
-msgstr ""
+msgstr "过滤所有从属,不进行验证"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
msgid "Filtering for all slaves, validation only for active slave"
-msgstr ""
+msgstr "过滤所有从属,仅对活动从属进行验证"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
msgid "Filtering for all slaves, validation only for backup slaves"
-msgstr ""
+msgstr "筛选所有从属,仅验有证备份的从属"
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
@@ -2381,7 +2399,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2392,19 +2410,19 @@ msgstr "仅 GPRS"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
msgid "GRE tunnel over IPv4"
-msgstr ""
+msgstr "承载于IPv4上的GRE通道"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
msgid "GRE tunnel over IPv6"
-msgstr ""
+msgstr "承载于IPv6上的GRE通道"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
msgid "GRETAP tunnel over IPv4"
-msgstr ""
+msgstr "承载于IPv4上的GRETAP通道"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
msgid "GRETAP tunnel over IPv6"
-msgstr ""
+msgstr "承载于IPv6上的GRETAP通道"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
msgid "Gateway"
@@ -2444,7 +2462,7 @@ msgstr "生成配置"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
msgid "Generate Key"
-msgstr ""
+msgstr "生成密钥"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1460
msgid "Generate PMK locally"
@@ -2487,7 +2505,7 @@ msgstr "授予对DHCP配置的访问权限"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:102
msgid "Grant access to DHCP status display"
-msgstr "授予对DHCP状态显示的访问权限"
+msgstr "授予对DHCP配置的访问权限"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
msgid "Grant access to DSL status display"
@@ -2499,7 +2517,7 @@ msgstr "授予对LuCI OpenConnect过程的访问权限"
#: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
msgid "Grant access to LuCI Wireguard procedures"
-msgstr ""
+msgstr "授予对LuCI Wireguard过程的访问权限"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
msgid "Grant access to SSH configuration"
@@ -2515,27 +2533,27 @@ msgstr "授予对crontab配置的访问权限"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
msgid "Grant access to firewall status"
-msgstr ""
+msgstr "授予访问防火墙状态的权限"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
msgid "Grant access to flash operations"
-msgstr ""
+msgstr "授予访问 Flash 操作的权限"
#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:86
msgid "Grant access to main status display"
-msgstr ""
+msgstr "授予访问主要状态显示的权限"
#: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
msgid "Grant access to mmcli"
-msgstr ""
+msgstr "授予访问 mmcli 的权限"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
msgid "Grant access to mount configuration"
-msgstr ""
+msgstr "授予对挂载配置的访问权限"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
msgid "Grant access to network configuration"
-msgstr ""
+msgstr "授予访问网络配置的权限"
#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:46
msgid "Grant access to network diagnostic tools"
@@ -2598,9 +2616,8 @@ msgid "Header Error Code Errors (HEC)"
msgstr "请求头错误代码错误(HEC)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
-#, fuzzy
msgid "Heartbeat interval (kernel: heartbeat)"
-msgstr "心跳间隔(kmod-ledtrig-heartbeat)"
+msgstr "心跳间隔(kernel: 心跳)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
msgid ""
@@ -2618,9 +2635,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "主机"
@@ -2644,7 +2661,7 @@ msgstr "Host-Uniq 标签内容"
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "主机名"
@@ -2764,7 +2781,7 @@ msgid "IPv4+IPv6"
msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4 地址"
@@ -2868,7 +2885,7 @@ msgid "IPv6 support"
msgstr "IPv6 支持"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6 地址"
@@ -3012,24 +3029,24 @@ msgstr "活动超时"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3074,16 +3091,15 @@ msgstr "内部证书约束(通配符)"
msgid "Install protocol extensions..."
msgstr "安装扩展协议…"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
msgstr "仅连接到 BSSID 为 <code>%h</code> 的网络,而不是其它 SSID 相同的网络。"
#: modules/luci-compat/luasrc/view/cbi/map.htm:43
-#, fuzzy
msgid "Insufficient permissions to read UCI configuration."
-msgstr "权限不足,无法读取UCI配置。"
+msgstr "权限不足,无法读取 UCI 配置。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:464
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
@@ -3172,6 +3188,16 @@ msgstr "无效"
msgid "Invalid Base64 key string"
msgstr "无效的 Base64 密钥"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "无效的 VLAN ID!只有 %d 和 %d 之间的 ID 有效。"
@@ -3202,13 +3228,6 @@ msgstr "无效 16 进制值"
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 "隔离客户端"
@@ -3234,7 +3253,7 @@ msgstr "加入网络"
msgid "Join Network: Wireless Scan"
msgstr "加入网络:搜索无线"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "加入网络:%q"
@@ -3253,7 +3272,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
@@ -3263,18 +3282,18 @@ msgstr "密码"
msgid "Key #%d"
msgstr "密码 #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3348,8 +3367,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "剩余租期"
@@ -3456,7 +3475,7 @@ msgstr "允许 RFC1918 响应的域名列表"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
msgid "List of domains to force to an IP address."
-msgstr ""
+msgstr "强制使用IP地址的域列表。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
msgid "List of hosts that supply bogus NX domain results"
@@ -3519,15 +3538,15 @@ msgstr "要分配的本地 IP 地址"
#: 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 "本地 IPv4 地址"
+msgstr "本机 IPv4 地址"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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 "本地 IPv6 地址"
+msgstr "本机 IPv6 地址"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
msgid "Local Service Only"
@@ -3570,7 +3589,7 @@ msgstr "如果有多个 IP 可用,则根据请求来源的子网来本地化
msgid "Localise queries"
msgstr "本地化查询"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "锁定到 BSSID"
@@ -3586,15 +3605,15 @@ msgstr "记录查询日志"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3624,10 +3643,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3666,7 +3685,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3746,8 +3765,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3823,7 +3842,7 @@ msgstr "移动域"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "模式"
@@ -3945,6 +3964,13 @@ msgstr "下移"
msgid "Move up"
msgstr "上移"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "NAS ID"
@@ -3982,7 +4008,7 @@ msgstr "候选 NTP 服务器"
msgid "Name"
msgstr "名称"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "新网络的名称"
@@ -3993,15 +4019,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "网络工具"
@@ -4011,17 +4041,16 @@ msgid "Network boot image"
msgstr "网络启动镜像"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
-#, fuzzy
msgid "Network device activity (kernel: netdev)"
-msgstr "网络设备活动(kmod-ledtrig-netdev)"
+msgstr "网络设备活动 (kernel: 网络设备)"
#: 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr "网络接口"
@@ -4048,6 +4077,10 @@ msgstr "否"
msgid "No DHCP Server configured for this interface"
msgstr "本接口未配置 DHCP 服务器"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr "没有数据"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "无加密"
@@ -4080,16 +4113,16 @@ msgstr "此目录中没有内容"
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "无可用信息"
@@ -4145,8 +4178,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "噪声"
@@ -4413,24 +4446,24 @@ msgstr "出口"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4443,6 +4476,10 @@ msgstr "网络出口"
msgid "Output zone"
msgstr "出口区域"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4454,10 +4491,10 @@ msgstr "重设 MAC 地址"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4475,18 +4512,18 @@ msgstr "重设 MAC 地址"
msgid "Override MTU"
msgstr "重设 MTU"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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 "重设 TOS"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4724,16 +4761,16 @@ msgstr "Peer 地址缺失"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:115
msgid "Peers"
-msgstr "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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4917,7 +4954,7 @@ msgstr "分配到此设备的公共前缀,用以分发到客户端。"
msgid "QMI Cellular"
msgstr "QMI 蜂窝"
-#: 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:140
msgid "Quality"
msgstr "质量"
@@ -4953,11 +4990,11 @@ msgstr "RTS/CTS 阈值"
msgid "RX"
msgstr "接收"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "接收速率"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "接收速率/发送速率"
@@ -5093,7 +5130,7 @@ msgstr ""
msgid "Remove"
msgstr "移除"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "重置无线配置"
@@ -5109,17 +5146,17 @@ msgstr "请求指定长度的 IPv6 前缀"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5367,7 +5404,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "SNR"
@@ -5396,7 +5433,7 @@ msgstr "SSH 密钥"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5516,6 +5553,11 @@ msgstr "服务"
msgid "Session expired"
msgstr "会话已过期"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr "设置静态"
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr "将 VPN 设置为默认路由"
@@ -5565,7 +5607,7 @@ msgid "Severely Errored Seconds (SES)"
msgstr "严重误码秒(SES)"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "Short GI"
@@ -5590,14 +5632,14 @@ msgstr "关闭此接口"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "信号"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "信号/噪声"
@@ -5677,8 +5719,8 @@ msgstr "源地址"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5841,18 +5883,24 @@ msgstr ""
msgid "Specify a TOS (Type of Service)."
msgstr "指定 TOS(服务类型)。"
-#: 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-gre/htdocs/luci-static/resources/protocol/gretap.js:79
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5866,18 +5914,18 @@ msgid ""
"default (64)."
msgstr "为封装数据包设置 TTL(生存时间),缺省值:64。"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5891,7 +5939,7 @@ msgid ""
"bytes)."
msgstr "设置 MTU(最大传输单位),缺省值:1280 bytes。"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "在此指定密钥。"
@@ -5900,6 +5948,10 @@ msgstr "在此指定密钥。"
msgid "Start"
msgstr "启动"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
msgstr "启动优先级"
@@ -5929,6 +5981,11 @@ msgstr "静态 IPv4 路由"
msgid "Static IPv6 Routes"
msgstr "静态 IPv6 路由"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr "静态租约"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "静态地址分配"
@@ -5968,6 +6025,10 @@ msgstr "状态"
msgid "Stop"
msgstr "停止"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5982,7 +6043,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "提交"
@@ -6080,7 +6141,7 @@ msgstr "TFTP 服务器根目录"
msgid "TX"
msgstr "发送"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "发送速率"
@@ -6142,7 +6203,7 @@ msgid ""
"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
msgstr "运营商特定的 IPv6 前缀,通常以 <code>::</code> 为结尾"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6154,6 +6215,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "由于以下错误,配置文件无法被加载:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6246,12 +6313,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "网络名称已被使用"
@@ -6343,8 +6410,8 @@ msgstr "不支持所上传的映像文件格式,请选择适合当前平台的
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "没有已分配的租约"
@@ -6466,6 +6533,10 @@ msgstr "时间同步"
msgid "Time interval for rekeying GTK"
msgstr "重新加密 GTK 的时间间隔"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "时区"
@@ -6503,8 +6574,8 @@ msgstr "Traceroute"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6548,7 +6619,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "类型"
@@ -6645,6 +6716,7 @@ msgstr "错误的数据回复格式"
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "未知"
@@ -7075,7 +7147,7 @@ msgstr "WEP 开放式系统"
msgid "WEP Shared Key"
msgstr "WEP 共享密钥"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP 密钥"
@@ -7083,7 +7155,7 @@ msgstr "WEP 密钥"
msgid "WMM Mode"
msgstr "WMM 模式"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA 密钥"
@@ -7095,9 +7167,13 @@ msgstr ""
"WPA 加密需要安装 wpa_supplicant(客户端模式)或安装 hostapd(接入点 AP、点对"
"点 Ad-Hoc 模式)。"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
-msgstr "等待设备…"
+msgstr "正在等待设备…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:168
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
@@ -7132,7 +7208,7 @@ msgid "WireGuard VPN"
msgstr "WireGuard VPN"
#: 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "无线"
@@ -7163,13 +7239,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "无线未关联"
@@ -7282,7 +7358,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7304,11 +7380,11 @@ msgstr "创建:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7355,8 +7431,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "过期时间"
@@ -7549,8 +7625,8 @@ msgstr "未知"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "无限制"
@@ -7559,9 +7635,9 @@ msgstr "无限制"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po
index 9106671422..84c15f2a15 100644
--- a/modules/luci-base/po/zh_Hant/base.po
+++ b/modules/luci-base/po/zh_Hant/base.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-09-23 14:41+0000\n"
-"Last-Translator: tommymaple <godoffrog@gmail.com>\n"
+"PO-Revision-Date: 2020-11-05 13:59+0000\n"
+"Last-Translator: Tragic Life <huziyang2002@outlook.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
"openwrt/luci/zh_Hant/>\n"
"Language: zh_Hant\n"
@@ -10,7 +10,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.3-dev\n"
+"X-Generator: Weblate 4.3.2-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
msgid "%.1f dB"
@@ -360,8 +360,8 @@ msgid "ATU-C System Vendor ID"
msgstr "ATU-C 系統廠牌 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
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
msgid "Absent Interface"
msgstr "缺少的介面"
@@ -378,6 +378,10 @@ msgstr "存取點 (AP)"
msgid "Actions"
msgstr "動作"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "活躍"
+
#: 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 "啟用 <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-路由"
@@ -391,12 +395,12 @@ msgid "Active Connections"
msgstr "啟用連線"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
msgid "Active DHCP Leases"
msgstr "已分配的DHCP租用"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
msgid "Active DHCPv6 Leases"
msgstr "已分配的DHCPv6租用"
@@ -476,6 +480,14 @@ msgstr "新增新界面…"
msgid "Add peer"
msgstr "新增 peer"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Blacklist"
+msgstr "新增至黑名單"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
+msgid "Add to Whitelist"
+msgstr "新增至白名單"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
msgid "Additional Hosts files"
msgstr "額外的 hosts 檔案"
@@ -503,7 +515,7 @@ msgstr "存取本地中繼橋接位置"
#: 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
@@ -780,12 +792,12 @@ msgid ""
"Assign prefix parts using this hexadecimal subprefix ID for this interface."
msgstr "使用十六進位元次要前綴 ID分配部分前綴地址於此介面."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:245
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2088
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
msgid "Associated Stations"
msgstr "已連接裝置"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
msgid "Associations"
msgstr "已連接裝置"
@@ -892,7 +904,7 @@ msgstr "BR / DMR / AFTR"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
msgid "BSSID"
msgstr "BSSID"
@@ -911,7 +923,7 @@ msgstr "備份"
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
msgid "Backup / Flash Firmware"
-msgstr "備份/升級韌體"
+msgstr "備份/燒錄韌體"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:323
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
@@ -943,10 +955,10 @@ msgid ""
"linux default)"
msgstr "動態繫結到介面而不是萬用字元位址 (推薦為 linux 預設值)"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -954,10 +966,10 @@ msgstr "動態繫結到介面而不是萬用字元位址 (推薦為 linux 預設
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-gre/htdocs/luci-static/resources/protocol/gre.js:59
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
#: 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
@@ -967,7 +979,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
msgid "Bitrate"
msgstr "傳輸速率"
@@ -1038,7 +1050,7 @@ msgstr "呼叫失敗"
#: 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-network/htdocs/luci-static/resources/view/network/wireless.js:1962
#: 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
@@ -1118,7 +1130,7 @@ msgstr "修改管理員密碼"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "Channel"
msgstr "頻道"
@@ -1126,7 +1138,7 @@ msgstr "頻道"
msgid "Check filesystems before mount"
msgstr "在掛載前先檢查檔案系統"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Check this option to delete the existing networks from this radio."
msgstr "核取這個選項從此無線網路中刪除現有網路。"
@@ -1144,7 +1156,7 @@ msgid "Choose mtdblock"
msgstr "選擇 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
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 "
@@ -1174,7 +1186,7 @@ msgstr "Cisco UDP 對裝"
msgid ""
"Click \"Generate archive\" to download a tar archive of the current "
"configuration files."
-msgstr "按下\"壓縮檔製作\"就能下載目前設定檔的tar格式的壓縮."
+msgstr "按下\"製作壓縮檔\"就能下載目前設定檔的tar格式的壓縮."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
msgid ""
@@ -1215,7 +1227,7 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2086
#: 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
@@ -1250,10 +1262,10 @@ 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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
msgid "Compute outgoing checksum (optional)."
msgstr "計算傳出的校驗和(自選)."
@@ -1343,7 +1355,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1952
msgid "Create / Assign firewall-zone"
msgstr "建立/指定防火牆作用區"
@@ -1368,8 +1380,8 @@ msgstr "Cron日誌等級"
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-base/htdocs/luci-static/resources/tools/widgets.js:569
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
#: 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
@@ -1493,7 +1505,7 @@ msgid "DTIM Interval"
msgstr "DTIM 間隔"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
msgid "DUID"
msgstr "DHCP獨立式別碼DUID"
@@ -1682,6 +1694,7 @@ msgid "Disable this network"
msgstr "停用此網路"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
#: 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
@@ -1703,7 +1716,8 @@ msgstr "丟棄上游RFC1918 虛擬IP網路的回應"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
msgid "Disconnect"
msgstr "中斷連線"
@@ -1749,10 +1763,10 @@ msgstr ""
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
+#: 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 "Do not create host route to peer (optional)."
msgstr "不要建立主機(host)到節點(peer)的路由(任選)."
@@ -1792,8 +1806,8 @@ msgstr "網域必要的"
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-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Don't Fragment"
msgstr "不要分段"
@@ -1994,8 +2008,15 @@ msgstr "啟用所有 CPU 的封包控制。 可能會增加或減少網絡速度
msgid "Enable rx checksum"
msgstr "啟用 Rx 校驗和"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Enable support for multicast traffic (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
msgstr "啟用封裝封包的 DF(不分段)標誌."
@@ -2013,7 +2034,7 @@ msgstr "啟用 Tx 校驗和"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
msgid "Enabled"
-msgstr "啟用"
+msgstr "已啟用"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
msgid "Enables IGMP snooping on this bridge"
@@ -2042,7 +2063,7 @@ msgstr "封裝模式"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
msgid "Encryption"
msgstr "加密"
@@ -2286,24 +2307,24 @@ 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"
-msgstr "更新新版韌體映像檔"
+msgstr "燒錄新版韌體映像檔"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:356
msgid "Flash operations"
-msgstr "執行更新"
+msgstr "燒錄程序"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:290
msgid "Flashing…"
-msgstr "燒入中…"
+msgstr "燒錄中…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:598
msgid "Force"
@@ -2377,7 +2398,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
msgid "GHz"
msgstr "GHz"
@@ -2613,9 +2634,9 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2080
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
msgid "Host"
msgstr "主機"
@@ -2639,7 +2660,7 @@ msgstr ""
#: 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-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
msgid "Hostname"
msgstr "主機名稱"
@@ -2705,7 +2726,7 @@ msgstr "缺少IP位址"
#: 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 "IPv4版"
+msgstr "IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:316
msgid "IPv4 Firewall"
@@ -2756,10 +2777,10 @@ msgstr "IPv4前綴長度"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
msgid "IPv4+IPv6"
-msgstr ""
+msgstr "IPv4+IPv6"
#: 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/include/40_dhcp.js:87
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:154
msgid "IPv4-Address"
msgstr "IPv4-位址"
@@ -2791,7 +2812,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 "IPv6版"
+msgstr "IPv6"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:319
msgid "IPv6 Firewall"
@@ -2863,7 +2884,7 @@ 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/include/40_dhcp.js:126
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:172
msgid "IPv6-Address"
msgstr "IPv6-位址"
@@ -3005,24 +3026,24 @@ msgstr "閒置過期"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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 key"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Incoming serialization"
msgstr ""
@@ -3067,7 +3088,7 @@ msgstr "內部憑證制約 (萬用字元)"
msgid "Install protocol extensions..."
msgstr "安裝延伸協定中..."
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
@@ -3164,6 +3185,16 @@ msgstr "無效"
msgid "Invalid Base64 key string"
msgstr "錯誤的 Base64 鑰匙"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
+msgid "Invalid TOS value, expected 00..FF or inherit"
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
+msgid "Invalid Traffic Class value, expected 00..FF or inherit"
+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 "輸入的 VLAN ID 無效!僅有介於 %d 和 %d 的被允許。"
@@ -3194,13 +3225,6 @@ msgstr "錯誤的十六進制數值"
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 "隔離用戶端"
@@ -3226,7 +3250,7 @@ msgstr "加入網路"
msgid "Join Network: Wireless Scan"
msgstr "加入網路:無線網路掃描"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956
msgid "Joining Network: %q"
msgstr "加入網路:%q"
@@ -3255,18 +3279,18 @@ msgstr "密碼"
msgid "Key #%d"
msgstr "鑰匙 #%d"
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84
-#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89
+#: 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 "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)."
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
+msgid "Key for outgoing packets (optional)."
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
@@ -3340,8 +3364,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
msgid "Lease time remaining"
msgstr "租賃保留時間"
@@ -3506,7 +3530,7 @@ msgid "Local IPv4 address"
msgstr "本地IPv4位址"
#: 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
@@ -3554,7 +3578,7 @@ msgstr "若有多個IP可用, 本地化主機名稱端看請求的子網路而
msgid "Localise queries"
msgstr "本地化網路請求"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1938
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1948
msgid "Lock to BSSID"
msgstr "鎖定 BSSID"
@@ -3570,15 +3594,15 @@ msgstr "日誌查詢"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
@@ -3608,10 +3632,10 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2079
#: 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/include/40_dhcp.js:88
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
#: 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"
@@ -3650,7 +3674,7 @@ msgid "MD5"
msgstr "MD5"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
msgid "MHz"
msgstr "MHz"
@@ -3730,8 +3754,8 @@ 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/include/60_wifi.js:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
#: 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
@@ -3807,7 +3831,7 @@ msgstr "行動網域"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
msgid "Mode"
msgstr "模式"
@@ -3929,6 +3953,13 @@ msgstr "往下移"
msgid "Move up"
msgstr "往上移"
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
+msgid "Multicast"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
msgid "NAS ID"
msgstr "網路附存伺服器ID"
@@ -3966,7 +3997,7 @@ msgstr "候選 NTP 伺服器"
msgid "Name"
msgstr "分享名稱"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid "Name of the new network"
msgstr "新網路的名稱"
@@ -3977,15 +4008,19 @@ 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-network/htdocs/luci-static/resources/view/network/wireless.js:2078
#: 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/include/60_wifi.js:228
#: 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/wireless.js:1920
+msgid "Network SSID"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
msgid "Network Utilities"
msgstr "網路工具"
@@ -4003,8 +4038,8 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
msgid "Network interface"
msgstr ""
@@ -4031,6 +4066,10 @@ msgstr "不"
msgid "No DHCP Server configured for this interface"
msgstr "在這個介面尚無DHCP伺服器"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
+msgid "No Data"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
msgid "No Encryption"
msgstr "無加密"
@@ -4063,16 +4102,16 @@ msgstr ""
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
+#: 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 "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/include/60_wifi.js:358
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
msgstr "無可用資訊"
@@ -4128,8 +4167,8 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
msgid "Noise"
msgstr "雜訊比"
@@ -4390,24 +4429,24 @@ msgstr "出"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Outgoing serialization"
msgstr ""
@@ -4420,6 +4459,10 @@ msgstr ""
msgid "Output zone"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+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
@@ -4431,10 +4474,10 @@ msgstr "覆蓋MAC位址"
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
#: 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
@@ -4452,18 +4495,18 @@ msgstr "覆蓋MAC位址"
msgid "Override MTU"
msgstr "覆蓋MTU數值"
-#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
#: 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-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
#: 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
@@ -4707,10 +4750,10 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
msgid "Perform outgoing packets serialization (optional)."
msgstr ""
@@ -4894,7 +4937,7 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: 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:140
msgid "Quality"
msgstr "品質"
@@ -4930,11 +4973,11 @@ msgstr "RTS/CTS 門檻"
msgid "RX"
msgstr "接收"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "RX Rate"
msgstr "接收速率"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2072
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2082
msgid "RX Rate / TX Rate"
msgstr "接收速率 / 發送速率"
@@ -5070,7 +5113,7 @@ msgstr ""
msgid "Remove"
msgstr "移除"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
msgid "Replace wireless configuration"
msgstr "替代性無線設定"
@@ -5086,17 +5129,17 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
msgid "Require incoming packets serialization (optional)."
msgstr ""
@@ -5342,7 +5385,7 @@ msgid "SHA256"
msgstr "SHA256"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
msgid "SNR"
msgstr "信躁比 (SNR)"
@@ -5371,7 +5414,7 @@ msgstr "SSH-金鑰"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
msgid "SSID"
msgstr "SSID"
@@ -5442,7 +5485,7 @@ msgid ""
"fails. Use only if you are sure that the firmware is correct and meant for "
"your device!"
msgstr ""
-"選擇「強制升級」來燒入映像檔,即使檢查未通過。請僅在您確認映像檔正確無誤時使"
+"選擇「強制升級」來燒錄映像檔,即使檢查未通過。請僅在您確認映像檔正確無誤時使"
"用!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2622
@@ -5491,6 +5534,11 @@ msgstr "服務"
msgid "Session expired"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
+msgid "Set Static"
+msgstr ""
+
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107
msgid "Set VPN as Default Route"
msgstr ""
@@ -5538,7 +5586,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
msgstr "短 GI"
@@ -5563,14 +5611,14 @@ msgstr "關閉這個介面"
#: 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
msgid "Signal"
msgstr "信號"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2071
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2081
msgid "Signal / Noise"
msgstr "信號 /雜訊比"
@@ -5650,8 +5698,8 @@ msgstr "來源位址"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
msgid "Source interface"
msgstr ""
@@ -5812,18 +5860,24 @@ msgstr ""
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
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)."
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header) or an hexadecimal value "
+"<code>00..FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
+msgid ""
+"Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
+"header inherits the value of the inner header), or an hexadecimal value "
+"<code>00..FF</code> (optional)."
+msgstr ""
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64) (optional)."
@@ -5837,18 +5891,18 @@ msgid ""
"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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
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)."
+"Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
+"inherits the value of the inner header) or an hexadecimal value <code>00.."
+"FF</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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes) (optional)."
@@ -5862,7 +5916,7 @@ msgid ""
"bytes)."
msgstr ""
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "Specify the secret encryption key here."
msgstr "指定加密金鑰在此."
@@ -5871,13 +5925,17 @@ msgstr "指定加密金鑰在此."
msgid "Start"
msgstr "啟動"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
+msgid "Start WPS"
+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 "開始重新整理"
+msgstr "開始更新"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:4253
msgid "Starting configuration apply…"
@@ -5900,6 +5958,11 @@ msgstr "靜態IPv4路由"
msgid "Static IPv6 Routes"
msgstr "靜態IPv6路由"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
+msgid "Static Lease"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
msgid "Static Leases"
msgstr "靜態租約"
@@ -5939,6 +6002,10 @@ msgstr "狀態"
msgid "Stop"
msgstr "停止"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
+msgid "Stop WPS"
+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"
@@ -5953,7 +6020,7 @@ 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1966
msgid "Submit"
msgstr "提交"
@@ -6051,7 +6118,7 @@ msgstr "TFTP 伺服器根"
msgid "TX"
msgstr "傳送"
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
msgid "TX Rate"
msgstr "傳送速度"
@@ -6113,7 +6180,7 @@ msgid ""
"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
msgstr "指定到這供應商的IPv6字首, 通常用 <code>::</code>結尾"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1916
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1926
msgid ""
"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
"code> and <code>_</code>"
@@ -6125,6 +6192,12 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:"
msgstr "因下列問題導致設定檔無法讀取:"
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1920
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+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 "
@@ -6214,12 +6287,12 @@ 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-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
#: 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
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1932
msgid "The network name is already used"
msgstr "網路名稱已被使用"
@@ -6267,8 +6340,8 @@ msgid ""
"address of your computer to reach the device again, depending on your "
"settings."
msgstr ""
-"系統升級中。<br /> 請勿關閉設備!<br /> 請稍待幾分鐘後再重新連線。根據不同設"
-"定,您可能需要更新租約來連上設備。"
+"系統升級中。<br /> 請勿關閉設備!<br /> 請稍待幾分鐘後系統將自動重新連線。根"
+"據不同設定,您可能需要更新IP網址以連上設備。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
msgid ""
@@ -6310,8 +6383,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:564
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:52
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
msgid "There are no active leases"
msgstr "無已啟用租約"
@@ -6434,6 +6507,10 @@ msgstr "校時同步"
msgid "Time interval for rekeying GTK"
msgstr "重新加密 GTK 的時間間隔"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Timezone"
msgstr "時區"
@@ -6471,8 +6548,8 @@ msgstr "路由追蹤"
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
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
msgid "Traffic Class"
msgstr ""
@@ -6516,7 +6593,7 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
msgid "Type"
msgstr "型態"
@@ -6613,6 +6690,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:1983
#: modules/luci-compat/luasrc/model/network.lua:971
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
msgid "Unknown"
msgstr "未知的"
@@ -7039,7 +7117,7 @@ msgstr "WEP 開放系統"
msgid "WEP Shared Key"
msgstr "WEP 共享金鑰"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WEP passphrase"
msgstr "WEP通關密碼"
@@ -7047,7 +7125,7 @@ msgstr "WEP通關密碼"
msgid "WMM Mode"
msgstr "無線多媒體機制"
-#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
msgid "WPA passphrase"
msgstr "WPA 密碼"
@@ -7059,6 +7137,10 @@ msgstr ""
"WPA-加密需要 wpa_supplican(終端模式)或者hostapd熱點(對AP或者是 ad-hoc模式)已"
"被安裝."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
+msgid "WPS status"
+msgstr ""
+
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
msgstr "正在等待裝置..."
@@ -7094,7 +7176,7 @@ 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/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
msgid "Wireless"
msgstr "無線網路"
@@ -7125,13 +7207,13 @@ 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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
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
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
msgid "Wireless is not associated"
msgstr "無線網路未連結"
@@ -7244,7 +7326,7 @@ 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-base/htdocs/luci-static/resources/tools/widgets.js:402
#: 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
@@ -7266,11 +7348,11 @@ msgstr "建立:"
#: 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/include/60_wifi.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
#: 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
@@ -7317,8 +7399,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:521
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:42
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:69
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
msgid "expired"
msgstr "過期"
@@ -7511,8 +7593,8 @@ msgstr "未知"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:540
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:40
-#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:67
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
msgid "unlimited"
msgstr "無限"
@@ -7521,9 +7603,9 @@ msgstr "無限"
#: 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-base/htdocs/luci-static/resources/tools/widgets.js:429
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
msgid "unspecified"
diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci
index 1d46ad276c..97709e281d 100755
--- a/modules/luci-base/root/usr/libexec/rpcd/luci
+++ b/modules/luci-base/root/usr/libexec/rpcd/luci
@@ -219,7 +219,7 @@ local methods = {
rv.cabundle = fs.access("/etc/ssl/certs/ca-certificates.crt")
rv.relayd = fs.access("/usr/sbin/relayd")
- local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep" }
+ local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep", "wps" }
if fs.access("/usr/sbin/hostapd") then
rv.hostapd = { cli = fs.access("/usr/sbin/hostapd_cli") }